1樓:
需要,由於uplink-fast實際上使用的是一種簡化的spanning-tree演算法,所以,在使用uplink-fast時需將裝置所支援的標準的spanning-tree關閉,否則容易發生衝突。
2樓:roger_林子
配置uplink-fast跟spanning-tree有聯絡嗎?生成樹協議只不過是為了防環。跟交換機的級聯沒什麼關係吧?
在cisco的模擬器中,spanning-tree uplinkfast命令能用什麼命令替換嗎?
3樓:網路問題專家
應該是不能,模擬器在三層上面工作比較完美,但是很多二層實現都是需要硬體支援的,而軟體很難模擬出來二層硬體,所以二層命令支援的就比較少。如果你想做二層,還是找真機比較好一點。
用cisco packet tracer 6.0做 交換機上配置pvst實驗 為什麼顯示spanning-tree uplinkf
4樓:匿名使用者
rstp 只是一個叫法 配置的時候是mst
sw1(config)#spanning-tree mode mst (啟用mst)
sw1(config)#spanning-tree mst configuration
sw1(config-mst)#name 111
sw1(config-mst)#revision 10
sw1(config-mst)#instance 1 vlan 1-5
sw1(config-mst)#instance 2 vlan 6-10
sw1(config)#spanning-tree mst 1 priority 4096 修改本交換機在這一大堆vlan中的優先順序
sw1(config-if)#spanning-tree mst 1 cost 19 修改本介面在這一組中的開銷
sw1#show spanning-tree mst
sw1#show spanning-tree mst configuration
普通交換機常用配置命令?
5樓:老王談網際網路
a、更改遠端telnnet密碼
switch#configure terminal
switch(config)#line vty 0 4
switch(config-line)#password qycx123
switch(config-line)#login
switch(config-line)#exit
b、更改進入全域性配置模式時的密碼
switch#configure terminal
switch(config)#enable secret qycx123
思科交換機常用命令——建立並劃分vlan
a、建立vlan
switch#vlan database
switch(vlan)#vlan 99 name office (建立vlan 99 並命名為office)
b、將埠劃分至vlan
switch(config)#inte***ce fastethernet 0/8
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 99 (將8號快速以太口劃分至vlan 99)
思科交換機常用命令——除錯命令
a、顯示所有配置命令:switch#show run
b、顯示所有介面狀態:switch#show ip int brief
c、顯示所有vlan的資訊:switch#show vlan brief
cisco交換機還是比較常用的,於是我研究了一下cisco交換機命令的大總結,在這裡拿出來和大家分享一下,希望對大家有用。我所針對的都是cisco的裝置而言的,華為的可以跟據手冊來查,配置都是差不多的,這裡華子就不多寫華為的裝置了,瞭解的也不是很多。
cisco交換機命令之使用telnet遠端式管理
switch(config)#inte***ce vlan 1 進入vlan 1
switch(config-if)#ip address 設定ip地址
switch(config-if)#ip default-gateway 設定預設閘道器
switch(config)#line vty 0 4 進入虛擬終端
switch(config-line)#login 允許登入
switch(config-line)#password xx 設定登入口令
switch#exit 返回命令
cisco交換機命令之控制檯口令
switch(config)#line console 0 進入控制檯口
switch(config-line)#login 允許登入
switch(config-line)#password xx 設定登入口令
switch#exit 返回命令
cisco交換機命令之基本介面配置
switch(config)#inte***ce f0/1 進入f0/1介面
switch(config-if)#duplex full 配置全雙工模式
switch(config-if)#speed 100 配置速率
switch(config-if)#description to ***** 介面描述
switch(config)#ip domain-name ***.com 設定或名伺服器
switch(config)#mac-address-table aging-time 設定mac表超時時間
switch#write 儲存配置資訊
switch#copy running-config startup-config 儲存當前配置nvram
switch#erase startup-config 清除配置檔案
cisco交換機命令之交換機vlan設定:
switch#vlan database 進入vlan設定
switch(vlan)#vlan 2 建vlan 2
switch(vlan)#name 名字 建vlan 2的名稱
switch(vlan)#no vlan 2 刪vlan 2
注:刪除vlan時原屬於此vlan的埠處於非啟用狀態,直到重新分配為止。
switch(config)#int f0/1 進入埠1
switch(config-if)#switchport mode access 當前埠工作莫試
switch(config-if)#switchport access vlan 2 當前埠加入vlan 2
switch(config-if)#switchport mode trunk 設定為幹線
switch(config-if)#switchport trunk encapsulation dot1q 設定vlan 中繼協議
switch(config-if)#no switchport mode 或 ( switchport mode access) 禁用幹線
switch(config-if)#switchport trunk allowed vlan add 1,2 ; 從trunk中新增vlans
switch(config-if)#switchport trunk allowed vlan remove 1,2 ;從trunk中刪除vlans
switch(config-if)#switchport trunk pruning vlan remove 1,2 ;從trunk中關閉區域性修剪
cisco交換機命令之乙太網通道配置
switch(config)#inte***ce range fasternet0/1 - 2 將fasternet0/1和0/2 口**
switch(config-if)#channel-group 1 mode on 配置以太通道模式
switch(config-if)#port-channel load-balance 在鏈路間實現負載均衡
switch#show etherchannel 1 summary 檢視通道資訊
switch#show etherchannel load-balance 檢視通道資訊
cisco交換機命令之vtp配置
switch(config)#vtp domain 設定vtp域名
switch(config)#vtp password 設定vtp密碼
switch(config)#vtp mode server 設定vtp伺服器模式
switch(config)#vtp mode client 設定vtp客戶機模式
switch(config)#vtp mode transparent 設定vtp 透明模式
switch(config)#vtp version 設定vtp版本
switch(config)#vtp pruning 啟用vtp修解
switch(config)#no vtp pruning 關閉vtp修解
注:要想從vtp中減少一臺交換機只需將該交換機vtp 名更改
cisco交換機命令之生成樹stp:
switch(config)#spanning-tree vlan 啟用stp生成樹(基於vlan)
switch(config)#spanning-tree vlan root primary 指定根交換機(基於vlan)
switch(config)#spanning-tree vlan root secondary 指定備用根交換機(基於vlan)
switch(config)#spanning-tree vlan priority 指定交換機優先順序(基於vlan)
switch(config)#no spanning-tree vlan priority 將交換機的優先順序恢復預設值(基於vlan)
switch(config-if)#spanning-tree vlan cost 指定埠成本(起用trunk的埠模式下)
switch(config-if)#spanning-tree vlan port-prioty 指定交換機埠優先順序(基於vlan)
switch(config-if)#spanning-tree portfast 配置速埠(連線終端裝置的埠狀態)如pc機
switch(config)#spanning-tree uplinkfast 配置上行速埠
switch(config)#spanning-tree vlan hello-time 配置交換機hello時間(基於vlan)
switch(config)#spanning-tree vlan forward-time 修改**延遲計時器(基於vlan)
switch(config)#spanning-tree vlan max-time 修改最大老化時間(基於vlan)
switch#show spanning-tree summery 檢測vlan生成樹配置
switch#show spanning-tree vlan detail 瀏覽詳細生成樹配置資訊
switch#show spanning-tree inte***ce detail 瀏覽詳細生成樹埠配置資訊
cisco交換機命令之交換機顯示命令:
switch#show vtp status 檢視vtp配置資訊
switch#show running-config 檢視當前配置資訊
switch#show vlan 檢視vlan配置資訊
switch#show inte***ce 檢視埠資訊
switch#show int f0/0 檢視指定埠資訊
switch#dir flash: 檢視快閃記憶體
switch#show version 檢視當前版本資訊
switch#show mac-address-table aging-time 檢視mac超時時間
switch#show cdp cisco裝置發現協議 (可以檢視聆接裝置)
switch#show cdp traffic 杳看接收和傳送的cdp包統計資訊
switch#show cdp neighbors 檢視與該裝置相鄰的cisco裝置
switch#show inte***ce f0/1 switchport 檢視有關switchport的配置
switch#show cdp neighbors 檢視與該裝置相鄰的cisco裝置
銳捷交換機如何刪掉交換機配置,銳捷交換機如何刪除配置檔案
您好,銳捷交換機及路由器是一種企業級裝置,沒有所謂的reset按鈕可以清空配置資訊。在教學過程中一般使用下面的方法 1 在特權模式下使用命令 delete flash config.text直接把配置刪掉,這樣就徹底清空了配置檔案 2 在配置後在特權模式下使用命令 reload重新啟動裝置的時候,訊...
交換機配置命令,簡述交換機的幾種配置模式,以及進入的操作命令是什麼?
1 交換機配置命令,英文名switchboard mand,是一種計算機語言,用來控制交換機的語言。2 交換機的配置方式 1 使用控制 console 埠,使用超級終端配置交換機 console是一個用來連線配置終端的非同步序列介面,其介面標準是rj 45。2 使用tel 配置交換機 用遠端登陸te...
關於銳捷交換機配置,銳捷交換機如何配置
交換機基本操作 1.進入特權模式 1.進入特權模式 switch enable switch 2.返回使用者模式 switch exit press return to get started switch 配置模式 全域性配置模式 主機名 config 配置交換機的整體引數子模式 1.線路配置模式...