Хочеться простое и надежное решение , помогите кто чем может

Коллеги , ситуация следующая:
имеется тазик с 4 мя сетевыми интерфейсами:
Код: Выделить всё
root@www:/usr/local/www/uakino# ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:02:a5:4e:db:04
inet addr:94.154.222.33 Bcast:94.154.222.255 Mask:255.255.255.0
inet6 addr: fe80::202:a5ff:fe4e:db04/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2380779831 errors:0 dropped:0 overruns:0 frame:0
TX packets:4404551233 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:302892729170 (302.8 GB) TX bytes:6445661615221 (6.4 TB)
eth1 Link encap:Ethernet HWaddr 00:18:fe:26:bd:0a
inet addr:94.154.222.34 Bcast:94.154.255.255 Mask:255.255.255.0
inet6 addr: fe80::218:feff:fe26:bd0a/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:218580 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:16100270 (16.1 MB) TX bytes:492 (492.0 B)
Interrupt:70 Base address:0xc000
eth2 Link encap:Ethernet HWaddr 00:02:a5:4e:db:05
inet addr:192.168.1.8 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::202:a5ff:fe4e:db05/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:6607379 errors:0 dropped:0 overruns:0 frame:0
TX packets:19126531 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:505997682 (505.9 MB) TX bytes:27498780557 (27.4 GB)
eth3 Link encap:Ethernet HWaddr 00:18:fe:26:bd:0b
inet addr:94.154.222.36 Bcast:94.154.255.255 Mask:255.255.255.0
inet6 addr: fe80::218:feff:fe26:bd0b/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:217058 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:15795903 (15.7 MB) TX bytes:492 (492.0 B)
Interrupt:69
Конфиг следующий:
Код: Выделить всё
root@www:/# cat /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 94.154.222.33
netmask 255.255.255.0
network 94.154.222.0
broadcast 94.154.222.255
gateway 94.154.222.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 94.154.223.243
dns-search uakino.net
auto eth1
iface eth1 inet static
address 94.154.222.34
netmask 255.255.255.0
network 94.154.222.0
broadcast 94.154.255.255
dns-nameservers 94.154.223.243
auto eth2
iface eth2 inet static
address 192.168.1.8
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
dns-nameservers 94.154.223.243
auto eth3
iface eth3 inet static
address 94.154.222.36
netmask 255.255.255.0
network 94.154.222.0
broadcast 94.154.255.255
dns-nameservers 94.154.223.243
Код: Выделить всё
root@www:/# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth2
94.154.222.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
94.154.222.0 0.0.0.0 255.255.255.0 U 0 0 0 eth3
94.154.222.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
0.0.0.0 94.154.222.1 0.0.0.0 UG 100 0 0 eth0

так тоже работает аналогичным образом:
Код: Выделить всё
root@www:/# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth2
0.0.0.0 94.154.222.1 0.0.0.0 UG 100 0 0 eth0