1.静态路由配置是一种路由方式,路由项是手动配置的,而不是动态确定的。
2.与动态路由不同,静态路由是固定的,即使网络状况发生变化或重新配置,静态路由也不会改变。
3.一般来说,静态路由是由网络管理员逐项添加到路由表中的。
4.使用静态路由的优点是网络的高安全性和保密性。
5.动态路由要求路由器频繁交换自己的路由表,对路由表的分析可以揭示网络拓扑和网络地址等信息。
6.因此,出于安全考虑,网络也可以采用静态路由。
7.它不占用网络带宽,因为静态路由不会产生更新流量。
8.扩展数据静态路由通常不适合大型复杂的网络环境:一方面,网络管理员很难全面了解整个网络的拓扑结构;另一方面,当网络的拓扑结构和链路状态发生变化时,路由器中的静态路由信息需要进行大范围的调整,这是非常困难和复杂的。
9.当网络发生变化或网络出现故障时,无法重新选择路由,可能会导致路由失败。
10.路由要查路由表决定如何转发数据包,采用静态路由逐个配置,繁琐且容易出错。
11.如果路由器有一个知道如何到达所有目的地的邻居,就可以交给它路由表匹配的任务,省了很多事。
12.例如,网关将知道所有的路由。如果路由器连接到网关,它可以配置默认路由并将所有数据包转发到网关。
1、R1上配置接口IP:
>R1(config)#interface fastEthernet 0/0 R1(config-if)#ip address 192.168.1.254 255.255.255.0
>R1(config-if)#no shutdown
>R1(config-if)#exit
>R1(config)#interface fastEthernet 0/1
>R1(config-if)#ip address 192.168.2.1 255.255.255.0
>R1(config-if)#no shutdown
2、R2上配置接口IP
>R2(config)#interface fastEthernet 0/1 R2(config-if)#ip address192.168.2.2 255.255.255.0
>R2(config-if)#no shutdown
> R2config-if)#exit
> R2(config)#interface fastEthernet 0/0 R2(config-if)#ip addres 192.168.3.254 255.255.255.0
> R2(config-if)#no shutdown
3、R1上添加静态路由
>R1(config)#ip route 192.168.3.0 255.255.255.0 192.168.2.2
4、R1上查看路由表
>R1#show ip route Codes:
> C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
> D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
> N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
> E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
> i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
> * - candidate default, U - per-user static route, o - ODR
> P - periodic downloaded static route Gateway of last resort is not set
> C 192.168.1.0/24 is directly connected, FastEthernet0/0
> C 192.168.2.0/24 is directly connected, FastEthernet0/1
> S 192.168.3.0/24 [1/0] via 192.168.2.2 //S表示静态路由
5、R2上添加静态路由
>R2(config)#ip route 192.168.1.0 255.255.255.0 192.168.2.1
6、R2上查看路由条目
>R2#show ip route Codes: C - connected, S - static, I - IGRP, R - RIP,
>M - mobile, B - BGP
> D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
> N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
> E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
> i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
> * - candidate default, U - per-user static route, o - ODR
> P - periodic downloaded static route Gateway of last resort is not set
S 192.168.1.0/24 [1/0] via 192.168.2.1 //S表示静态路由
C 192.168.2.0/24 is directly connected, FastEthernet0/1
C 192.168.3.0/24 is directly connected, FastEthernet0/0
扩展资料:
拓扑网络验证:
测试网络连通性,PC1 ping 192.168.3.1
>PC>ping 192.168.3.1
Pinging 192.168.3.1 with 32 bytes of data:
Reply from 192.168.3.1: bytes=32 time=1ms TTL=126
Reply from 192.168.3.1:bytes=32 time=11ms TTL=126
Reply from 192.168.3.1: bytes=32 time=10msTTL=126
Reply from 192.168.3.1: bytes=32 time=11ms TTL=126
>Ping statistics for 192.168.3.1:
> Packets: Sent = 4, Received = 4, Lost = 0 (0% loss)
> Approximate round trip times in milli-seconds:
> Minimum = 1ms, Maximum = 11ms, Average = 8ms
参考资料来源:百度百科--静态路由
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)