Thanks to all who responded. "Sean O'Connell" <sean_at_stat.duke.edu>
quickly found the problem. netsetup had ended up putting two NETDEV_0's
into /etc/rc.config, viz:
NETDEV_0="tu0"
NETDEV_0="tu1"
I then tried:
NETDEV_0="tu0"
NETDEV_1="tu1"
IFCONFIG_0="149.130.20.42 netmask 255.255.0.0"
IFCONFIG_1="149.130.20.42 netmask 255.255.0.0"
This didn't work, so I switched to:
# NETDEV_0="tu0"
NETDEV_0="tu1"
IFCONFIG_0="149.130.20.42 netmask 255.255.0.0"
IFCONFIG_1="149.130.20.42 netmask 255.255.0.0"
This worked!
Thanks for your help.
Cheers,
--Lee
Received on Wed Dec 09 1998 - 20:40:20 NZDT