普通交換機常用配置命令

2021-03-06 02:27:29 字數 5087 閱讀 9369

1樓:老王談網際網路

a、更改遠端teln***密碼

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 fastether*** 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交換機命令之使用tel***遠端式管理

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 ***.*** 設定或名伺服器

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 faster***0/1 - 2 將faster***0/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裝置

思科交換機的配置命令和銳捷交換機 華為交換機之間可以通用嗎

思科與銳捷的命令差異不大,與華為的命令就是單詞不一樣,但是同一個意思的單詞像 show 與 display 使用者模式 r1 enable 到特權模式 特權模式下 disable 退出到用使用者模式,但是不屏顯 show version 檢視系統 硬體 軟體資訊版本 show running con...

華為交換機檢視配置的命令是什麼,華為交換機telnet配置

在使用者或特權模式下都可,配置模式也行,display courrent configura這個和思科有點不一樣,思科必須在特權模式下,其他模式下不行。這個沒什麼好說的啊,怎麼認證我是不是專業呢?華為對應思科的那幾條命令說說吧 show 對應 display 其他的不說了,華為接觸得比較少,都忘得差...

交換機配置

router conf t router config hostname r1 r1 config int fastethernet 0 0 r1 config if ip address 10.1.1.1 255.255.255.0 r1 config if no shutdown r1 conf...