站長對Cisco的產品不太熟,所以就報名了ccna的課程學習一下
所以想說把每次上課的東西記錄一下以免忘記
Cisco 上課筆記(20071128)
cisco router權限分(Privilege level) 0 – 15
進入 Router時 會在使用者模式(user mode),權限為 1 (進入時如下)
Router>
進入特權模式(權限15) 下指令 enable (en)
Router#
進入全域設定模式(Global configruation Mode) 下指令 configure terminal
Router(config)#
在Global configruation Mode可設定許多東西,如router 名稱 ,router開機密碼等…
Router(config)#hostname mis —-> 設定router 名稱為mis, 指令執後,提示會變為 mis(config)#
Router(config)# enable secret cisco —->設定密碼為cisco
Cisco LAN-Port命名
10M —-> Ethernet
10/100M —-> FastEthernet
10/100/1000M —-> GigabitEthernet
Cisco 2811 簡意圖
模擬器節錄2811-Router圖
上圖做右邊有2各LAN-Port
最右邊為 FastEthernet 0/0
右邊第2個 FastEthernet 0/1
設定2個LAN 的IP位址方式
設定方式 1 :
先進入Global configruation Mode(本文上方有說明如何進入)
設定 FastEthernet 0/0 為 192.168.1.1/24
Router(config)# interface FastEthernet 0/0
Router(config-if)# ip address 192.168.1.1 255.255.255.0
設定 FastEthernet 0/1 為 10.10.1.1/24
Router(config)# interface FastEthernet 0/1
Router(config-if)# ip address 192.168.1.1 255.255.255.0
設定方式 2 : 可用簡寫
設定 FastEthernet 0/0 為 192.168.1.1/24
Router(config)#int fa0/0
Router(config-if)# ip address 192.168.1.1 255.255.255.0
設定 FastEthernet 0/1 為 10.10.1.1/24
Router(config)# int fa 0/1
Router(config-if)# ip address 192.168.1.1 255.255.255.0
查詢FastEthernet 0/0 0/1 IP相關資訊
回到特權模式
Router# show interface FastEthernet 0/0
Router# show interface FastEthernet 0/1
本篇瀏覽人數: 3315