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)#
实验结果:成功连通
原文地址:http://blog.51cto.com/13569660/2060407