码迷,mamicode.com
首页 > 其他好文 > 详细

思科模拟器配置NAT

时间:2018-01-13 00:15:46      阅读:565      评论:0      收藏:0      [点我收藏+]

标签:protocol   pass   端口配置   cal   col   网关   lib   summary   工作   


1. 准备工作:俩台PC机,一台二层交换机,三台路由器

Pc机分别名为pc1和pc2,交换机名为SW1,三台分别名为R1,R2,R3

2. 实验环境:R3下的Gi0/0端口连接R2下的Gi0/0端口,R2的Gi0/1端口连接R1的Gi0/1端口,R1下的Gi0/0端口连接二层交换机,二层交换机连接俩台pc机

 

 

准备工作和实验环境如下

技术分享图片 

为俩台PC机创建IP地址和网关如下图

技术分享图片 

技术分享图片 

R1上配置俩台PC机的网关,把连接二层交换机的Gi0/0端口作为PC机的网关,端口ip配置为192.168.1.254 / 24

Router>enble

Router#config terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R1

R1(config)#interface gigabitEthernet 0/0

R1(config-if)#ip add 192.168.1.254 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#

技术分享图片 

R1上配置Gi0/1端口配置连接外网的ip,配置为100.1.1.1 / 24

R1(config-if)#exit

R1(config)#interface gigabitEthernet 0/1

R1(config-if)#ip add 100.1.1.1 255.255.255.0

R1(config-if)#no shutdown

R1(config-if)#

技术分享图片 

 

R2上的Gi0/1端口设置ip,设置为100.1.1.2 / 24

Router>enable

Router#config terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R2

R2(config)#interface gigabitEthernet 0/1

R2(config-if)#ip add 100.1.1.2 255.255.255.0

R2(config-if)#no shutdown

R2(config-if)#

%LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to up

R2(config-if)#

技术分享图片 

 

R2上的Gi0/0端口设置ip,作为外网ip,设置为200.1.1.1 / 24

R2(config)#interface gigabitEthernet 0/0

R2(config-if)#ip add 200.1.1.1 255.255.255.0

R2(config-if)#no shutdown

技术分享图片 

R3上的Gi0/0端口设置ip,设置为200.1.1.2 / 24

Router>enable

Router#config terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#hostname R3

R3(config)#interface gigabitEthernet 0/0

R3(config-if)#ip add 200.1.1.2 255.255.255.0

R3(config-if)#

R3(config-if)#shutdown

技术分享图片 

 

R1上配置NAT

R1(config)#access-list 1 permit 192.168.1.0 0.0.0.255

R1(config)#ip nat inside source list 1 interface gigabitEthernet 0/1

R1(config)#interface gigabitEthernet 0/1

R1(config-if)#ip nat outside

R1(config-if)#exit

R1(config)#interface gigabitEthernet 0/0

R1(config-if)#ip nat inside

技术分享图片 

 

R1上设置下一跳,去往别的网段

技术分享图片 

R2上设置RIP,连接路由之间的通信

R2(config)#route rip

R2(config-router)#version 2

R2(config-router)#network 100.1.1.0

R2(config-router)#network 200.1.1.0

R2(config-router)#no auto-summary

R2(config-router)#passive-interface gigabitEthernet 0/1

R2(config-router)#

技术分享图片 

R3上配置RIP

R3(config)#route rip

R3(config-router)#version 2

R3(config-router)#no a

R3(config-router)#network 200.1.1.0

R3(config-router)#

技术分享图片 

实验结果:成功连通

技术分享图片 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 


思科模拟器配置NAT

标签:protocol   pass   端口配置   cal   col   网关   lib   summary   工作   

原文地址:http://blog.51cto.com/13569660/2060407

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!