1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
# IPv6 Neighbor Discovery — sends/receives Router Solicitations and # Advertisements, drives autoconfig and prefix discovery. Required for # IPv6 stateless autoconfig on a typical network. # # Replaces /lib/svc/manifest/network/routing/ndp.xml. The SMF method # reads three optional properties (stateless_addr_conf, debug, # config_file); we use in.ndpd's defaults (config /etc/inet/ndpd.conf # if present, no -a/-d/-f). Admins who need flags swap out this TOML. [service] name = "ndp" description = "IPv6 Neighbor Discovery daemon" type = "daemon" [exec] start = "/usr/lib/inet/in.ndpd" [dependencies] requires = ["network"] [restart] on = "failure" delay = 5 max_retries = 3 [contract] param = ["inherit", "noorphan"] fatal = ["hwerr"]