實驗1 交換機的啟動及基本配置:
1924交換機上配置:
sw1924_b#delete nvram----------全部清除交換機的所有配置
sw1924_b#reload----------------重新啟動交換機(初始提示符為》 )
sw1924_b#hostname sw1924---------------------------設定交換機的主機名
sw1924_b#enable secret cisco-----------------------設定加密密碼
sw1924_b#enable password level 1 cisco1-----------設定等級密碼(1最低)
sw1924_b#enable password level 15 cisco15----------設定等級密碼(15最高)
sw1924_b#ip address 192.168.14.1 255.255.255.0-----設定交換機的管理ip位址
sw1924_b#ip default-gateway 192.168.198.2----------設定交換機的閘道器位址
sw1924_b#ip domain-name pctc.com.cn----------------設定交換機所連域的網域名稱
sw1924_b#ip name-server 218.87.18.230--------------設定交換機所連域的網域名稱伺服器ip
sw1924_b#show ip-------------------------------------------檢視上述設定環境
sw1924_b#show version--------------------------------------檢視交換機的版本等資訊
sw1924_b#show running-config-------------------------------檢視交換機的當前執行配置等全部資訊
sw1924_b#show int e0/1-------------------------------------檢視交換機的第1個埠資訊
2912交換機上配置:
sw2912_a#erase nvram-----------全部清除交換機的所有配置
sw2912_a#reload----------------重新啟動交換機(初始提示符為switch> )
sw2912_a#int vlan 1----------------------------------進入vlan 1特殊介面配置模式
sw2912_a#ip address 192.168.15.1 255.255.255.0----設定交換機的管理ip位址
sw2912_a#ip default-gateway 192.168.198.2----------設定交換機的閘道器位址
sw2912_a#ip domain-name pctc.com.cn----------------設定交換機所連域的網域名稱
sw2912_a#ip name-server 218.87.18.230--------------設定交換機所連域的網域名稱伺服器ip
sw2912_a#show int vlan 1-----------------------------------檢視交換機的vlan 1特殊介面配置資訊
sw2912_a#show run------------------------------------------檢視交換機的當前執行配置等全部資訊
實驗2 交換機的埠和mac位址表的設定:
1924交換機配置埠屬性:
sw1924_b#conf t
sw1924_b#inte***ce ethernet 0/1-------------------------進入第1個埠
sw1924_b#description sw1924_b-e0/1-pc1---------------給埠寫入注釋資訊
sw1924_b#duplex auto/full/full-flow-control/half-----設定埠的工作模式
sw1924_b#port secure---------------------------------啟用埠安全性
sw1924_b#port secure max-mac-count 1---------設定該埠允許對應的mac位址數(預設132個)
sw1924_b#sh mac-address-table security------------------檢視埠安全性
2912交換機配置埠屬性:
sw1912_a#conf t-----------------------------------------進入全域性配置模式
sw1912_a#inte***ce fastethernet 0/1-------------進入第1個埠
sw1912_a#description sw2912_a-f0/1-pc1-------給埠寫入注釋資訊
sw1912_a#duplex auto/full/half---------------設定埠的工作模式
sw1912_a#port security-----------------------啟用埠安全性
sw1912_a#port security max-mac-count 1-------設定該埠允許對應的mac位址數(預設132個)
sw1912_a#end---------------------------------返回特權模式
sw1912_a#sh port security--------------------檢視埠安全性
配置和檢視mac位址表:
1924交換機配置mac位址表:
sw1924_b#mac-address-table aging-time 600-----------------設定動態位址超時時間
sw1924_b#mac-address-table permanent 0000.0cdd.5a4d e0/3---定義永久mac位址(繫結mac位址)
sw1924_b#mac-address-table restricted static 0000.0cdd.aaed e0/6 e0/7--定義受限mac位址
sw1924_b#address-violation disable/ignore/suspend----------------------定義位址安全違規
sw1924_b#show mac-address-table------------------檢視上述配置
sw1924_b#clear mac-addr restric static-----------清除受限mac位址表項
2912交換機配置mac位址表:
sw2912_a#mac-address-table aging-time 700---------------設定動態位址超時時間
sw2912_a#mac-address-table static 0000.0cdd.5a4d e0/3---定義永久mac位址(繫結mac位址)
sw2912_a#mac-address-table secure 00d0.f80d.3333 f0/3 vlan 1---定義受限mac位址
sw2912_a#port security action shutdown/trap-----------------定義位址安全違規
sw2912_a#show port security--------------------------------------------檢視上述配置
實驗3 配置vtp、vlan、vlan trunk和stp:
配置vtp:
sw1924_a#conf t
sw1924_a#vtp server-------------------定義vtp的工作模式
sw1924_a#vtp domain cisco-------------定義vtp的網域名稱
sw1924_a#trunk on---------------------啟用幹道
sw1924_b#vtp domain cisco-------------加入vtp域
sw1924_b#vtp client-------------------定義vtp的工作模式
sw1924_b#trunk on---------------------啟用幹道
sw1924_a#show trunk b
sw1924_a#show trunk b allowed-vlans-----------檢視幹道資訊
配置vlan:
sw1924_a#vlan 10 dept1
sw1924_a#vlan 20 dept2
sw1924_a#vlan 30 dept3
sw1924_a#vlan 40 dept4----------------定義所需vlan
sw1924_a#show vlan----------------------------檢視vlan資訊
sw1924_b#show vlan
sw1924_b#show vtp-----------------------------檢視vtp的資訊
sw1924_b#int e0/1
sw1924_b#vlan-membership static 10
sw1924_b#int e0/2
sw1924_b#vlan-membership static 20
sw1924_b#int e0/3
sw1924_b#vlan-membership static 30
sw1924_b#int e0/4
sw1924_b#vlan-membership static 40----把介面劃入各自vlan
配置spanning tree:
sw1924_b#spantree 1------------啟用生成樹協議
sw1924_b#sh spantree 1-----------------檢視生成樹資訊
sw1924_b#no spantree 1---------關閉生成樹協議
sw1924_b#sh spantree 1---------檢視生成樹資訊
交換機基本配置
交換機思科型別有35和65型別 35為小型系統,65為大型系統 進入全域性配置模式 改變系統時間 switch 3548 enable password switch 3548 clock set 23 00 00 23 february 2007 switch 3548 config t swti...
交換機的基本配置
1 配置enable口令和主機名。2 配置交換機ip位址 預設閘道器 網域名稱和網域名稱伺服器。3 配置交換機的埠屬性。speed duplex description 4 配置和檢視mac位址表。設定超時時間 加入永久位址 加入限制靜態位址 清除位址 一 配置和管理vlan 劃分vlan 配置vt...
交換機vlan基本配置
1.清除交換機上的所有現有配置,將所有埠置於關閉狀態。如果需要,請參考實驗 2.5.1 的附錄 1,以了解清除交換機配置的方法。要禁用交換機上未使用的埠,較好的辦法是將這些埠設定為 shutdown。禁用交換機上的所有埠。switch config term switch config inte c...