I have a situation I don't understand yet, hope the Linux gurus here can help.
On Ubuntu Server 10.04 LTS recently installed on a dedicated machine (no other OS) with multiple network adapters the content of /etc/network/interfaces is:
Code:
auto lo
iface lo inet loopback
allow-hotplug eth0 eth1 eth2
iface eth0 inet static
address 192.168.0.60
netmask 255.255.254.0
auto eth0
iface eth1 inet static
address 192.168.0.61
netmask 255.255.254.0
gateway 192.168.0.1
network 192.168.0.0
auto eth1
iface eth2 inet static
address 192.168.0.62
netmask 255.255.254.0
auto eth2
That netmask isn't a typo, but I don't see why 9-bits should cause problems.
ONLY eth1 is plugged in. The others will eventually be plugged into separate switches and more info added to their interfaces sections.
When all interfaces are 'up' there is no communication via eth1 to or from any other hosts on the LAN. However, it can communicate to the Internet, and hosts outside on the Internet can initiate and communcate with it.
If only eth1 is up, with eth0 and eth2 down, it works as expected.
The hardware and drivers seem to work fine. No iptables have been set up.
What have I missed or violated? Is it forbidden to have multiple interfaces in the same subnet?
TIA!
On Ubuntu Server 10.04 LTS recently installed on a dedicated machine (no other OS) with multiple network adapters the content of /etc/network/interfaces is:
Code:
auto lo
iface lo inet loopback
allow-hotplug eth0 eth1 eth2
iface eth0 inet static
address 192.168.0.60
netmask 255.255.254.0
auto eth0
iface eth1 inet static
address 192.168.0.61
netmask 255.255.254.0
gateway 192.168.0.1
network 192.168.0.0
auto eth1
iface eth2 inet static
address 192.168.0.62
netmask 255.255.254.0
auto eth2
That netmask isn't a typo, but I don't see why 9-bits should cause problems.
ONLY eth1 is plugged in. The others will eventually be plugged into separate switches and more info added to their interfaces sections.
When all interfaces are 'up' there is no communication via eth1 to or from any other hosts on the LAN. However, it can communicate to the Internet, and hosts outside on the Internet can initiate and communcate with it.
If only eth1 is up, with eth0 and eth2 down, it works as expected.
The hardware and drivers seem to work fine. No iptables have been set up.
What have I missed or violated? Is it forbidden to have multiple interfaces in the same subnet?
TIA!