Re: Moving IP address information from bge0 to bge1: Solaris 8 "Raqueeb Hassan" <wideangle@gmail.com> writes:
> Initially only one of it's 4 ethernet interfaces was configured for
> the network connectivity. Recently, all types of communication ends up
> freezing (ssh, ftp) and the ping replies are intermittent. The cable
> connection and the switch ports are okay.
Please provide "netstat -nr" and "ifconfig -a" output from the Solaris
system and some basic information about your network. (Is the netmask
really 255.255.0.0? Are all the machines on that network configured
that way?)
> Just to check whether the settings are staying or not, I rebooted the
> whole system. The "ifconfig -a" doesn't return any IP address as
> configured. We can't communicate with the system unless we use this
> command:
>
> # ifconfig bge1 10.1.1.2 netmask 255.255.0.0 broadcast 10.1.255.255
> plumb up
That's not going to work. You're telling the system to configure a
non-existent interface, and then plumb it afterwards. That should be:
# ifconfig bge1 plumb 10.1.1.2 netmask 255.255.0.0 \
broadcast 10.1.255.255 up
Or, equivalently, and more concisely:
# ifconfig bge1 plumb 10.1.1.2/16 broadcast + up
--
James Carlson, Solaris Networking <james.d.carlson@sun.com>
Sun Microsystems / 1 Network Drive 71.232W Vox +1 781 442 2084
MS UBUR02-212 / Burlington MA 01803-2757 42.496N Fax +1 781 442 1677 |