Routing Question

You attempt to ping a machine at IP 10.1.0.11 and get nothing back.
Your host ip is: 192.168.1.110 with on a /24 subnet
The router has two interfaces 192.168.1.1/24 (eth0) and 10.1.0.1/24 (eth1)
The remote machine has two interfaces 10.1.0.11/24 (eth0) and 10.2.0.11/24 (eth1)
The routing table for the remote machine is:
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.2.0.1 0.0.0.0 UG 0 0 0 eth0
10.1.0.0 0.0.0.0 255.255.255.0 U 1000 0 0 eth1
What might be the problem and why?
How could you correct it by only modifying the remote machine?

Questions by 99kash99

Showing Answers 1 - 15 of 15 Answers

Enkidu

  • Sep 4th, 2013
 

Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.2.0.1 0.0.0.0 UG 0 0 0 eth0
10.1.0.0 0.0.0.0 255.255.255.0 U 1000 0 0 eth1

What might be the problem and why?

To reach the 192.168.1/24 subnet, the routing table should have the routers reachable IP as the default route (0.0.0.0) but instead it has 10.2.0.1 which is not an interface on the router.

How could you correct it by only modifying the remote machine?
On the remote machines routing table, change the default gateway (0.0.0.0) route (currently set as 10.2.0.1) to 10.1.0.1/24

  Was this answer useful?  Yes

Roshan Biswakarma

  • Nov 12th, 2014
 

Its a static route issue:
0.0.0.0 10.2.0.1 0.0.0.0 UG 0 0 0 eth0
10.1.0.0 0.0.0.0 255.255.255.0 U 1000 0 0 eth1
network 10.1.0.0 should be route to eth0

  Was this answer useful?  Yes

B. Rout

  • Nov 25th, 2014
 

The interface eth1 with IP 10.1.0.1/24 is down that's why connection not possible.

  Was this answer useful?  Yes

susheeljain1679@hotmail.com

  • Jan 12th, 2015
 

First check the running Routing Protocol configuration on router or static rouring entries, then check the System firewall and route print/ route add

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions