GNS3实现单臂路由的实现

Vlan 单臂路由实现 (GNS3模拟环境)小J实验
 
CISCO.jpg (29.2 KB)
2010-5-18 16:50

如图所示
大家好我是小J,正在学习CISCO NP,所谓温故而知新,所以就把NA的实验拿出来和大家探讨一下:
使用GNS3搭建实验平台
图中R1、SW1、SW2、PC1、PC2都是使用CISCO3640路由器IOS模拟
IP地址规划:
由于是实验 所以使用私网IP地址192.168.10.0/24和192.168.20.0/24分别为VLAN10和VLAN20分配地址段
PC1 IP:192.168.10.1/24
PC2 IP:192.168.20.1/24
路由器R1F0/0子接口
F0/0.10 IP:192.168.10.254/24
F0/0.20 IP:192.168.20.254/24
SW1与SW2是使用CISCO3640+NM-16ESW模块模拟交换机。
SW1、SW2之间使用(EtherChannel)以太通道做负载均衡
两台交换机使用VTP快速部署VLAN
SW1为SERVER,SW2为CLIENT
在两台交换机上创建VLAN10、VLAN20
由于是路由器模拟交换机,所以创建VLAN的方式是在VLAN数据库中创建VLAN 以及VTP模式
特权模式下:
SW#vlan database
SW(vlan)#vtp server
SW(vlan)#vtp domain ***
SW(vlan)#vtp password ***
SW(vlan)#vlan 10
使用单臂路由实现VLAN 间路由。

配置:
PC1、PC2是使用CISCO3640路由IOS模拟PC 
(config)#no ip routing   //关闭路由功能
(config)#ip default-gateway 192.168.x.x  //指定默认网关地址
(config-if)#ip address 192.168.x.x 255.255.255.0   //配置接口IP地址
(config-if)#no shutdown       //开启接口

SW1、SW2配置
SW1设置为VTP SERVER模式,并创建VLAN10  VLAN20
#vlan database
SW1(vlan)#vtp server
SW1(vlan)#vtp domain cisco
SW1(vlan)#vtp password cisco
SW1(vlan)#vlan 10
SW1(vlan)#vlan 20
SW1(config)#no ip routing  //关闭路由功能
SW1(config)#int f0/0
SW1(config-if)#switchport mode access      //接口模式为ACCESS
SW1(config-if)#switchport access vlan 10    //接口所属VLAN 为vlan 10
SW1(config-if)#exit
SW1(config)#int range f0/10 -11
SW1(config-if-range)#switchport trunk encapsulation dot1q    //确定TRUNK封装类型为dot1q
SW1(config-if-range)#switchport mode trunk       //接口模式为TRUNK

SW1(config-if-range)#channel-group 1 mode on     //创建以太通道
SW1(config-if-range)#exit

SW2设置为VTP CLIENT模式
#vlan database
(vlan)#vtp client
(vlan)#vtp domain cisco
(vlan)#vtp password cisco
(config)#no ip routing  //关闭路由功能
SW2(config)#int f0/0 
SW2(config-if)#switchport mode access      //接口模式为ACCESS
SW2(config-if)#switchport access vlan 20      //接口所属VLAN 为vlan 20

SW2(config-if)#exit
SW2(config)#int range f0/10 -11
SW2(config-if-range)#switchport trunk encapsulation dot1q   //确定TRUNK封装类型为dot1q
SW2(config-if-range)#switchport mode trunk         //接口模式为TRUNK

SW2(config-if-range)#channel-group 1 mode on   //创建以太通道
SW2(config-if-range)#exit

SW2(config)#int f0/15
SW2(config-if)#switchport trunk encapsulation dot1q     //确定TRUNK封装类型为dot1q
SW2(config-if)#switchport mode trunk      //接口模式为TRUNK
SW2(config-if)#exit


R1路由器使用CISCO3640路由器IOS模拟
开始F0/0接口
R1(config)#int f0/0 
R1(config-if)#no shutdown 
R1(config-if)#exit
创建F0/0.10子接口和F0/0.20子接口
R1(config)#int f0/0.10
R1(config-subif)#encapsulation dot1Q 10 
R1(config-subif)#ip add 192.168.10.254 255.255.255.0
R1(config-subif)#exit
R1(config)#int f0/0.20
R1(config-subif)#encapsulation dot1Q 20
R1(config-subif)#ip add 192.168.20.254 255.255.255.0
R1(config-subif)#exit

测试结果:
PC1 ping 网关地址
PC1#ping 192.168.10.254    
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.10.254, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/250/1024 ms

PC2 ping 网关地址
PC2#ping 192.168.20.254
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.20.254, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/243/1072 ms

PC1 ping PC2
PC1#ping 192.168.20.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.20.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 36/92/128 ms
PING通过,实验成功!

扩展实验:
1.在R1上使用DHCP给VLAN 10 和 VLAN 20 中的主机分配动态IP地址并实现单臂路由。
实现PC1 ping通 PC2
R1配置:
R1(config)#ip dhcp pool vlan10
R1(dhcp-config)#network 192.168.10.0 /24
R1(dhcp-config)#default-router 192.168.10.254
R1(dhcp-config)#exit
R1(config)#ip dhcp excluded-address 192.168.10.254
R1(config)#ip dhcp pool vlan20
R1(dhcp-config)#network 192.168.20.0 /24
R1(dhcp-config)#default-router 192.168.20.254
R1(dhcp-config)#exit
R1(config)#ip dhcp excluded-address 192.168.20.254

PC1、PC2配置:
PCx(config)#int f0/0
PCx(config-if)#ip add dhcp
PCx(config-if)#exit

当获取到IP地址时会提示:
May 18 16:24:42.323: %DHCP-6-ADDRESS_ASSIGN: Interface FastEthernet0/0 assigned DHCP address 192.168.10.1, mask 255.255.255.0, hostname PC1
使用show ip interface brief 查看获取到的IP地址
使用PC1 ping PC2 结果成功!

2.删除VLAN 10 和 VLAN 20 并在两台交换机上创建VLAN2,使用单臂路由实现Native VLAN 1 与 VLAN 2的通信。VLAN 1 和 VLAN 2 的IP地址均由R1提供DHCP服务
地址段为:VLAN 1:192.168.1.0/24 网关地址:192.168.1.254/24
                  VLAN 2:192.168.2.0/24 网关地址:192.168.2.254/24
实现PC1 ping通 PC2
扩展实验2就留给大家实验吧!成功之后别忘了把实验时出现的错误分享出来!大家讨论
欢迎大家的回复

 

你可能感兴趣的:(IP地址,交换机,如图所示,温故而知新)