动态NAT的配置

2024-12-26 07:46:16
推荐回答(3个)
回答1:

第3步: 路由器R1 S0/0 0路由器R2 S0/0 ,配置完IP后路由器R1可以ping通R2
R1:
en
conf t
int s0/0
ip add 100.0.0.1 255.255.255.0
ip nat outside
exit
ip route 0.0.0.0 0.0.0.0 100.0.0.2
int f0/0
ip nat inside
exit

R2:
en
conf t
int s0/0
ip nat outside
ip add 100.0.0.2 255.255.255.0
exit
第4步:路由器R1配置NAT,配置完成后,pc设置好IP地址和相应网关就可以跟R2通信了
en
conf t
ip nat pool exmnet 100.0.0.5-100.0.0.10 netmask 255.255.255.0
accl 1
permit 192.168.0.0 255.255.0.0 any any
ip nat inside source list 1 pool exmnet overload
exit
write

回答2:

配置完成后可以用以下语句进行查看: show ip nat statistcs show ip nat translations 2、动态地址转换适用的环境: 动态地址转换也是将本地地址与内部合法

回答3:

79详解防火墙的NAT配置