配置静态NAT

备注:此实验已经过模拟验证后贴出


步骤:

Router(config)# ip nat inside source static local-ip global-ip  //创建NAT静态映射条目

Router(config-if)# ip nat inside  //指定内部接口=路由器中连接局域网的接口

Router(config-if)# ip nat outside //指定外部接口=路由器中连接Internet的接口


查看NAT配置:

Router# show ip nat translations


实例:

配置静态NAT_静态NAT

R1配置:

R1#config t

R1(config)#interface ethernet 0/0

R1(config-if)#ip address 192.168.1.254 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#exi

R1(config)#interface ethernet 0/1

R1(config-if)#ip address 200.1.1.1 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#end

 

R1(config)#ip nat inside source static 192.168.1.1 200.1.1.1

 

R1(config)#interface ethernet 0/0

R1(config-if)#ip nat inside

R1(config-if)#exi

 

R1(config)#interface ethernet 0/1

R1(config-if)#ip nat outside

R1(config-if)#exi

 

PC1配置:

PC1#confi t

PC1(config)#no ip routing

PC1(config)#interface ethernet 0/0

PC1(config-if)#ip address 192.168.1.1 255.255.255.0

PC1(config-if)#no shutdown

PC1(config-if)#end

 

PC2配置:

PC2#confi t

PC2(config)#no ip routing

PC2(config)#interface ethernet 0/0

PC2(config-if)#ip address 200.1.1.200 255.255.255.0

PC2(config-if)#no shutdown

PC2(config-if)#end

 

查看NAT配置:

R1#show ip nat translations

Pro Inside global      Inside local       Outside local      Outside global

--- 200.1.1.1          192.168.1.1        ---                ---