diff options
| author | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-03-11 20:10:39 +0000 |
|---|---|---|
| committer | Yoshinobu Inoue <shin@FreeBSD.org> | 2000-03-11 20:10:39 +0000 |
| commit | d499929ea1d462e883e7593e9a3cfba82ad46d2b (patch) | |
| tree | 6e44439dc27c76fb43f68fc355950492f5d75157 | |
| parent | 8fca8c97c6a944bbabcec0cd7fc2267702d09f0f (diff) | |
Notes
| -rw-r--r-- | etc/pim6dd.conf | 1 | ||||
| -rw-r--r-- | etc/pim6sd.conf | 1 | ||||
| -rw-r--r-- | etc/rc.d/network_ipv6 | 4 | ||||
| -rw-r--r-- | etc/rc.network6 | 4 |
4 files changed, 8 insertions, 2 deletions
diff --git a/etc/pim6dd.conf b/etc/pim6dd.conf new file mode 100644 index 000000000000..44cf790b4739 --- /dev/null +++ b/etc/pim6dd.conf @@ -0,0 +1 @@ +phyint stf0 disable diff --git a/etc/pim6sd.conf b/etc/pim6sd.conf new file mode 100644 index 000000000000..44cf790b4739 --- /dev/null +++ b/etc/pim6sd.conf @@ -0,0 +1 @@ +phyint stf0 disable diff --git a/etc/rc.d/network_ipv6 b/etc/rc.d/network_ipv6 index f6a2115a38d5..6b499ead0e3f 100644 --- a/etc/rc.d/network_ipv6 +++ b/etc/rc.d/network_ipv6 @@ -151,7 +151,9 @@ network6_pass1() { case ${rtadvd_enable} in [Yy][Ee][Ss]) # default - rtadvd ${ipv6_network_interfaces} + rtadvd_interfaces=`echo ${ipv6_network_interfaces} | \ + sed -e 's/ stf0//'` + rtadvd ${rtadvd_interfaces} # # Enable Router Renumbering, unicast case # (use correct src/dst addr) diff --git a/etc/rc.network6 b/etc/rc.network6 index f6a2115a38d5..6b499ead0e3f 100644 --- a/etc/rc.network6 +++ b/etc/rc.network6 @@ -151,7 +151,9 @@ network6_pass1() { case ${rtadvd_enable} in [Yy][Ee][Ss]) # default - rtadvd ${ipv6_network_interfaces} + rtadvd_interfaces=`echo ${ipv6_network_interfaces} | \ + sed -e 's/ stf0//'` + rtadvd ${rtadvd_interfaces} # # Enable Router Renumbering, unicast case # (use correct src/dst addr) |
