温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

NAT列表动态配置实验

发布时间:2020-07-17 19:30:02 来源:网络 阅读:238 作者:wx5d3faba330584 栏目:系统运维

一、实验配置图
NAT列表动态配置实验
1、设置三层交换机sw

sw#conf t 
Enter configuration commands, one per line.  End with CNTL/Z.
sw(config)#no ip routing 
sw(config)#

2、设置路由R1

R1#conf t 
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#int f 0/1
R1(config-if)#ip add 192.168.20.1 255.255.255.0         //仅设置IP地址与子网掩码
R1(config-if)#no shut 
*Mar  1 00:00:54.063: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up
*Mar  1 00:00:55.063: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
R1(config-if)#int f 0/0
R1(config-if)#ip add 192.168.100.1 255.255.255.0          //仅设置IP地址与子网掩码
R1(config-if)#no shut 
R1(config-if)#ex 
*Mar  1 00:01:08.423: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up
*Mar  1 00:01:09.423: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
R1(config)#

3、对三台PC机进行设置

PC1
PC1> 
PC1> ip 192.168.20.20 192.168.20.1
Checking for duplicate address...
PC1 : 192.168.20.20 255.255.255.0 gateway 192.168.20.1

PC1>
PC2
PC2> 
PC2> ip 192.168.20.30 192.168.20.1 
Checking for duplicate address...
PC1 : 192.168.20.30 255.255.255.0 gateway 192.168.20.1

PC2> 
PC3
PC3> 
PC3> ip 192.168.100.10 192.168.100.1
Checking for duplicate address...
PC1 : 192.168.100.10 255.255.255.0 gateway 192.168.100.1

注意:此时理论上是已经可以做到全网互通的。
NAT列表动态配置实验
4、在R1上配置动态NAT列表

R1(config)#
R1(config)#ip  access-list  standard   kgc                          //设置命名访问控制列表
R1(config-std-nacl)#permit  192.168.20.0  0.0.0.255 
R1(config)#ip  nat  pool  test 12.0.0.10 12.0.0.20  netmask  255.255.255.0     //设置公网地址池
R1(config)#
*Mar  1 00:09:46.123: %LINEPROTO-5-UPDOWN: Line protocol on Interface NVI0, changed state to up
R1(config)#ip  nat  inside  source  list  kgc  pool  test                  //实现网络地址转换

R1(config)#int  f0/1
R1(config-if)#ip  nat  inside                          //启用内部NAT
R1(config-if)#int  f0/0
R1(config-if)#ip  nat  outside                         //启用外部NAT
R1(config-if)#ex 

验证结果
NAT列表动态配置实验
以上就是动态NAT的地址转换,不需要手动进行指定转换地址,能自动转换区间范围内的地址

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI