Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Clear IP Route Command 1

Status
Not open for further replies.

AaronBeau

MIS
Jan 29, 2008
89
US
I have a Cisco router that connects all of our 23 locations together. However, two of our buildings we're sold off and I wanted to delete the IP ROUTES out of our Cisco 2600.

The routes that i want to delete are:
ip route 192.168.24.0 255.255.255.0 Serial1/0:2
ip route 192.168.28.0 255.255.255.0 Serial1/0:1

I used telnet to access the Cisco 2600, and went into enable mode and typed the following commands:
clear ip route 192.168.24.0
clear ip route 192.168.28.0

But after doing so, the routes are still present and active.

Any help would be greatly appreciated. I am not Cisco certified so please keep that in mind.
 
From an enable prompt type in "config t"
From the config prompt use:
no ip route 192.168.24.0 255.255.255.0 Serial1/0:2
no ip route 192.168.28.0 255.255.255.0 Serial1/0:1
then type in "end" to return to the enable prompt
then do a "wr mem" to write it to memory.
That should do it :)
 
Worked like a charm!

I feel like I was so close before!!! Thank you so much for your help. It makes me want to go pick up a CCNA book.
 
You're welcome, go get that book, I haven't studied it in a while but it will help you tremendously.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top