計算機網路實驗 — Cisco交換機的配置
阿新 • • 發佈:2018-11-25
Cisco交換機的配置實驗的具體步驟及命令程式碼:
Switch> enable ——————————————觀察交換機相關資訊 Switcher#show version ——————————————檢視交換機配置 Switch#show running-config ——————————————檢視交換機埠引數 Switch#show interfaces f0/1 ——————————————生成樹配置 Switch#show spanning-tree ——————————————檢視交換機的MAC地址 Switch#show mac-address-table ——————————————進入特權命令狀態 Switch>enable Switch# ——————————————進入全域性設定狀態 Switch#configure terminal Switch(config)# ——————————————設定交換機名稱 Switch(config)#hostname switch_1 Switch_1(config)# ——————————————設定交換機IP地址 Switch_1(config)#int vlan1 ——進入vlan介面模式 Switch_1(config-if)#ip address 172.21.12.254 255.255.255.0 Switch_1(config-if)#exit Switch_1(config)# ——————————————進入介面設定狀態 Switch_1(config)#interface f0/10 Switch_1(config-if)# ———————————設定交換機介面的duplex方式 Switch_1(config-if)#speed 100 Switch_1(config-if)#duplex half Switch_1(config-if)#exit Switch_1(config)#exit Switch_1# ——————————在特權命令下驗證埠工作狀態 Switch_1#show interfaces f0/10 劃分VLAN Switch_2#configure terminal Switch_2(config)# ——————————設定switch2為VTP的server Switch_2(config)#vtp mode server ——————————設定VTP的域名為ABC Switch_2(config)#vtp domain ABC ———————設定switch1的vtp域名及client模式 Switch_1(config)#vtp mode client Switch_1(config)#vtp domain ABC ——在switch2(伺服器)設定VLAN:①增加VLAN2;②VLAN2的名字為xyx;③其中f0/1屬於VLAN1;f0/2屬於VLAN2;④f0/24為trunk—— ①②————————————————————— Switch_2(config)#vlan 2 Switch_2(config-vlan)#name xyz ③—————————————————————— Switch_2(config-vlan)#int f0/2 Switch_2(config-if)#switchport mode access Switch_2(config-if)#switchport access vlan 2 ④—————————————————————— Switch_2(config-if)#exit Switch_2(config)#int f0/24 Switch_2(config-if)#switchport mode trunk ———在switch1設定f0/1屬於vlan1;f0/2屬於vlan2;f0/24為trunk——— Switch_1(config)#int f0/2 Switch_1(config-if)#switchport mode access Switch_1(config-if)#switchport access vlan 2 ——————————————檢查VLAN資訊 Switch_1#show vlan b/brief