動態路由配置
1.需要的環境PacketTracer6(思科)
2.對路由器配置動態路由實現不同網段之間的通訊,網路拓撲結構如下:
3.按要求搭建上面的網路拓撲結構
使用滑鼠拖動將所需要的結構放入到空白處
4.配置好各臺pc機的ip地址以及閘道器地址(ip地址以及各閘道器地址註明在上面)
ip地址:
閘道器:
其他PC機的配置一樣
5.對路由器連線的各個埠進行配置,命令如下:
左邊路由器:
enable 15
configure terminal
interface fastethernet 0/0(檢視埠號使用滑鼠移入有連線的顏色的節點)
ip address 222.1.3.2 255.255.255.0
no shutdown
exit
interface serial 3/0
ip address 222.1.5.2 255.255.255.0
no shutdown
exit
interface serial 2/0
ip address 222.1.4.2 255.255.255.0
no shutdown
exit
右邊路由器:
enable 15
configure terminal
interface fastethernet 0/0
ip address 222.1.2.5 255.255.255.0
no shutdown
exit
interface serial 3/0
ip address 222.1.6.2 255.255.255.0
no shutdown
exit
interface serial 2/0
ip address 222.1.4.1 255.255.255.0
no shutdown
exit
上邊的路由器:
enable 15
configure terminal
interface fastethernet 0/0
ip address 222.1.1.4 255.255.255.0
no shutdown
exit
interface serial 3/0
ip address 222.1.6.1 255.255.255.0
no shutdown
exit
interface serial 2/0
ip address 222.1.5.1 255.255.255.0
no shutdown
exit
6.對各個路由器配置動態路由,命令如下:
左邊路由器:
enable 15
configure terminal
router rip
version 2
network 222.1.3.0
network 222.1.4.0
network 222.1.5.0
右邊路由器:
enable 15
configure terminal
router rip
version 2
network 222.1.2.0
network 222.1.6.0
network 222.1.4.0
上邊路由器:
enable 15
configure terminal
router rip
version 2
network 222.1.1.0
network 222.1.5.0
network 222.1.6.0
7.檢視各個路由器的路由表
為了方便檢視,插入上面的網路拓撲結構圖:
使用show ip route檢視
對於左邊的路由器,如果配置正確會顯示:
對於右邊的路由器,如果配置正確會顯示:
對於上邊的路由器,如果配置正確會顯示:
8.進入PC機的Command Prompt 終端ping各個主機檢視聯通情況:
進入ip地址為222.1.1.1由近及遠ping自己與各個主機
(1)ping 軟體迴環地址:
(2)ping自己的網絡卡:
(3)ping其他PC機
9.分析第一次ping的時候為什麼會丟包或者延時
ping第一個是ARP廣播包,建立MAC地址和IP地址對應表
因為一開始不知道對方的MAC地址,所以包可能丟。