施勢帆老師的教學網站

 找回密碼
 立即註冊
搜索
熱搜: 活動 交友 discuz
查看: 3421|回復: 55

CCNA 作業二 靜態路由(II)

[複製鏈接]

609

主題

619

帖子

2897

積分

管理員

Rank: 9Rank: 9Rank: 9

積分
2897
發表於 2023-5-15 11:18:54 | 顯示全部樓層 |閱讀模式
實驗實作錄影 : https://drive.google.com/file/d/ ... Ws/view?usp=sharing

https://mouse.ee.aeust.edu.tw/Books/Network2/CCNP8/Lab%2006.ppt

作業
(LAN 部分使用 211.11.xxx/24,
WAN 部分使用 171.41.xxx/24,
xxx代表學號末3碼,
學號末3碼超過250,使用末2碼

xxx  ==> 169


example :

(For Router 1 & f0/0=>192.168.1/24, s1/0=>172.16.1/24, s1/1=>172.16.4/24, s1/2=>172.16.5/24)

enable
conf t
int s1/0
ip address 172.16.1.254 255.255.255.0
int s1/1
ip address 172.16.4.253 255.255.255.0
int s1/2
ip address 172.16.5.254 255.255.255.0
int f0/0
ip address 192.168.1.254 255.255.255.0
Ctrl-Z
show ip int b


(For Router 2 & f0/0=>192.168.2/24, f0/1=>172.16.2/24, s1/1=>172.16.1/24,)

enable
conf t
int f0/1
ip address 172.16.2.254 255.255.255.0
int s1/1
ip address 172.16.1.253 255.255.255.0
int f0/0
ip address 192.168.2.254 255.255.255.0
Ctrl-Z
show ip int b


(For Router 3 & f0/0=>192.168.3/24, f0/1=>172.16.2/24, s1/0=>172.16.3/24, s1/2=>172.16.5/24)

enable
conf t
int s1/0
ip address 172.16.3.254 255.255.255.0
int f0/1
ip address 172.16.2.253 255.255.255.0
int s1/2
ip address 172.16.5.253 255.255.255.0
int f0/0
ip address 192.168.3.254 255.255.255.0
Ctrl-Z
show ip int b


(For Router 4 & f0/0=>192.168.4/24, s1/0=>172.16.4/24, s1/1=>172.16.3/24)

enable
conf t
int s1/0
ip address 172.16.4.254 255.255.255.0
int s1/1
ip address 172.16.3.253 255.255.255.0
int f0/0
ip address 192.168.4.254 255.255.255.0
Ctrl-Z
show ip int b


(For PC) (PC1,PC10)(PC2,PC6)
ipconfig 192.168.xxx.x 255.255.255.0 192.168.xxx.254

]
ipconfig /ip 192.168.xxx.x 255.255.255.0
ipconfig /dg 192.168.xxx.254


不用打
Routing Table

(For Router 1)
Dest.                        Interface          Gateway
192.168.1.0                                  Connected
192.168.2.0                s0/0          172.16.1.253
192.168.3.0                s0/2          172.16.5.253
192.168.4.0                s0/1          172.16.4.254
172.16.1.0                                   Connected
172.16.2.0                  s0/0          172.16.1.253
172.16.3.0                  s0/1          172.16.4.254
172.16.4.0                                    Connected
172.16.5.0                                    Connected


(For Router 2)
Dest.                        Interface        Gateway
192.168.1.0               s0/1         172.16.1.254               
192.168.2.0                                Connected
192.168.3.0               f0/1          172.16.2.253        
192.168.4.0               f0/1          172.16.2.253
172.16.1.0                                 Connected               
172.16.2.0                                 Connected               
172.16.3.0                 f0/1          172.16.2.253        
172.16.4.0                 s0/1         172.16.1.254               
172.16.5.0                 s0/1         172.16.1.254


(For Router 3)
Dest.                        Interface        Gateway
192.168.1.0               s0/2          172.16.5.254        
192.168.2.0               f0/1           172.16.2.254                                
192.168.3.0                                Connected               
192.168.4.0               s0/0          172.16.3.253                        
172.16.1.0                 f0/1           172.16.2.254                                       
172.16.2.0                                  Connected                                       
172.16.3.0                                  Connected               
172.16.4.0                 s0/0          172.16.3.253                        
172.16.5.0                                  Connected


(For Router 4)
Dest.                        Interface        Gateway
192.168.1.0               s0/0          172.16.4.253                        
192.168.2.0               s0/0          172.16.4.253                                       
192.168.3.0               s0/1          172.16.3.254                                       
192.168.4.0                                Connected                                       
172.16.1.0                 s0/0          172.16.4.253                                       
172.16.2.0                 s0/1          172.16.3.254                                       
172.16.3.0                                  Connected                                       
172.16.4.0                                  Connected                                
172.16.5.0                s0/0           172.16.3.254
               

