Created
January 9, 2015 18:45
-
-
Save danish-rehman/98afb36c1684c982219d to your computer and use it in GitHub Desktop.
Delete entries from the routing table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Delete lan0 entry | |
>> sudo route del -net 10.0.0.0 netmask 255.0.0.0 | |
# Delete the lan1 entry | |
>> sudo route del -net 10.1.2.0 netmask 255.255.255.0 | |
# Delete the link to rtr2 | |
>> sudo route del -net 10.10.3.0 netmask 255.255.255.0 | |
# Delete the link to rtr1 | |
>> sudo route del -net 10.10.1.0 netmask 255.255.255.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment