Cannot delete a route in redhat linux

1

I have the following entry in a redhat linux machine to reject the private network route:

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
10.0.0.0        -                255.0.0.0       !         -   -      -   -

Now I want to delete this entry but I cannot delete it using route del command.

sudo route del -net 10.0.0.0 netmask 255.0.0.0
SIOCDELRT: No such process

Can anyone please help me to delete this route?

Manny

Posted 2012-05-09T11:18:23.447

Reputation: 205

route del -net 203.82.62.170 netmask 255.255.255.255 reject definately work...thanks manny – None – 2014-12-16T12:48:38.220

uff.. I found it finally using google. It worked :D

route del -net 10.0.0.0 netmask 255.0.0.0 reject – Manny – 2012-05-09T11:24:57.993

Sorry but if you were able to find the answer in 5 minutes using Google why ask here first? :-) BTW you can post an answer to your own question and mark it as accepted. – Matteo – 2012-06-01T13:08:13.653

No answers