2009年10月5日 星期一

Cisco 基本指令

Config 模式
router(config)# namehost abc 更改 hostname 為 abc
router(config)# no ip domain-lookup        當所下的指令並非為 Router 指令時,不會導致 10 多秒的 Broadcast,如範例 1
router(config)# ip name-server 168.95.1.1  設定 DNS IP,若不指定時,則下 no ip name-server 168.95.1.1
router(config)# enable password gavin 設定 Enable 模式的 Password 為 gavin
範例1
Route# ls
Translating "ls"...domain server (255.255.255.255)
Translating "ls"...domain server (255.255.255.255)
% Unknown command or computer name, or unable to find computer address
Ethernet 模式
1. router# conf t  進入 config 模式
2. router(config)# int e0        進入 Ethernet0 模式
3. router(config-if)# ip address 100.100.100.100 255.255.255.0 設定閘道器 Ethernet0 IP及Submask
4. router(config-if)# no ip directed-broadcast
5. router(config-if)# no shutdown        原預設值為 shutdown 不啟動狀態,若要啟動 Ethernet0,則須設 no shutdown
補充:
設定第二組 IP 在同一個 Ethernet0
router(config-if)# ip address 200.200.200.200 255.255.255.0 secondary
移除第二組 IP 在同一個 Ethernet0
router(config-if)# no ip address 200.200.200.200 255.255.255.0 secondary
6. router(config-if)# [ ctrl + z ]   離開 Ethernet 0 模式,回到 Enable 模式
7. router# show run        顯示目前設定
Serial 模式
1. router# config t
2. router(config)# int s0 進入 Serial0 模式
3. router(config-if)# ip add 111.111.111.111 255.255.255.252 設定 Serial0 IP及Submask
4. router(config-if)# no ip directed-broadcast
5. router(config-if)# no shutdown        原預設值為 shutdown 不啟動狀態,若要啟動 Serial0,則須設 no shutdown
6. router(config-if)# encapsulation ppp        設定 ppp(點對點全雙工) 模式,若為 HDLC 則為半雙工,且要與對方 Router 的協定一樣
7. router(config-if)# description HQ(R) <--> Branch Office(R) 設定 Serial0 描述名稱
8. router(config-if)# [ ctrl+ z ]  離開 Serial 0 模式,回到 Enable 模式
9. router#
IP Classless 模式
1. router# conf t   進入 config 模式
2. router(config)# ip classless        進入 ip classless 模式
3. router(config)# ip route 0.0.0.0 0.0.0.0 s0        將所有未知之 IP 送往 S0
Line 模式
設定 telnet 密碼

1. router# conf t 進入 config 模式
2. router(config)# line vty 0 4 進入 Telnet vty 0 到 vty 4 的密碼設定模式
3. router(config-line)# password gavin 將 Terlnet 密碼設為 gavin
取消 telnet 密碼
1. router(config-line)# no password        取消密碼
Console 模式
設定 Console 密碼
1. router# conf t   進入 config 模式
2. router(config)# line con 0  進入 Console 密碼設定模式
3. router(config-line)# password gavin 將 Console 密碼設為 gavin
取消 Console 密碼
1. router(config-line)# no password        取消密碼
router# wr 寫入 NVram
router# copy run start        寫入 NVram(Copy running-config startup-config)
router# sh int e0        查看 Ethernet 第0 Port (E0) 狀態及流量
router# sh int s0        查看 Serial 第0 Port (S0) 狀態及流量
router# sh ip int brief        查看整體 interface 狀態
router# sh run        查看整體 Router 配置狀態
設定 SNMP 密碼
snmp-server community gavin ro 設定 SNMP 密碼為 gavin,並權限為 read only

沒有留言:

張貼留言

推到 Twitter!
推到 Plurk!
推到 Facebook!