我运行什么命令来更改 Cisco 2800 系列路由器的 IP NAT 设置

网络工程 思科 cisco 命令
2021-07-21 08:44:07

我正在使用 cisco 2821 路由器。最初其他人已配置该路由器。但我只想改变那个路由器中的一件事。我需要在下面更改此行。

ip nat inside source static tcp 172.*.*.1 80 117.218.*.* 80 extendable

我需要将此行更改为

ip nat inside source static tcp 172.*.*.2 80 117.218.*.* 80 extendable

只是改变IP地址。我知道一些命令,例如,

RouterR1# show running-config
RouterR1# config t

但我不知道如何准确地更改该路由器中的这一特定行。我怎样才能改变这个?

1个回答

只需使用命令的“no”形式删除第一条语句,然后添加第二条语句。像这样:

config t
no ip nat inside source static tcp 172.*.*.1 80 117.218.*.* 80 extendable
ip nat inside source static tcp 172.*.*.2 80 117.218.*.* 80 extendable