Quote:
Originally Posted by Nick
I don't use Ubuntu but the rule of thumb with IP problems is that they are either routing problems or filtering problems.
What does the routing table look like?
|
The only difference is a "Metric" value:
Working machine:
Code:
$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 100 0 0 eno1
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 eno1
192.168.0.0 0.0.0.0 255.255.255.0 U 100 0 0 eno1
Non-working machine:
Code:
$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 20100 0 0 eno1
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 eno1
192.168.0.0 0.0.0.0 255.255.255.0 U 100 0 0 eno1
But, I don't know what that signifies.
"ip route" shows the same values:
Working machine:
Code:
$ ip route
default via 192.168.0.1 dev eno1 proto static metric 100
169.254.0.0/16 dev eno1 scope link metric 1000
192.168.0.0/24 dev eno1 proto kernel scope link src 192.168.0.96 metric 100
Non-working machine:
Code:
$ ip route
default via 192.168.0.1 dev eno1 proto static metric 20100
169.254.0.0/16 dev eno1 scope link metric 1000
192.168.0.0/24 dev eno1 proto kernel scope link src 192.168.0.44 metric 100