基於cisco_vtp的vlan配置
step1:設計實驗環境
實驗環境:6臺2950cisco交換機 8臺PC。如圖:
swiches' hostnames A,B,C,D,E,F
vtp:
Server:Switch1
Client:Switch0,2,3,4,5,6
Domain:nashsun.com
Password:cisco
Trunk mode:trunk
VLAN10
PC0:10.10.1.1/16 fa0/11
PC2:10.10.2.2/16 fa0/11
PC6:10.10.3.3/16 fa0/13
VLAN20
PC1:10.20.1.1/16 fa0/12
PC3:10.20.2.2/16 fa0/15
PC4:10.20.3.3/16 fa0/11
VLAN30
PC5:10.30.1.1/16 fa0/13
PC7:10.30.2.2/16 fa0/15
STEP2: 配置VTP
本vlan是基於cisco的vtp(vlan trunk protocol)所以需要先配置vtp,在特權模式 C# 下輸入 vlan database 進入vlan 配置模式,鍵入C(vlan)# vtp domain nashsun.com & vtp password cisco & vtp client 非別配置 域名 域密碼 vtp角色。
STEP3:配置trunk
分別進入所需配置trunk的介面模式,配置trunk隧道,以保證線路支援多種vlan。
A(config)#interface fastEthernet 0/1
A(config-if)#switchport mode trunk
STEP4:在server交換機配置vlan
在具有sever角色的switch上配置vlan 配置之後會自動同步各個client角色switch
檢視vtp資訊命令:
A#show vtp status
VTP Version : 2
Configuration Revision : 3
Maximum VLANs supported locally : 255
Number of existing VLANs : 8
VTP Operating Mode : Client
VTP Domain Name : nashsun.com
VTP Pruning Mode : Disabled
VTP V2 Mode : Disabled
VTP Traps Generation : Disabled
MD5 digest : 0x7A 0x32 0x57 0x39 0xCB 0x57 0xD9 0x4B
Configuration last modified by 0.0.0.0 at 3-1-93 00:39:35
配置vlan方法很簡單:(此操在server角色的switch)
在全域性配置模式下直接鍵入想配置的vlan 然後 exit 即可
A(config)#vlan 20
A(config)#exit
STEP5:配置埠歸屬vlan
對交換機相應介面進行配置:
單個埠配置:A(config-if)#switchport access vlan 10
多個埠配置:A(config)#interface rang fastEthernet 0/2-4
A(config-if-range)#switchport access vlan 10
STEP6:配置PC ipaddr/mask
STEP7:PING TEST
實驗結束