思科模拟器配置NAT

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了思科模拟器配置NAT相关的知识,希望对你有一定的参考价值。


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的主要内容,如果未能解决你的问题,请参考以下文章

在思科模拟路由器上怎么配置动态nat

思科模拟器实现HSRP以及NAT的端口复用综合运用

通过思科模拟器CISCO PACKET TRACER学习网络13——基于端口的NAPT

思科动态nat的应用,以及端口映射,外网的远程管理,dhcp的架设

思科网络模拟器配置ACL配置

思科网络模拟器配置 ACL配置