Помогите разобраться с роутингом.Есть две сети 192.168.2.0/24 и 10.1.1.0/28
В сети 192.168.2.0 находится adsl модем 192.168.2.1 через него выход в инет.
Эти две сети связывает роутер под линукс slackware
У роутера две сетевые карты eth2 and еth3
----------------------------------------------
root@andrew-home:/home/repair# ifconfig
eth2 Link encap:Ethernet HWaddr 00:02:B3:60:18:EF
inet addr:192.168.2.8 Bcast:192.168.2.255 Mask:255.255.255.0
eth3 Link encap:Ethernet HWaddr 00:05:5D:07:8F:4A
inet addr:10.1.1.1 Bcast:10.1.1.15 Mask:255.255.255.240
Есть клиенты в сети 10.1.1.0/28 к примеру 10.1.1.2 (WinXP)
На роутере роутинг между интерфейсами eth2 <> eth3 включен.
(echo "1" > /proc/sys/net/ipv4/ip_forward)
----------------------------------------
root@andrew-home:/home/repair# cat /proc/sys/net/ipv4/ip_forward
1
----------------------------------------
С роутера вижу обе сети и могу выходить в инет.
----------------------------------------
Сеть 10.1.1.0/28
root@andrew-home:/home/repair# ping 10.1.1.2
PING 10.1.1.2 (10.1.1.2) 56(84) bytes of data.
64 bytes from 10.1.1.2: icmp_seq=1 ttl=128 time=0.239 ms
64 bytes from 10.1.1.2: icmp_seq=2 ttl=128 time=0.317 ms
--- 10.1.1.2 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1000ms
rtt min/avg/max/mdev = 0.239/0.278/0.317/0.039 ms
---------------------------------------
Сеть 192.168.2.0/24
root@andrew-home:/home/repair# ping 192.168.2.1
PING 192.168.2.1 (192.168.2.1) 56(84) bytes of data.
64 bytes from 192.168.2.1: icmp_seq=1 ttl=64 time=0.631 ms
64 bytes from 192.168.2.1: icmp_seq=2 ttl=64 time=0.593 ms
--- 192.168.2.1 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1000ms
rtt min/avg/max/mdev = 0.593/0.612/0.631/0.019 ms
--------------------------------------
С роутера пингую хосты в инете (google.com)
root@andrew-home:/home/repair# ping google.com
PING google.com (64.233.167.99) 56(84) bytes of data.
64 bytes from py-in-f99.google.com (64.233.167.99): icmp_seq=1 ttl=245 time=22.8 ms
64 bytes from py-in-f99.google.com (64.233.167.99): icmp_seq=2 ttl=245 time=21.2 ms
64 bytes from py-in-f99.google.com (64.233.167.99): icmp_seq=3 ttl=245 time=24.2 ms
--- google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 1999ms
rtt min/avg/max/mdev = 21.222/22.788/24.267/1.250 ms
------------------------------------
Но когда пытаюсь пинговать adsl (192.168.2.1) c хоста 10.1.1.2
получаю request timed out
Тоесть роутинг ежду интерфейсами не работает.
Подскажите в чем ошибка?
Спасибо!