ip route xxx.xxx.xxx.0  255.255.255.0 xxx.xxx.xxx.xxx

(For Router 1 & f0/0=>192.168.1/24, s1/0=>172.16.1/24, s1/1=>172.16.4/24, s1/2=>172.16.5/24)

enable
conf t
ip route 192.168.2.0 255.255.255.0 172.16.1.253
ip route 192.168.3.0 255.255.255.0 172.16.5.253
ip route 192.168.4.0 255.255.255.0 172.16.4.254
ip route 172.16.2.0 255.255.255.0 172.16.1.253
ip route 172.16.3.0 255.255.255.0 172.16.4.254
exit
sh ip route
sh ip route static
copy run start

(For Router 2 & f0/0=>192.168.2/24, f0/1=>172.16.2/24, s1/1=>172.16.1/24,)

enable
conf t
ip route 192.168.1.0 255.255.255.0 172.16.1.254               
ip route 192.168.3.0 255.255.255.0 172.16.2.253        
ip route 192.168.4.0 255.255.255.0 172.16.2.253
ip route 172.16.3.0 255.255.255.0 172.16.2.253        
ip route 172.16.4.0 255.255.255.0 172.16.1.254               
ip route 172.16.5.0 255.255.255.0 172.16.1.254
exit
sh ip route
sh ip route static
copy run start

(For Router 3 & f0/0=>192.168.3/24, f0/1=>172.16.2/24, s1/0=>172.16.3/24, s1/2=>172.16.5/24)

enable
conf t
ip route 192.168.1.0 255.255.255.0 172.16.5.254        
ip route 192.168.2.0 255.255.255.0 172.16.2.254  
ip route 192.168.4.0 255.255.255.0 172.16.3.253                        
ip route 172.16.1.0 255.255.255.0 172.16.2.254
ip route 172.16.4.0 255.255.255.0 172.16.3.253   
exit
sh ip route
sh ip route static
copy run start


(For Router 4 & f0/0=>192.168.4/24, s1/0=>172.16.4/24, s1/1=>172.16.3/24)

enable
conf t
ip route 192.168.1.0 255.255.255.0 172.16.4.253                        
ip route 192.168.2.0 255.255.255.0 172.16.4.253                                       
ip route 192.168.3.0 255.255.255.0 172.16.3.254                       
ip route 172.16.1.0 255.255.255.0 172.16.4.253                                       
ip route 172.16.2.0 255.255.255.0 172.16.3.254            
ip route 172.16.5.0 255.255.255.0 172.16.3.254   
exit
sh ip route
sh ip route static
copy run start


(For PC1)
ipconfig /ip 192.168.1.1 255.255.255.0
ipconfig /dg 192.168.1.254

(For PC10)
ipconfig /ip 192.168.4.1 255.255.255.0
ipconfig /dg 192.168.4.254

(In router 1)(copy config to PC2)
copy run start
copy start tftp                                                        

作業
Router 1 路由表



PC2 tracert PC1 & PC10
dir



PC10 tracert PC1 & PC6







本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

609

主題

619

帖子

2897

積分

管理員

Rank: 9Rank: 9Rank: 9

積分
2897
 樓主| 發表於 2023-5-29 15:10:44 | 顯示全部樓層







PC1



本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

11

帖子

54

積分

註冊會員

Rank: 2

積分
54
發表於 2023-5-29 15:19:56 | 顯示全部樓層





本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

14

帖子

60

積分

註冊會員

Rank: 2

積分
60
發表於 2023-5-29 15:27:23 | 顯示全部樓層

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

11

帖子

50

積分

註冊會員

Rank: 2

積分
50
發表於 2023-5-29 15:28:56 | 顯示全部樓層

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

13

帖子

58

積分

註冊會員

Rank: 2

積分
58
發表於 2023-5-29 15:29:01 | 顯示全部樓層
110103329

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

20

帖子

78

積分

註冊會員

Rank: 2

積分
78
發表於 2023-5-29 15:29:09 | 顯示全部樓層
本帖最後由 1061A110103325 於 2023-5-29 16:00 編輯

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

11

帖子

46

積分

新手上路

Rank: 1

積分
46
發表於 2023-5-29 15:29:28 | 顯示全部樓層

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

12

帖子

54

積分

註冊會員

Rank: 2

積分
54
發表於 2023-5-29 15:29:31 | 顯示全部樓層





本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

0

主題

20

帖子

78

積分

註冊會員

Rank: 2

積分
78
發表於 2023-5-29 15:29:55 | 顯示全部樓層
本帖最後由 1061A110103325 於 2023-5-29 16:00 編輯


本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有帳號?立即註冊

x
回復

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 立即註冊

本版積分規則

Archiver|手機版|小黑屋|施勢帆老師的教學網站

GMT+8, 2024-11-22 10:22 , Processed in 0.060838 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回復 返回頂部 返回列表