思科系列交換機埠聚合的命令是什麼啊?我們要做實驗,怎麼也寫

2021-04-03 06:19:19 字數 5283 閱讀 8930

1樓:

樓上的幽默了。。。cisco的交換

機不支援聚合?

2層的交換機支援2層的port channel 例如2950,2960等

3層的交換機支援3層的port channel 例如3750,3560等

inte***ce rang f0/? - ?

channel-group ? mode on 主動配置聚合埠,不需要和對端裝置協商,注意最好兩邊裝置先shutdown配置好了後再no shut,不然很可能一邊的埠進入err-disable的狀態。配置好後使用:

可以用show ip int b檢視到生成的虛擬聚合介面。

2樓:匿名使用者

思科的交換機,不支援聚合的吧。 h3c的支援。

是我錯了,有的,以前學的時候沒留意。

命令switch(config)#int range f0/1 -12switch(config-if-range)#channel-group 1 mode desirable

3樓:匿名使用者

[l2swa] link-aggregation ethernet 0/1 to ethernet 0/2 both

或者 [l3sw] link-aggregation group 20 mode manual

cisco 埠聚合 怎麼測試

4樓:經傳大俠

例如你設定了

switcha的23埠和24埠和switchb埠和24埠做埠鏈路聚合,設定完成後,拔掉switcha的23埠或者24埠,過幾秒後會出現網路風暴的訊號燈就是成功了

5樓:期待_夏

show inte***ce channel-group ...還是show channel-group 具體記不清了,你可以問號。有一條類似的命令直接檢視**的狀態,裡面會顯示有哪些埠

6樓:匿名使用者

你說的是etherchannel嗎?如果是的話可以通過show int trunk來檢視狀態,另外可以通過shut down其中乙個物理介面,測試ping是否丟包

思科交換機命令,在思科交換機模擬軟體上進行埠聚合實驗,使用命令 switch(config)

7樓:青仔

哥們你做了繫結埠的動作沒啊? inte***ce range f0/1-2 channel-group 1 mode on 把1、2埠繫結成etherchannel 然後才能 inte***ce port-channel 1 才發現 哥們 是port-channel 不是port-group 給你個參考資料吧:http:

cisco交換機怎麼刪除埠聚合命令

8樓:

你直接把虛擬介面刪除,然後在把埠劃到相應的介面。直接 no int port-channel 1。inte***ce range f0/1-2 ,設定相應的屬性、。

9樓:匿名使用者

switch(config)#inte***ce gi0/1 進入埠

switch(config-if)no channel-group 1 把這個埠從聚合當中刪除

10樓:匿名使用者

幾乎所有的配置命令用no方式都可以刪除,如果你覺得乙個個輸入慢,你可以先將命令寫好,再copy 貼上進配置視窗,自會按順序一一執行,當然你要保證命令是對的。

11樓:我

能不能給我看看 是什麼命令?

思科交換機的埠聚合怎麼配置

12樓:李增惠

思科交換機的埠匯聚

cat2950的配置:

cat2950#conf t

cat2950(config)#vtp mode server

cat2950(config)#vtp domain cisco

cat2950(config)#vlan 10

cat2950(config-vlan)#exit

cat2950(config)#vlan 20

cat2950(config-vlan)#exit

cat2950(config)#int range fa0/5 - 14

cat2950(config-if-range)#switchport access vlan 10

cat2950(config-if-range)#exit

cat2950(config)#int range fa0/15 - 26

cat2950(config-if-range)#switchport access vlan 20

cat2950#conf t

cat2950(config)#int vlan 10

cat2950(config-if)#ip address 10.10.10.10 255.255.255.0

cat2950(config)#ip default-gateway 10.10.10.1

cat2950(config-if)#no shutdown

cat2950(config)#int port-channel 1

cat2950(config-if)#exit

cat2950(config)#int fa0/2

cat2950(config-if)#channel-group 1 mode on

cat2950(config-if)#exit

cat2950(config)#int fa0/3

cat2950(config-if)#channel-group 1 mode on

