范文一:rip详解
RIP 详解
RIP 路由协议
RIP 协议是 V-D 算法在局域网上直接实现, RIP 将协议的参加者分为主动机和被动机两种,主动机主
动地向外广播路径刷新报文,被动机被动地接受路径刷新报文,一般情况下,网关作为主动机, PC 机作 为被动机。
RIP 通过广播 UDP 报文来交换路由信息,每 30秒发送一次路由更新, RIP 提供跳跃计算作为尺度来 衡量路由距离,跳跃计数和是一个包到达目标所必须经过的路由器的数目,如果到相同目标有二个不等速 或不同带宽路由器,但路跃计数相同,则 RIP 认为两个路由是等距离的, RIP 最多支持的跳数为 15,即 在源和目的网间所要经过的最多路由器的数目为 15,跳数 16表示不可达, UDP 端口采用 520,通常情 况下 RIPv1报文为广播报文,而 RIPv2报文为组播报文,组播地址为 224.0.0.9。
RIP 路由的配置:
RIP 路由的拓扑如下:
RIP 的普通配置:
RIP 的配置要求如下:
《 1》要求两台路由设备使用 RIP 实现网络互通
RIP 配置如下:
三交换机的配置:
switch(config)#router rip //创建 RIP 进程
switch(config-router)#network 192.168.1.0 //公布 RIP 直连路由
switch(config-router)#network 192.168.10.0
switch(config-router)#network 192.168.20.0
switch(config-router)#version 2 //定义 RIP 版本为 2
switch(config-router)#no auto-summary //关闭 RIP 路由自动汇总
switch(config-router)#exit
路由器的配置:
router(config)#router rip //创建 RIP 进程
router(config-router)#network 192.168.1.0 //公布 RIP 直连路由
router(config-router)#network 192.168.30.0
router(config-router)#version 2 //定义 RIP 版本为 2
router(config-router)#no auto-summary //关闭 RIP 路由自动汇总
router(config-router)#end
根据上述的配置是 RIP 的普通配置,只需要公布自己的直连路由即可,这两台设备之间必须配置相同的路由协议,这样它们才 能互相学习对方的直连路由,最后使得 RIP 路由协议运行正常,全网通过 RIP 协议进行网络互联。
Rip 详解
1 什么叫收敛?
比如, 在一个运行着 RIP 协议的路由网络中, 新添加进来了一个网段, 经过了一段时间, 这个新网段所有运行 RIP 协议 的路由器都学习到了,这个过程,就称为收敛。
收敛的时间是恒量动态路由协议的一个重要指标,我们希望,收敛的时间越短越好。
2 RIP中设置了哪些计时器?
更新计时器:路由器每隔 30秒从每个启动 RIP 协议的接口发送出自己的路由信息。
无效计时器:如果一条路由条目在 180s 内没有收到邻居发来的关于此条目的信息,这条路由的跳数将记为 16。 刷新计时器:某条路由条目被无效计时器标记为不可达之后,再过 60秒,还没有收到更新,则将这条路由从路由表 中删除。
抑制计时器:如果一个网段变为不可达(即在 180s 内没有收到邻居发来的关于此条目的信息,这条路由的跳数将记 为 16。 ) ,则此变化会通过一个触发更新消息,立刻发出,遍及全网,接收到此触发更新消息的路由器,启动抑制计时器, 时间为 180秒,超过 180秒之后,才接收关于不可达网段的路由更新消息。这样,可以有效地防止(并不能杜绝)一条 链路忽通忽断而导致网络内所有路由器的路由表跟着它不停改变的现象。
3 什么是水平分割?
水平分割是在距离矢量路由协议中最常用的避免环路发生的解决方案之一。
产生环路的一种情况是:路由器 A 将从路由器 B 学习到的路由信息又告诉给了路由器 B 。最终,路由器 B 认为通过路由 器 A 能够到达目标网络,路由器 A 认为通过路由器 B 能够到达目标网络。路由数据包的时候,数据将在两个路由器间不 停地循环,直至 TTL 的值为 0,将此数据包丢弃。
水平分割的思想就是:在路由信息传送过程中,不再把路由信息发送到接收到此路由信息的接口上。从而在一定程度上 避免了环路的产生。
4 什么是有类路由协议?什么是无类路由协议?
有类路由协议,在向邻居路由器宣告自己的路由信息时,不携带目标网络的子网掩码。 RIP v1是有类路由协议。
无类路由协议,在向邻居路由器宣告自己的路由信息时,携带目标网络的子网掩码。 RIP v2是无类路由协议。
5 RIP v1和 RIP v2的区别有哪些?
① RIP v1发送路由消息时,不携带子网掩码; RIP v2则携带每个路由条目的子网掩码。
② RIP v1发送路由消息时,采用广播的方式,广播地址为 255.255.255.255; RIP v2发送路由消息时,采用组播的方式, 组播地址为 224.0.0.9。
③ RIP v1不支持不连续子网。从一个网络 ID 划分出来的子网如果分配在不同的路由器上, RIP 宣告路由时又不携带子 网掩码,就会造成到达同一主网有多条路径,从而发生错误的数据转发。 RIP v2支持不连续子网,因为其通告路由时携 带子网掩码,所以路由器能知道其准确的子网络 ID 。
④ RIP v2具有验证身份的功能。
⑤ RIP v2发送路由消息时,不但携带路由条目的子网掩码,还携带路由条目的下一跳地址。
范文二:A Trip on the Beach 沙滩之旅
A Trip on the Beach
This picture was taken when I went to the beach in Shenzhen last summer. Of course there were many people you can see from the picture: children, ladies, men and foreigners. Children had vests and shorts; the men wore colorful shorts and ladies wore bikinis. Some were playing with the sand; some were swimming; some were riding the motorboats; others were talking, maybe about their children, family members or friends and so on and some were just enjoying the beautiful scenery. People enjoyed themselves a lot.
As for scenery, you can see the sea and sky merged at the horizon. Besides, there were some kinds of mountains at a distance. Then, what you can see is a small island made up by plenty of rocks and trees. On the island, there was a hathpace, which was connected with the other one on the shore by several thick wire ropes. You could slip on the ropes across the sea, which can show you the broad blue sea, the white waves and the people on the shore.
People came to the beach for many reasons. Many people came here to relax themselves; some spent some happy time with their children; some just came to enjoy the terrific scenery of
the sea.
范文三:思科路由协议rip
拓扑结构图
配置命令
Router 1:
Router#show run
ip dhcp pool 1
network 192.168.3.0 255.255.255.0 default-router 192.168.3.1
dns-server 10.1.1.1
interface FastEthernet0/0
ip address 192.168.3.1 255.255.255.0 duplex auto
speed auto
!
interface Serial2/0
ip address 192.168.1.1 255.255.255.0 !
router rip
network 192.168.1.0
network 192.168.3.0
router:2:
Router#show run
ip dhcp pool 3
network 192.168.4.0 255.255.255.0 default-router 192.168.4.1
dns-server 10.1.1.1
!
interface FastEthernet0/0
ip address 192.168.4.1 255.255.255.0
duplex auto
speed auto
interface Serial3/0
ip address 192.168.2.1 255.255.255.0
router rip
network 192.168.2.0
network 192.168.4.0
router0:
Router#show run
ip dhcp pool 2
network 192.168.5.0 255.255.255.0 default-router 192.168.5.1
dns-server 10.1.1.1
interface FastEthernet0/0
ip address 192.168.5.1 255.255.255.0 duplex auto
speed auto
!
interface Serial2/0
ip address 192.168.1.2 255.255.255.0
interface Serial3/0
ip address 192.168.2.2 255.255.255.0
router rip
network 192.168.1.0
network 192.168.2.0
network 192.168.5.0
注意:rip network是邻居地址段
范文四:一次旅行ATrip
一次旅行 A Trip
The summer holiday begins. I am very happy. Last week, I traveled to Zhuhai. It's a small but beautiful city. The streets are clean and the buildings are huge. The traffic of Zhuhai is good. There is almost no traffic jams here,because the transportation system is good. Macau is on the opposite of Zhuhai.We can even see the cars running in the streets of Macau. I hope I can step into Macau to visti this magical city.
暑假开始了,我很开心。上周,我到珠海旅游了。它是个很小但是很美的城市。街道干净,楼很高。珠海的交通很好,几乎没有交通堵塞,因为交通系统很发达。澳门就在珠海对面。我们甚至可以看到在澳门大街上奔跑的车辆。我希望可以踏入澳门这座魔幻之城旅游。
范文五:rip协议配置
一. 实验名称:RIP V1路由协议配置
二. 实验设备
1(R2692路由器2台或S3760交换机2台
2(PC机2台
3(直通线2条V.35线缆1根
三. 网络拓朴:
四. 预期要达到的实验结果:
1(在RIP配置之前PC不能相互ping 通
2(RIP配置完成之后PC之间能相互ping通
五. 配置思路步骤:(工程配置思想)
1(将交换机的Console端口与计算机的COM口相连好。在学校网络实验机房中,
这个连接已经做好。
2(按照所给的拓扑图,使用直通线的一端连接路由器的G0/0/0端口,直通线的另外一端连接PC1计算机的网卡接口。PC2 与路由器的连接可以选择连接G0/0/0
端口,直通线的另一端连接PC2 计算机的网卡接口。
六. 实验调试过程:
1(对路由器RTA进行配置,使其与拓扑保持一致
2(同理配置RTB
3(配置pc(使用模拟器)
4配置RIP之前,让PC相互Ping对方的IP地址
5在两台路由器上配置RIP协议并且展示邻居路由
6.配置完毕,让PC1,PC2 相互Ping对方的IP地址
七. 实验调试结果:
1(在配置RIP之前,PC无法相互Ping通对方的IP地址
2(配置RIP之后,PC能相互Ping通对方的IP地址
八. 实验总结:
1(动态路由协议更适合较大型的网络拓扑