赞
踩
校园网拓扑图如图,构建6个VLAN:
VLAN1 | VLAN2 | VLAN3 | VLAN4 | VLAN5 | VLAN6 |
dep1 | dep2 | dep3 | dep4 | serv | network |
10.1.1.0/24 | 10.1.2.0/24 | 10.1.3.0/24 | 10.1.4.0/24 | 10.1.5.0/24 | 10.1.6.0/24 |
第一步:VTP配置
1.config>vtp domain name
2.config>vtp mode server/client
第二步:建立VLAN
1.#vlan database
2.#vlan号 name
第三步:对端口VLAN划分
对server:1.config>int f0/1
2.config-if>switchport trunk encapsulation dot1q
3.config-if>switchport mode trunk
4.config-if>switchport mode access
5.config-if>switchport access vlan号
6.config-if>exit
...对其他端口重复操作
对client: 1.config>int f0/1
2.config-if>switchport mode trunk
3.config-if>switchport mode access
4.config-if>switchport access vlan号
5.config-if>exit
...对其他端口重复操作
第四步:设置各个VLAN的网址
1.config>int vlan号
2.config-if>ip address 10.1.1.1 255.255.255.0
3.config-if>exit
4.继续设置其他的vlan
第五步:设置路由(采用ospf)
在server交换机上,1.config>router ospf 100
2.network 10.1.1.0 0.0.0.255 area 0
3.继续配其他网段
第六步:dhcp配置
在server交换机上,1.config>ip dhcp pool dep1
2.config-if> network 10.1.1.0 255.255.255.0
3.config-if>default-router 10.1.1.1
4.exit
5.继续配其他网段
(下次上完课再继续...)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。