7
root@new [~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
178.18.23.200   0.0.0.0         255.255.255.255 UH    0      0        0 eth0
178.18.23.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eth0
176.0.0.0       0.0.0.0         248.0.0.0       U     0      0        0 eth0
0.0.0.0         178.18.23.253   0.0.0.0         UG    0      0        0 eth0

I can remove the 176.0.0.0 entry with

route delete -net 176.0.0.0/5

This works, but after reboot this line comes back. Any idea how to permanently have it removed?

ti7
  • 235
John
  • 71

1 Answers1

6

Check /etc/sysconfig/network-scripts/route-eth0,

Grep recursivly for 176.0.0.0 in /etc for the file containing the route

# grep -r "176.0.0.0" /etc

Christian
  • 327