I have three computers, A, B, and C. A and B are connected through ppp over a null modem cable. B and C are on an Ethernet network. A is address 10.0.0.2, B is 10.0.0.1 on the ppp network and 192.168.1.200 on the Ethernet. C is 192.168.1.220. A and B run Linux, C runs Windows. I am trying to route packates from A to C via B, but `ping 192.168.1.220' from A never gets a response, and traceroute doesn't find a route. Here is my routing configuration (from `ip route'):
Code:
A:
10.0.0.1 dev ppp0 src 10.0.0.2
default via 10.0.0.1 dev ppp0
127.0.0.0/8 dev lo
B:
10.0.0.2 dev ppp0
192.168.1.0/24 dev eth0
127.0.0.0/8 dev lo
C has its default gateway set to 192.168.1.200.
Anyone know what's wrong with my configuration?