01-11-2003 06:46 PM - edited 03-02-2019 04:06 AM
I need to remove an entry that is forwarding all traffic to an insde ip address.
ex -
ip nat inside source static 192.168.0.10 208.B.C.D
The problem is that I need to block some ports. I know how to set up the entry but not how to remove one.
Thanks
01-12-2003 12:44 AM
Like all cisco IO commands can be negated by puttin a "no" in front of it:
no ip nat inside source static 192.168.0.10 208.B.C.D
HTH
Fabio
01-13-2003 03:54 AM
Thanks
Robert
01-12-2003 09:54 PM
HI
clear ip nat translation *
NIX Technical
Mohsen.
01-13-2003 02:24 AM
If this static entry is in use you won't be able to remove it . I recommend to perform a configuration script:
clear ip nat trans * \* this clears entire NAT table*\
config t
no ip nat inside source static 192.168.0.10 208.B.C.D
exit
Performing this script assures that after clearing NAT table you can remove ip nat command before this translation install again in the table.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide