我有一个 NAT 配置如下的 Cisco 2851:
ip nat inside source list 111 interface GigabitEthernet0/1 overload
ip nat inside source static 192.168.16.16 64.xxx.xxx.233
ip nat inside source static 192.168.16.2 64.xxx.xxx.245
ip nat inside source static 192.168.16.20 64.xxx.xxx.246
ip route 0.0.0.0 0.0.0.0 64.xxx.xxx.1
我只需要将来自64.xxx.xxx.233
端口 81 的外部流量转发到内部主机 192.168.16.12,其余所有端口如上。这个命令:
ip nat inside source static tcp 192.168.16.12 81 64.xxx.xxx.233 81
导致此错误:
similar static entry (192.168.16.16 -> 64.xxx.xxx.233) already exists
可以给我一些指导,如何将这个单一端口定向到上面给出的另一台主机?