// here is the contents of my /etc/modules file:
# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line. Comments begin with
# a "#", and everything on the line after them are ignored.
usb-uhci
input
usbkbd
keybdev
eepro100
eepor100
eepro100
eepro100
// here is the contents of my /etc/network/interfaces file:
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface
auto lo
iface lo inet loopback
# The first network card - this entry was created during the Debian installation
# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet static
address 10.121.110.6
netmask 255.255.254.0
network 10.121.110.0
broadcast 10.121.111.255
gateway 10.121.111.254
auto eth1
iface eth1 inet static
address 10.121.110.7
netmask 255.255.254.0
network 10.121.110.0
broadcast 10.121.111.255
gateway 10.121.111.254
auto eth2
iface eth2 inet static
address 10.121.110.8
netmask 255.255.254.0
network 10.121.110.0
broadcast 10.121.111.255
gateway 10.121.111.254
auto eth3
iface eth3 inet static
address 10.121.110.9
netmask 255.255.254.0
network 10.121.110.0
broadcast 10.121.111.255
gateway 10.121.111.254
// here is the output of the 'ifconfig -a' command:
eth0 Link encap:Ethernet HWaddr 00:50:8B:05:0E
B
inet addr:10.121.110.6 Bcast:10.121.111.255 Mask:255.255.254.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:67896 errors:0 dropped:0 overruns:0 frame:0
TX packets:109 errors:0 dropped:0 overruns:57 carrier:0
collisions:0 txqueuelen:100
RX bytes:5069873 (4.8 MiB) TX bytes:9218 (9.0 KiB)
Interrupt:11 Base address:0xb000
eth1 Link encap:Ethernet HWaddr 00:50:8B:04:C9
E
inet addr:10.121.110.7 Bcast:10.121.111.255 Mask:255.255.254.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:411 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:28716 (28.0 KiB) TX bytes:0 (0.0 b)
Interrupt:10 Base address:0xd000
eth2 Link encap:Ethernet HWaddr 00:50:8B:04:C9:AE
inet addr:10.121.110.8 Bcast:10.121.111.255 Mask:255.255.254.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:8 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:1492 (1.4 KiB) TX bytes:0 (0.0 b)
Interrupt:5 Base address:0xf000
eth3 Link encap:Ethernet HWaddr 00:50:8B:05:10:0B
inet addr:10.121.110.9 Bcast:10.121.111.255 Mask:255.255.254.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:2 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:152 (152.0 b) TX bytes:0 (0.0 b)
Interrupt:9 Base address:0x1000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:83 errors:0 dropped:0 overruns:0 frame:0
TX packets:83 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:6032 (5.8 KiB) TX bytes:6032 (5.8 KiB)
-------------------------------------------------------------------------------------------