diff options
author | ume <ume@FreeBSD.org> | 2001-06-20 13:17:07 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2001-06-20 13:17:07 +0000 |
commit | 4de3cb9611b4171d85aadd8c9fe5ad25fcd713bf (patch) | |
tree | aae3b3f8b026f99f4b9665b0f0050720ce47b6ba /etc | |
parent | 7ffe6c47e5d91237fa5f4bff8f3f93ef6ee84d06 (diff) | |
download | FreeBSD-src-4de3cb9611b4171d85aadd8c9fe5ad25fcd713bf.zip FreeBSD-src-4de3cb9611b4171d85aadd8c9fe5ad25fcd713bf.tar.gz |
Change default value of rtadvd_enable to NO to be compatible with
the following description in RFC2461:
AdvSendAdvertisements
A flag indicating whether or not the router sends
periodic Router Advertisements and responds to
Router Solicitations.
Default: FALSE
Note that AdvSendAdvertisements MUST be FALSE by
default so that a node will not accidentally start
acting as a router unless it is explicitly
configured by system management to send Router
Advertisements.
Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp>
MFC after: 1 week
Diffstat (limited to 'etc')
-rw-r--r-- | etc/defaults/rc.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 672765f..a76b31b 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -247,7 +247,7 @@ ipv6_router_flags="" # Flags to IPv6 routing daemon. ipv6_default_interface="" # Default output interface for scoped addrs. # Now this works only for IPv6 link local # multicast addrs. -rtadvd_enable="YES" # Set to YES to enable an IPv6 router +rtadvd_enable="NO" # Set to YES to enable an IPv6 router # advertisement daemon. If set to YES, # this router becomes a possible candidate # IPv6 default router for local subnets. |