故障描述
AR 接口下配置NAT SERVER 映射提示地址沖突,如下:
nat server global 192.168.108.136 inside 172.16.1.2
Error: The address conflicts with interface or ARP IP.
故障分析
無
處理過程
當前接口配置如下:
#
interface GigabitEthernet0/0/0
ip address 192.168.108.136 255.255.255.0
#
return
AR在配置NAT映射時,公網(wǎng)IP不能與接口IP地址相同,否則會提示沖突,導致配置不上去。如果做全映射,至少需要申請兩個公網(wǎng)IP,一個配置在接口上,一個用于做全映射;如果只有一個公網(wǎng)IP時,可以做端口映射,公網(wǎng)IP使用current-interface參考代替,如下:
nat server protocol tcp global current-interface 80 inside 172.16.1.2 80
建議/總結
無