diff options
author | hrs <hrs@FreeBSD.org> | 2015-05-12 03:31:57 +0000 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2015-05-12 03:31:57 +0000 |
commit | 64bd31eb61fe5b18592885c601acf74a864cbc77 (patch) | |
tree | 5cef00c44cf47b4b302af5578d0c2c9f4f032cf2 /sbin/ifconfig | |
parent | 97e0e7cffb12ef897538440b6ea3162a24922601 (diff) | |
download | FreeBSD-src-64bd31eb61fe5b18592885c601acf74a864cbc77.zip FreeBSD-src-64bd31eb61fe5b18592885c601acf74a864cbc77.tar.gz |
- Remove ND6_IFF_IGNORELOOP. This functionality was useless in practice
because a link where looped back NS messages are permanently observed
does not work with either NDP or ARP for IPv4.
- draft-ietf-6man-enhanced-dad is now RFC 7527.
Discussed with: hiren
MFC after: 3 days
Diffstat (limited to 'sbin/ifconfig')
-rw-r--r-- | sbin/ifconfig/af_inet6.c | 2 | ||||
-rw-r--r-- | sbin/ifconfig/ifconfig.8 | 11 |
2 files changed, 1 insertions, 12 deletions
diff --git a/sbin/ifconfig/af_inet6.c b/sbin/ifconfig/af_inet6.c index 8a18401..6dd8622 100644 --- a/sbin/ifconfig/af_inet6.c +++ b/sbin/ifconfig/af_inet6.c @@ -486,8 +486,6 @@ static struct cmd inet6_cmds[] = { DEF_CMD("-no_prefer_iface",-ND6_IFF_NO_PREFER_IFACE,setnd6flags), DEF_CMD("no_dad", ND6_IFF_NO_DAD, setnd6flags), DEF_CMD("-no_dad", -ND6_IFF_NO_DAD, setnd6flags), - DEF_CMD("ignoreloop", ND6_IFF_IGNORELOOP, setnd6flags), - DEF_CMD("-ignoreloop", -ND6_IFF_IGNORELOOP, setnd6flags), DEF_CMD_ARG("pltime", setip6pltime), DEF_CMD_ARG("vltime", setip6vltime), DEF_CMD("eui64", 0, setip6eui64), diff --git a/sbin/ifconfig/ifconfig.8 b/sbin/ifconfig/ifconfig.8 index 1e4870d..037fb49 100644 --- a/sbin/ifconfig/ifconfig.8 +++ b/sbin/ifconfig/ifconfig.8 @@ -28,7 +28,7 @@ .\" From: @(#)ifconfig.8 8.3 (Berkeley) 1/5/94 .\" $FreeBSD$ .\" -.Dd March 6, 2015 +.Dd May 12, 2015 .Dt IFCONFIG 8 .Os .Sh NAME @@ -692,15 +692,6 @@ Set a flag to disable Duplicate Address Detection. .It Cm -no_dad Clear a flag .Cm no_dad . -.It Cm ignoreloop -Set a flag to disable loopback detection in Enhanced Duplicate Address -Detection Algorithm. -When this flag is set, -Duplicate Address Detection will stop in a finite number of probings -even if a loopback configuration is detected. -.It Cm -ignoreloop -Clear a flag -.Cm ignoreloop . .El .Pp The following parameters are specific for IPv6 addresses. |