2007年6月16日 星期六

cisco IOS 基本觀念&指令

---++CLI 的四種操作模式
1.User EXEC Mode (使用者執行模式)- 只能觀看Router 的基本狀態與資訊, 無法對Router 的設定做任何修改。

2.Privileged EXEC Mode (特權執行模式)- 可以使用所有的指令,進入特權執行模式通常需要輸入密碼。

3.Global Configuration Mode (整體組態模式)-對Router做整體的設定。

4.Interface Configuration Mode (介面組態模式)-可針對某一張介面卡做設定。

-------
switch1> → user mode
switch1> enable → 進到 privileged mode
switch1# configure terminal → 進入 global
switch1(config)# hostname lab-a  → 設定switch的hostname
lab-a(config)# enable secret → 設定進入privileged mode的密碼(加密)
lab-a(config)# enable password cisco  → 設定進入privileged mode的密碼(無加密),同時設定有加密和無加密時,會以有加密的為主

-------退出
switch1# exit

-------從各種配置模式退到特權模式
switch1# end
Ctrl + z
Ctrl + c

-------強制停止執行
Ctrl+Shift+6 , x

-------cisco 基本設定

1.在switch上設定HN:
switch(config)# hostname hostname

2.在switch上啟用和瀏覽CDP訊息:
switch(config-if)# cdp enable
switch(config-if)# no cdp enable

3.幫interface下註解:
switch(config-if)# description [描述]

4.設定interface的速度:
switch(config-if)# speed {101001000auto}

5 設定全雙工/半雙工/auto:
switch(config)# duplex module/number {fullhalf}

6 Show(查看的指令)
show version :System hardware and software status,開機時間,有何種類型的port等等
show boot :看開機路徑、設定
show protocols :Active network routing protocols
show ip route :IP routing table
# show interfaces status module 1
# show ip interfaces brief
# show interfaces status
# sh spanning-tree root
# sh cdp neighbors
# sh cdp neighbors detail

# sh run include tac
!-----秀出running config裡 , 包含tac字元的每一行指令

7.1 如何disable interface:
switch(config-if)# shutdown
!關閉
ex:disable vlan1
switch(config)# interface vlan 1
switch(config-if)# shutdown

7.2 如何enable interface:
switch(config-if)# no shutdown
!開啟

8 switch(config)# no ip domain-lookup :
!--disable IP Domain Name System hostname translation 關閉動態網域名稱解析

9 !--將設定存檔
switch# write memory
switch# copy running-config startup-config


10
switch(config-line)# exec-timeout 0 0
!---禁止因為一段時間沒有輸入而跳出

1 則留言:

jumping 提到...

太好了~這個部落格終於朝向全方位來發展了!願諸君共勉之。