Index of /pub/mirrors/playground.sun.com/bugfix
Bug Reports and Issues:
1.This prototype does not include the new addressing drafts.
2.A UDP socket application must do a bind on a v6 UDP socket, or an incorrect
source address will be used.
3.Router discovery is disabled over configured tunnels.
4."rcp local server:/remote" works but "rcp server:/remote local" doesn't (v6 rcp).
5.Need ATM driver for IPv6.
Bugfixes and updates:
(Last updated on June 4,1997)
1. Startup script /etc/rc2.d/S69inet counts its interfaces by
numifs=`ifconfig -au | grep inet | wc -l`
Since "inet6" will match this grep, the host will overcount the
interfaces and become an IPv4 router in some circumstances, instead
of running IPv4 router discovery or (ugh!) a "routed -q".
The line mentioned in in /etc/rc2.d/S69inet should change to:
numifs=`ifconfig -au | grep "inet " | wc -l`