> 進入管理模式
>enable
顯示設定
#show running-config
進入設定模式
#configure terminal
設定hostname
(config)#hostname 設備名稱
設定帳號密碼——-
(config)#enable password en密碼
(config)#line console 0
設定console密碼
(config-line)#password console密碼
讓密碼生效
(config-line)#login
可讓 5個使用者telnet同時登入(0~4)
(config-line)#line vty 0 4
設定telnet密碼
(config-line)#password telnet密碼
讓密碼生效
(config-line)#login
密碼加密;sh run看到的會是加密後
(config)#service password-encryption
設定管理IP——
(config)#int vlan 1
(config-if)#ip address 192.168.1.1 255.255.255.0
(config-if)#ip default-gateway 192.168.1.254
assign port 到vlan
指定5~10port(多個需使用range指令)
(config)#int range gi 1/0/5-10
(config-if)#switchport mode access (trunk可給多個vlan, access為預設,只能給一個vlan)
將5~10port assign 給 vlan 123
(config-if)#switchport access vlan 123
使用者不需等待即可馬上使用網路
參考資料:http://chenerich.blogspot.com/2010/07/spanning-tree-portfast-global-or.html
防止 mac spoofing
(config)#mac address-table notification mac-move
鎖mac
(config)#mac address-table static 0000.0000.0000.0000 vlan 123 drop
設定arp
(config)#arp 192.168.1.1 0000.0000.0000.0000 arpa
存檔(未存檔重開機失效)
#write memory