diff options
author | 2013-08-23 18:18:58 -0700 | |
---|---|---|
committer | 2013-08-23 18:18:58 -0700 | |
commit | 6486f5a2fd87047fd4309ea91af583a26c7c6e0f (patch) | |
tree | d1e90dded99424be0835c073988fe3b64be8103d /doc | |
parent | Merge remote-tracking branch 'origin/bug481080' (diff) | |
parent | drop _has_carrier check from ipv6_tentative since it doesn't do what we expec... (diff) | |
download | netifrc-6486f5a2fd87047fd4309ea91af583a26c7c6e0f.tar.gz netifrc-6486f5a2fd87047fd4309ea91af583a26c7c6e0f.tar.bz2 netifrc-6486f5a2fd87047fd4309ea91af583a26c7c6e0f.zip |
Merge remote-tracking branch 'origin/bug481970'
Diffstat (limited to 'doc')
-rw-r--r-- | doc/net.example.BSD.in | 9 | ||||
-rw-r--r-- | doc/net.example.Linux.in | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/doc/net.example.BSD.in b/doc/net.example.BSD.in index 3aae310..2509c9f 100644 --- a/doc/net.example.BSD.in +++ b/doc/net.example.BSD.in @@ -84,6 +84,15 @@ # long we wait for carrier. The current default is disabled. #carrier_timeout_eth0=0 +# IPv6 addresses usually must complete a duplicate address detection process +# before they can be bound to by daemons; they are held in a 'tentative' state +# until this completes. Setting the 'nodad' flag (see config_eth0 above) is +# one way to avoid this tentative state, otherwise the service will wait +# dad_timeout seconds (defaults to 5) for tentative state to clear on all IPv6 +# addresses set on the interface. As usual, dad_timeout can be adjusted on a +# per-interface basis. Set to 0 to disable the wait entirely. +#dad_timeout_eth0=5 + # You may wish to disable the interface being brought down when stopping. # This is only of use for WakeOnLan. #ifdown_eth0="NO" diff --git a/doc/net.example.Linux.in b/doc/net.example.Linux.in index ff8e7cd..caffed7 100644 --- a/doc/net.example.Linux.in +++ b/doc/net.example.Linux.in @@ -133,6 +133,15 @@ # long we wait for carrier. The current default is disabled. #carrier_timeout_eth0=0 +# IPv6 addresses usually must complete a duplicate address detection process +# before they can be bound to by daemons; they are held in a 'tentative' state +# until this completes. Setting the 'nodad' flag (see config_eth0 above) is +# one way to avoid this tentative state, otherwise the service will wait +# dad_timeout seconds (defaults to 5) for tentative state to clear on all IPv6 +# addresses set on the interface. As usual, dad_timeout can be adjusted on a +# per-interface basis. Set to 0 to disable the wait entirely. +#dad_timeout_eth0=5 + # You may wish to disable the interface being brought down when stopping. # This is only of use for WakeOnLan. #ifdown_eth0="NO" |