实验目的:路由表的概念 、ip route 、静态路由的配置。
使1.1.1.1/24  2.2.2.2/24  3.3.3.3 /24  之间能互相通信。
语法:ip route 0.0.0.0 0.0.0.0 {网关地址 |  接口}
静态路由_第1张图片
R1:
enable
conf  t
no ip domain-lookup
line cons 0
logging synchronous
no exec-timeout
exit
int lo 1
ip add 1.1.1.1 255.255.255.0
no shut
int s1/0
clock rate 64000
ip add 192.168.12.1 255.255.255.0
no shut
exit
ip route 2.2.2.2 255.255.255.0 192.168.12.2
ip route 3.3.3.3 255.255.255.0 192.168.12.2         设置静态路由
 
 
R2
enable
conf  t
no ip domain-lookup
line cons 0
logging synchronous
no exec-timeout
exit
int lo 2
ip add 2.2.2.2 255.255.255.0
no shut
int s1/0
ip add 192.168.12.2 255.255.255.0
no shut
int s1/1
clock rate 64000
ip add 192.168.23.2 255.255.255.0
no shut
exit
ip route 1.1.1.1 255.255.255.0 192.168.12.1
ip route 3.3.3.3 255.255.255.0 192.168.23.3
 
 
 
R3
enable
conf  t
no ip domain-lookup
line cons 0
logging synchronous
no exec-timeout
exit
int lo 3
ip add 3.3.3.3 255.255.255.0
no shut
int s1/1
ip add 192.168.23.3 255.255.255.0
no shut
exit
ip route 2.2.2.2 255.255.255.0 192.168.23.2
ip route 1.1.1.1 255.255.255.0 192.168.23.2
 
此时网络通了。下面我们show ip route
R1

 

 S       2.2.2.0 [1/0] via 192.168.12.2         //  S  表示静态路由协议;  2.2.2.0是目的网段; [1/0]:1是管理距离,0是度量值。 via192.168.12.2 是到达目的网络的下一跳路由器ip地址。

 

 

 

 管理距离(AD)用来表示路由的可信度,管理距离值越小说明可靠程度越高。

度量值(metric)某个路由协议判别到目的网络的最佳路径方法。度量值越小路径越佳。