當前位置:才華齋>IT認證>思科認證>

cisco思科交換機配置篇

思科認證 閱讀(3.1W)

要進行思科交換機的配置,首先就得進入交換機的全域性配置模式,在成功連線交換機並且登陸成功進入特權模式下,下面跟yjbys小編一起來學習一下思科交換機的配置命令吧!

cisco思科交換機配置篇

  1、輸入進入全域性配置模式:

switch#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

switch(config)#

switch(config)#

switch(config)#

這麼簡單的一條命令,俺們就進入到全域性配置模式了,還記得上一篇中檢視埠所查詢到的資訊中name欄位下的值嗎?這欄位其實代表的是交換機埠的描述資訊

  2、修改埠描述

switch#

switch#

switch#conf ter

Enter configuration commands, one per line. End with CNTL/Z.

switch(config)#

switch(config)#int fa0/3

switch(config-if)#

switch(config-if)#desc

switch(config-if)#description updateDesc

switch(config-if)#

switch(config-if)#exit

switch(config)#exit

switch#

switch#show inter

switch#show interfaces statu

switch#show interfaces status

Port Name Status Vlan Duplex Speed Type

Fa0/1 connected 1 a-full a-100 10/100BaseTX

Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

Fa0/3 updateDesc notconnect 1 auto auto 10/100BaseTX

Fa0/4 connected 1 a-full a-100 10/100BaseTX

Fa0/5 h3c-2.200 connected 1 a-full a-100 10/100BaseTX

Fa0/6 notconnect 1 auto auto 10/100BaseTX

修改描述的關鍵命令在於,在配置模式下,進入到要修改的埠下,然後使用description + “內容”!效果應該很直觀了吧,接下來就是修改埠的所在Vlan了

  3、修改埠Vlan

switch#

switch#

switch#conf t

Enter configuration commands, one per line. End with CNTL/Z.

switch(config)#

switch(config)#int fa0/3

switch(config-if)#

switch(config-if)#sw acc vl 2

switch(config-if)#

switch(config-if)#exit

switch(config)#

switch(config)#exit

switch#

switch#show inter statu

Port Name Status Vlan Duplex Speed Type

Fa0/1 connected 1 a-full a-100 10/100BaseTX

Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

Fa0/3 updateDesc notconnect 2 auto auto 10/100BaseTX

Fa0/4 connected 1 a-full a-100 10/100BaseTX

Fa0/5 h3c-2.200 connected 1 a-full a-100 10/100BaseTX

Fa0/6 notconnect 1 auto auto 10/100BaseTX

邏輯和修改埠描述是一樣的,對於配置來說,肯定是到了能有配置許可權的地方和要配置的物件,這裡修改埠Vlan的關鍵命令為:sw acc vl + vlantag,命令很明顯被簡寫了,但是不影響執行,命令的全寫為:switchport access vlan + vlantag

還有一些對埠的簡單操作,譬如修改埠的模式,

  4、修改埠模式

switch(config-if)#switchport trunk encap dot1q ----------------設定vlan 中繼的'封裝協議

注:dot1q就是 IEEE 802.1Q協議,是vlan的一種封裝方式,是公有協議。還有一種trunk協議,是ISL,也是vlan的一種封裝方式,不過這是Cisco思科私有協議,其他廠商不能用。

switch(config-if)#switchport mode trunk ------------------------設定埠型別為trunk

switch(config-if)#switchport trunk allowed vlan 1,2 ---------設定允許的vlan,預設不用配置,為所有vlan

switch(config-if)#switchport trun native vlan 999 ---------------設定trunk口的native vlan

  5、埠狀態

switch(config)#

switch(config)#int fa0/3

switch(config-if)#

switch(config-if)#

switch(config-if)#sw acc vl 1

switch(config-if)#

switch(config-if)#

switch(config-if)#shutd

switch(config-if)#shutdown

switch(config-if)#

switch(config-if)#exit

switch(config)#

switch(config)#exit

switch#

switch#show inter statu

Port Name Status Vlan Duplex Speed Type

Fa0/1 connected 1 a-full a-100 10/100BaseTX

Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

Fa0/3 updateDesc disabled 1 auto auto 10/100BaseTX

Fa0/4 connected 1 a-full a-100 10/100BaseTX

上面的一系列為切換Vlan,並且shutdown埠,這時候大家可能看到了交換機3號埠的狀態已變成disable了,如果我們要啟用埠只需

switch#conf t

Enter configuration commands, one per line. End with CNTL/Z.

switch(config)#

switch(config)#int fa0/3

switch(config-if)#

switch(config-if)#no shut

switch(config-if)#no shutdown

switch(config-if)#

switch(config-if)#exit

switch(config)#

switch(config)#exit

switch#

switch#show inter statu

Port Name Status Vlan Duplex Speed Type

Fa0/1 connected 1 a-full a-100 10/100BaseTX

Fa0/2 h3c2.250 connected trunk a-full a-100 10/100BaseTX

Fa0/3 updateDesc notconnect 1 auto auto 10/100BaseTX

Fa0/4 connected 1 a-full a-100 10/100BaseTX