1.使用者模式與特權模式
使用者模式:可以使用一些基本的查詢命令
進入特權模式命令:switch> enable
退出特權模式:switch#exit
啟用命令查詢:?
注意:可以用tab鍵補齊命令,自選引數為使用者自定義引數,可選引數為交換機設定的引數。
檢視交換機配置:switch# show running-config
儲存交換機配置: switch# copy running-config startup-config
switch# write
檢視埠資訊: switch# show inte***ce
檢視交換機cpu的狀態資訊: switch# show process
2.全域性配置模式
進入全域性配置模式: switch# configure terminal
主機名引數:switch(config# hostname 主機名
特權模式進入密碼:switch(config)# enable secret (引數)密碼
取消特權模式密碼:switch(config)# no enable secret
取消主機名設定: switch(config) #no hostname
退出配置模式: switch(config )#exit
需要特別注意的是在配置模式中無法使用show命令,如果要使用的話show前必須加do 和空格,例如:do show *
指定根交換機命令: switch(config# )spanning-tree vlan (引數) root primary
例如: switch(config )#spanning-tree vlan 1 root primary
注意:設定交換機是基於valn的
關閉生成樹協議命令:switch(config )#no spaning-tree vlan (vlan號)
例如:switch(config )#no spanning-tree vlan 1
3.介面配置模式
進入介面配置模式:switch(config )#intee***ce 埠名稱
啟用埠:switch(config )#no shutdown
進入同種型別多埠配置:switch(config )#intface range fastethernet1/1-5
進入不同型別多埠配置:switch(config )#inte***ce range fastethernet1/1-5,g0/1-2
4.二層埠的配置
埠速率:switch(config -if)#speed
雙工模式:switch(config -if)#duplex
禁用鏈路協商:switch(config -if)#no negotiation auto
啟用鏈路協商:switch(config -if)#negotiation auto
5.vlan的配置
新建valan:switch(config)#vlan (vlan 號)
刪除vlan:switch(config)#no (vlan 號)
將乙個介面加入vlan
switch(config-if)# switchport mode access
switch(config-if)#switchport access (valn 號)
switch(config-if)#no shutdown
switch(config-if)#exit
將乙個介面退出vlan:
switch(config-if)#inte***ce (valn 號)
switch(config-if)#no switchport access vlan (vlan 號)
修改乙個介面為埠為trunk模式
switch(config)# int (埠號)
switch(config)#sw mode trunk
vlan的驗證命令
switch# show vlan ------顯示vlan列表
switch#show int sw ------檢視具體介面的valn成員資格資訊
6.vtp的配置
vtpdomain name(vtp網域名稱)
switch#config t
switch#vtp domain 自選引數
vtp mode (vtp模式)
switch(config)#vtp mode 可選引數(server/client/transparent)
例如: switch(config)#vtp mode server
vtp pruning
switch(config)#vtp pruning
檢視vtp的配置命令:
switch#show vtp status ----顯示交換機執行的vtp模式、配置修訂號和交換機所屬的vtp域
switch#show vtp copunters ---顯示vtp訊息相關的統計資料
7.遠端登入交換機設定
配置管理vlan:
switch(conf)#inte***ce vlan 1
switch(config-if)#ip address x.x.x.x 255.255.255.0
switch(config-if)#no shutdown
在交換機上指定預設閘道器:
switch(config)#ip default-gateway x.x.x.x
將交換機連線pc機的埠加入vlan 1
switch(config)#inte***ce 埠號
switch(config-if)#switchport mode access
switch(config-if)# no shutdown
配置交換機的遠端登入
switch(config)# line vty 0 4
switch(config-line)#password 自選密碼
switch(config-line)#login
switch(config)#enable secret
第十二章 檔案
文字檔案 文字檔案是一種由若干字元構成的檔案,可以用文字編輯器進行閱讀或編輯。以txt py html等為字尾的檔案都是文字檔案。2.二進位制檔案 二進位制檔案一般是指不能用文字編輯器閱讀或編輯的檔案。以 mp4 png等為字尾的檔案都是二進位制檔案,如果想要開啟或修改這些檔案,必須通過特定軟體進行...
第十二章 dp
動態規劃策略 將原始問題拆分為多個子問題,將子問題結果記錄,方便復用子問題的解 遞迴 記憶化 遞推 是動態規劃的一體兩面,本質都是一樣的 遞推減少了呼叫次數,空間上還能優化,一般選擇遞推方式 遞迴 記憶化 int memo maxn 將o 2 n o n intfibonacci int n 遞推 ...
第十二章 異常
一 異常的概念 錯誤 編譯器 異常 執行期,程式沒有正常按照期望執行 異常產生時,在對應位置產生異常型別物件,程式 暫停 如果上下文有異常處理程式,對應處理 沒有則 異常向上傳播 報錯退出 異常向上傳播 如果異常在函式中產生,會傳播給函式的呼叫者 如果異常在模組的頂級位置,會傳播給引用該模組的模組 ...