1. 程式人生 > >VLAN與Trunk的配置及命令(思科)

VLAN與Trunk的配置及命令(思科)

term mark pre pc機 ace nag -i vpd ble

技術分享圖片
實驗目的:實現同VLAN之間通信 ;不同VLAN不能通信;
實驗步驟:
1.先給PC機配置同一個網段的IP地址;因為不同IP網段要加路由器;
2.給交換機SW1,SW2創建相應的VLAN;不同設備使用access;相同設備使用trunk;
3.驗證測試;
4.命令如下:
交換機SW1:

Switch>enable 進特權
Switch#configure terminal 進全局
Switch(config)#vlan 10 創建VLAN
Switch(config-vlan)#vlan 20 創建VLAN
Switch(config-vlan)#exit 退出到上一模式
Switch(config)#interface fastEthernet 0/1 進入端口
Switch(config-if)#switchport mode access  設置成access模式
Switch(config-if)#switchport access vlan 10  把相應VLAN加入
Switch(config-if)#exit 退出到上一模式
Switch(config)#interface fastEthernet 0/2 進入端口
Switch(config-if)#switchport mode access  設置成access模式
Switch(config-if)#switchport access vlan 20 把相應VLAN加入
Switch(config-if)#exit 退出到上一模式 
Switch(config)#interface fastEthernet 0/3 進入端口
Switch(config-if)#switchport mode trunk 
Switch(config-if)#switchport trunk allowed vlan all
Switch(config-if)#exit 退出到上一模式
交換SW2
    Switch>enable
Switch#configure terminal
Switch(config)#vlan 10 創建VLAN
Switch(config-vlan)#vlan 20 創建VLAN 
Switch(config-vlan)#exit 退出到上一模式
Switch(config)#interface fastEthernet 0/1 進入端口
Switch(config-if)#switchport mode access  設置成access模式
Switch(config-if)#switchport access vlan 10 把相應VLAN加入
Switch(config-if)#exit 退出到上一模式
Switch(config)#interface fastEthernet 0/2 進入端口
Switch(config-if)#switchport mode access  設置成access模式
Switch(config-if)#switchport access vlan 20 把相應VLAN加入
Switch(config-if)#exit 退出到上一模式
Switch(config)#interface fastEthernet 0/3 進入端口
Switch(config-if)#switchport mode trunk 
Switch(config-if)#switchport trunk allowed vlan all
Switch(config-if)#exit 退出到上一模式

5.驗證測試;
技術分享圖片

VLAN與Trunk的配置及命令(思科)