cat2950(config-if)#exit

cat2950(config)#int port-channel 1

cat2950(config-if)#switchport mode trunk

cat2950(config-if)#switchport trunk native vlan 10

cisco7200的配置:

cisco7200#conf t

cisco7200(config)#int port-channel 1

cisco7200(config-if)#exit

cisco7200(config)#int fa3/0

cisco7200(config-if)#channel-group 1

cisco7200(config-if)#exit

cisco7200(config)#int fa4/0

cisco7200(config-if)#channel-group 1

cisco7200(config-if)#exit

cisco7200(config)#int port-channel 1.10

cisco7200(config-subif)#encapsulation dot1q 10 native

cisco7200(config-subif)#ip address 10.10.10.1 255.255.255.0

cisco7200(config-subif)#exit

cisco7200(config)#int port-channel 1.20

cisco7200(config-subif)#encapsulation dot1q 20

cisco7200(config-subif)#ip address 10.10.11.1 255.255.255.0

cisco7200(config-subif)#exit

cisco7200(config)#exit

埠的聚合有兩種方式,一種是手動的方式,乙個是自動協商的方式。(1)手動方式 這種方式很簡單,設定埠成員鏈路兩端的模式為「on」。

命令格式為: channel-group

(2)自動方式 自動方式有兩種協議:pagp(port aggregation protocol)和lacp(link aggregation control protocol)。

pagp:cisco裝置的埠聚合協議,有auto和desirable兩種模式。

auto模式在協商中只收不發,desirable模式的埠收發協商的資料報。

lacp:標準的埠聚合協議802.3ad,有active和passive兩種模式。

active相當於pagp的auto,而passive相當於pagp的desirable。

1:在(config)#模式下,輸入int port-channel id(1-64)

2:假設要把f0/23和f0/24聚合,那麼分別在起埠配置裡面輸入:switchport trunkencapsulation dot1qswitchport mode trunk(假設有多個vlan)duplex fullspeed 100no cdp enablechannel-group 1 mode on(這裡的1就是開始建立的數字),或者直接在需要做埠聚合的埠上執行下面命令int port-ch 10channel-g 10 mode acchannel-g p lacp(panp)然後只要在對端交換機也做同樣配置就可以了

**「俠客居」的部落格。

在思科交換機模擬軟體上進行埠聚合實驗,使用命令 switch(config)#inte***ce port-group 1 卻老提示錯誤

13樓:網際網路答疑

哥們你做了繫結埠的動作沒啊?

inte***ce range f0/1-2channel-group 1 mode on把1、2埠繫結成etherchannel然後才能

inte***ce port-channel 1才發現 哥們 是port-channel 不是port-group

14樓:匿名使用者

命令輸的不對,自已到書上查

cisco交換機怎麼恢復埠配置~指令是什麼~

15樓:匿名使用者

恢復到預設vlan就行了

16樓:youv**e笑忘

config terminal

default inte***ce 《埠號》

17樓:匿名使用者

default inte***ce 口端號

思科交換機密碼命令enable pass和enable secret除了明文顯示和非明文顯示還有什麼區別

乙個加密,乙個是明文。配置了secret 預設級別比password 要高。沒有任何的區別,只是針對show run顯示出來的 password進行加密顯示 console 密碼 router en router conf t router config hostname hkhk config l...

思科Catalyst3560系列交換機有多少個型號

思科catalyst 3560 系列交換機有多少個型號?這份愛不僅溫潤著他們自己,也同樣溫潤著那些世俗的心 ws c3560g 48ps s catalyst 3560 48 10 100 1000t poe 4 sfp ipb image ws c3560g 48ps e catalyst 356...

華為交換機埠恢復預設配置的命令是什麼

華為交換機埠恢復預設配置的命令是clear configuration inte ce 華為交換機埠有3種鏈路型別 access trunk hybird。1 access型別埠 只能屬於1個vlan,一般用於連線計算機埠。2 trunk型別埠 可以允許多個vlan通過,可以接收和傳送多個vlan ...