CISCO交換機配置命令及釋義

2021-09-27 05:01:45 字數 2962 閱讀 8343

cisco交換機配置命令及釋義

1.設定交換機名稱

switch(config)#hostname dshd

dshd(config)#

2開啟和關閉埠

//預設狀態下,埠是關閉的

switch(config)#inte***ce fastethernet 0/1

switch(config-if)#shutdown //關閉埠

switch(config)#inte***ce fastethernet 0/1

switch(config-if))#no shutdown //開啟埠

3設定埠雙工狀態

switch(config)#inte***ce fastethernet 0/1

switch(config-if)# duplex

//其中half為半雙工,full為全雙工,auto為自動協商。

4設定埠速率(流量設定)

switch(config)#inte***ce fastethernet 0/1

switch(config-if)# speed

//其中10為10m,100為100m,1000為1000m,auto為自動協商。

switch(config-if)#no speed

//恢復埠預設速率配置。

5設定乙太網埠的工作模式(access和trunk)

// 指明埠工作在access模式下

switch(config-if)#switchport mode access

//指明埠工作在trunk模式下

switch(config-if)#switchport mode trunk

說明 :

乙太網埠有二種工作模式:access和trunk。

1、埠工作在access模式下只能屬於1個vlan,一般用於接使用者計算機的埠;

2、埠工作在trunk模式下可以屬於多個vlan,可以接收和傳送多個vlan的報文,一般用於交換機之間連線的埠;

3、可以使用switchport access vlan vlan_number指明埠屬於什麼vlan。

6.設定鏈路聚合(etherchannel)

switch(config)#inte***ce fastethernet 0/1

switch(config-if)# channel- group channel-group-number mode

注意 :

1、快速乙太網通道鏈路上的所有埠必須是同乙個vlan的成員,或者必須是trunk埠。

2、如果快速乙太網通道鏈路內的埠是trunk埠,則這些埠必須有相同的vlan範圍。

3、快速乙太網通道鏈路內的所有埠的速度和雙工模式設定必須相同。

7.trunk配置及封裝

switch(config)#inte***ce gigabitethernet1/0/2

switch(config-if)# switchport trunk encapsulation dot1q

switch(config-if)# switchport mode trunk

1、接入(access)鏈路:接入鏈路只是乙個vlan的成員。這個vlan被稱為埠的本地vlan。連線到這個埠上的裝置完全不知道存著乙個vlan。裝置只是根據被配置在該裝置上的第3層資訊認為它是網路或子網的一部分。為了保證使它不需要知道vlan的存在,交換機負責在幀被傳送到未端裝置之前將vlan資訊從幀中拿掉。接入鏈路是屬於乙個、並且只屬於乙個vlan的埠,這個埠不能從另乙個vlan接收資訊,除非該資訊已經選擇過路由了。這個埠也不能傳送資訊到另乙個vlan,除非這個埠可以訪問路由器。

2、幹道(trunk)鏈路:幹道鏈路可以承載多個vlan。幹道鏈路的得名是來自**系統中的幹道(trunk),它們能夠傳輸多個**對話。幹道鏈路通常被用來將交換機連線到其他交換機,或者將交換機連線到路由器。cisco在快速乙太網和千兆乙太網埠上支援幹道鏈路。

目前cisco所使用的有兩種標識技術如下:
 a、cisco交換機間鏈路(isl): 用於互連多台交換機的cisco專有封裝協議。該該協議在 catalyst 交換機和路由器上被支援

 b、ieee802.1q標準:它通過 在幀頭插入乙個vlan識別符號來標識vlan。

8.配置二層、三層vlan

//建立vlan

switch#vlan database

switch(config-vlan)# vlan valn_id name vlan_name

switch(config-vlan)# no vlan vlan_id

//建立三層vlan

switch(config)# inte***ce vlan_id

switch(config-vlan)# ip address 172.168.1.1 255.255.255.0

switch(config-vlan)# no shutdown

//埠加入vlan

switch(config)# inte***ce g1/0/10

switch(config-if)#switchport mode access

switch(config-if)#switchport access vlan vlan_id

switch(config-if)#no shutdown

9.靜態路由設定

配置靜態路由示例:

ip route 0.0.0.0 0.0.0.0 172.18.128.49

刪除靜態路由示例

no ip route 0.0.0.0 0.0.0.0 172.18.128.49

cisco交換機配置

cisco交換機配置的幾個常用命令 switch enable 進入特權模式 switch conf t 進入配置模式 switch config int fa0 0 進入fa0 0介面 switch config if swichport mode trunk trunk介面配置 switch c...

cisco交換機命令

交換機口令設定 switch enable 進入特權模式 switch config terminal 進入全域性配置模式 switch config hostname 設定交換機的主機名 switch config enable secret 設定特權加密口令 switch config enab...

Cisco 交換機基本配置命令

交換機基本狀態 switch rom狀態,路由器是 rommon hostname 使用者模式 hostname 特權模式 hostname config 全域性配置模式 hostname config if 介面狀態 交換機口令設定 switch enable 進入特權模式 switch conf...