在思科模拟路由器上怎么配置动态nat
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在思科模拟路由器上怎么配置动态nat相关的知识,希望对你有一定的参考价值。
您好:设置如下:
1.将宽带猫接出的或者入户网线插入到路由器WLAN接口中,然后在通过无线网络连接手机。
2.使用手机打开浏览器,在浏览器地址栏输入路由器管理页面地址,可以参考说明书查找,一般是192.168.1.1。
3.进入页面后,会提示输入管理账号,这个也需要在说明书上找到,一般账号密码均是admin。
4.点击设置向导,按页面提示设置宽带未pppoe拨号,并且输入宽带账号密码。
5.根据页面提示,勾选开启wifi网络,并且设置密码,完成后,点击下一步,设备自动重启即可。 参考技术A ip nat inside source ,用这个命令就行。
思科模拟器配置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的主要内容,如果未能解决你的问题,请参考以下文章