在閱讀本文前,請先學會Packet Tracer的基本操作以及IP的基本知識,不然會有點看不懂。
本篇文章會學到:
- Router IP address 設定
- Switch IP address 設定
- PC IP address 設定
- 使用ping指令.
教學用檔案:
不想下載也可以自己看圖拉設備 R&S_ip_set.pkt 下載連結 (for 6.2 version)任務需求:
從拓譜圖(上圖)可以看到一台Router、兩台Switch及兩台PC,全部都位於同一個區網內,其網域為192.168.0.0/24,請依照左清單來設定各設備的IP位址,讓所有設備皆能互通,並使用ping驗證是否正確。
教學:
R1:
R1>en #進入特權模式
R1#conf t #進入全域設定 R1(config)#int gig0/0 #進入介面Gig0/0 R1(config-if)#ip address 192.168.0.254 255.255.255.0 #設定IP位址 R1(config-if)#no shutdown #開啟介面 R1(config-if)# %LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to up R1(config-if)#do write #寫入設定 Building configuration... [OK] |
SW1:
SW1>en #進入特權模式
SW1#conf t #進入全域設定 SW1(config)#int vlan 1 #進入子網路介面 vlan1 SW1(config-if)#ip add 192.168.0.253 255.255.255.0 #設定IP位址 SW1(config-if)#no shutdown #開啟介面 SW1(config-if)# %LINK-5-CHANGED: Interface Vlan1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up SW1(config-if)#exit #離開這一層設定 SW1(config)#ip default-gateway 192.168.0.254 #設定預設閘道 SW1(config)#do write #寫入設定 Building configuration... [OK] SW1(config-if)#do ping 192.168.0.254 #使用ping檢查連線是否有通 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.0.254, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms |
SW2:
SW2>en
SW2#conf t SW2(config)#int vlan 1 SW2(config-if)#ip add 192.168.0.252 255.255.255.0 SW2(config-if)#no sh SW2(config-if)# %LINK-5-CHANGED: Interface Vlan1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up SW2(config-if)#exit SW2(config)#ip default-gateway 192.168.0.254 SW2(config)#do write Building configuration... [OK] SW2(config)#do ping 192.168.0.254 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.0.254, timeout is 2 seconds: .!!!! Success rate is 80 percent (4/5), round-trip min/avg/max = 0/0/0 ms |
設定跟SW1大同小異,不過要注意IP不要設定錯了,設定完後一樣使用"ping"檢查,在此可看到第一次建立連線可能會出現"."不通的狀況,在試第二次就會全通了。
PC1:
電腦的部分使用圖形介面來設定,點選PC1 -> 點擊"Desktop" -> 點擊IP Configuration
依照IP填入
一樣使用"ping "來測試,可以看到如綠色框框那有四次回復,代表連線有通喔。
PC2:
在PC2也做一樣的設定及測試
電腦的部分使用圖形介面來設定,點選PC1 -> 點擊"Desktop" -> 點擊IP Configuration
依照IP填入
PC2:
在PC2也做一樣的設定及測試
觀察:
設定完了之後,可以使用"show run"指令來查看目前執行的設定喔!小提醒:它不會一次顯次完,請按"空白鍵"讓它顯示完。
R1#show run
Building configuration...
Current configuration : 699 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname R1 #主機名稱
!
!
ip cef
no ipv6 cef
!
! #這邊驚嘆號使用來分隔用的
!
!
license udi pid CISCO2911/K9 sn FTX15245U4C
!
!
spanning-tree mode pvst
!
!
interface GigabitEthernet0/0 #在這邊可以看到我們剛剛設定在Gig0/0的IP
ip address 192.168.0.254 255.255.255.0
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Vlan1
no ip address
shutdown
!
ip classless
!
ip flow-export version 9
!
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
!
!
end
R1#
|
測試:
因為目前所有設備皆在同一網段內,所以正常來講都能互通。請使用"ping"指令測試所有設備是否皆能互通,如果有,請找出錯誤並更正。
沒有留言:
張貼留言