web-dev-qa-db-ja.com

CentOS 6でルートの行を完全に削除/削除するにはどうすればよいですか?

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

176.0.0.0エントリを削除できます

route delete -net 176.0.0.0/5

これは機能しますが、再起動後にこの行が戻ります。それを永久に削除する方法はありますか?

4
John

/ etc/sysconfig/network-scripts/route-eth0を確認し、

ルートを含むファイルの/ etc内の176.0.0.0に対して再帰的にGrep

#grep -r "176.0.0.0"/etc

5
Christian