Extreme 基本設定
1.查配置
#show accounts 查看帳號
#show ipconfig 檢視IP Address
#show iproute 檢視路由
#show config 查看運行中組態
#show vlan
#show switch
#show session
#show management 查看管理信息,以及snmp信息
#show log
#show banner
#show ports configuration
#show version 顯示firmware資訊
#show ospf
#show access-list {<name> | port <portlist>}
2.Vlan配置
1建立VLAN
#create vlan <Vlan-Name>
#configure vlan <Vlan-Name> tag <Vlan-ID>
2刪除VLAN
#delete vlan <vlan-Name>
3將Port加到VLAN中
#configure vlan <Vlan-Name> add ports <Port>
#configure vlan "default" add port 9
4設定IP Address
#configure vlan <Vlan-Name> ipaddress <IP>/<subnet_mask>
#configure vlan "Default" ipaddress 192.168.20.200 255.255.255.0
#configure vlan "Default" ipaddress 192.168.20.200/24
5刪除IP Address
#unconfigure vlan <Vlan-Name> ipaddress
#unconfigure vlan "Default" ipaddress
6開啟路遊
Enable ipforwarding
3.編輯檔案
#vi <File-Name> 編輯檔案
#save 儲存設定
4.備份檔案
# tftp put 192.168.*.* vr "VR-Default" primary.cfg date-x440.cfg tftp導出資料
#upload config 192.0.2.156 config.xsf <vr-name> 將config.xsf上傳到192.0.2.156
5.帳密設定
#create account [admin | user] <Account> 建立帳號,能支援最多到 16 個管理帳號)
#configure account <Account> 變更密碼
#delete account <Account> 刪除帳號
6.路由
設定一般路由
#configure iproute add <Destination-network> <Destination-mask> <Gateway-IP>
#configure iproute add 192.168.10.0 255.255.255.0 192.168.20.1
#configure iproute add 192.168.10.0/24 192.168.20.1
設定default路由
#configure iproute add default <Gateway-IP>
#configure iproute add default 192.168.20.1
刪除路由
#configure iproute delete <Destination-network> <Destination-mask> <Gateway-IP>
#configure iproute delete 192.168.10.0 255.255.255.0 192.168.20.1
#configure iproute delete 192.168.10.0/24 192.168.20.1
7.port
#enable ports <Port> 啟用Port
#disable ports <Port> 停用port
8.校時
#configure timezone name <tz_name> <GMT_offset>
#configure timezone name Taipei 480 台北時區是+8小時,換算為480分
與NTP伺服器校時,可用sntp (Simple Network Time Protocol),於固定週期內向NTP Server校時。
#configure sntp-client update-interval 1200
#configure sntp-client [primary | secondary] <NTP_Server_IP>
若為封閉環境,且無NTP Server,可下達以下指令直接設定時間。
9.其他
1變更Switch名稱
#configure snmp sysName <Host-Name>
2查看執行過的指令
#history
3重開機
4清空設定值
#unconfigure switch all
5 啟用web管理
#enable web http | https
留言列表