实验要求:
使得2台不同VLAN的PC机互通及自动获得IP地址
所需设备:
使用GNS3模拟器 模拟1台C2691路由器 1台交换机 2台PC
实验过程:
1.将C1 C2分别划分到VLAN10 VLAN20
2.将1/0接口设为中继口
3.将交换机IP 设置为自动获取
4.为交换机设置网关
5.将R1 0/0接口分成2个子接口0.1和0.2
F0/0.1
R1#conf t //全局配置模式
R1(config)#int fa 0/0.1 //新建子接口f0/0.1
R1(config-subif)#encapsulation dot1Q 10 //将子接口给VLAN10使用
R1(config-subif)#ip add 192.168.10.1 255.255.255.0 //配置网关及掩码
R1(config-subif)#no shut //激活
F0/0.2
R1#conf t
R1(config)#int fa 0/0.2
R1(config-subif)#encapsulation dot1Q 20
R1(config-subif)#ip add 192.168.20.1 255.255.255.0
R1(config-subif)#no shut
6.设置DHCP ip自动获取网段
设置192.168.1.0网段
R1#conf t//全局配置模式
R1(config)#ip dhcp pool vlan1 //新建VLAN1(名称自取)
R1(dhcp-config)#network 192.168.1.0 /24 //建立192.168.1.0网段 使用24掩码
R1(dhcp-config)#default-router 192.168.1.1 // 设置网关192.168.1.
设置192.168.10.0网段
设置192.168.20.0网段
7.激活R10/0接口
8.使用虚拟PC获取IP
本文出自 “Dream 星君” 博客,转载请与作者联系!