есть две сети(192.168.4.0 и 192.168.5.0) необходимо наладить хождение пакетов между ними
oot@post:/etc/network# cat interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth1
iface eth1 inet static
address 192.168.4.25
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.255
gateway 0.0.0.0
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.3.249
allow-hotplug eth2
iface eth2 inet static
address 192.168.3.1
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.5.255
gateway 0.0.0.0
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.3.249
С помощью команды route прописываем транзитный маршруты
route add -net 192.168.4.0 netmask 255.255.255.0 gw 192.168.5.1 (, приходящие на eth1 с назначением в подсеть 192.168.5.0, будут перенаправлены на шлюз 192.168.5.1:)
route add -net 192.168.5.0 netmask 255.255.255.0 gw 192.168.4.25
все ли сделал правильно?