︿
Top


前言

下列為 Cisco C2900 的一些基本設定:





模式切換

輸入 enable 進入 Privilege Mode,此時提示符號將由「>」切換成「#」,之後輸入 configure terminal 進入 Global Mode,當提示符號切換成「(config)# 」表示順利進入 Global Mode。
Switch> enable
Switch#
Switch# configure terminal
Switch(config)#




設定 Switch Name

Switch(config)# hostname Name  //Name 為自行定義的機器名稱



設定 Password

secret 及 password 的差別? 當您輸入 show running-config 後會看見 secret 是亂碼(因為有加密過)而 password 是明文。
Switch(config)# enable password 密碼   //設定 Privilege Mode 密碼
Switch(config)# enable secret 密碼    //設定密碼加密




設定 Telnet

輸入指令「line vty 0 4」進入後,設定 Telnet 密碼。
Switch(config)# line vty 0 4
Switch(config-line)# password 密碼




設定 Switch 管理的 IP

設定 Switch 的管理 IP Address,然後套用設定後檢查 Interface 設定值是否正確。
Switch(config)# interface vlna 1
Switch(config-if)# ip address 192.168.1.92 255.255.255.0
Switch(config-if)# no shutdown
Switch(config-if)# exit
Switch(config)# exit 
Switch# show interface vlan 1




設定 Default Route

設定 Default Route 設定後,檢查是否套用生效。
Switch(config)# ip default-gateway 192.168.1.254
Switch(config)# exit
Switch# show ip default-gateway




設定 Port

選擇要進行設定的 Port Number,然後設定 Port 速度及是否使用全雙工。
Switch(config)# interface fastEthernet 0/1
Switch(config-if)# speed speed
Switch(config-if)# duplex duplex




清除設定

執行清除全部設定後,必須將 Switch 重新開機。
Switch# write erase
Switch# reload




儲存設定

將目前的設定套用至 NVRAM (Switch 即使重開機後,相關設定仍然存在)。
Switch# copy run start
文章標籤: