静态路由中的默认路由配置方法,默认路由和静态路由配置

1、实验目的

掌握如下技能:

(1) 路由表的概念

(2) ip route 命令的使用

(3) 根据需求正确配置静态路由

2. 实验拓扑

静态路由及默认路由实战,一分钟掌握正确配置静态路由方法

3. 实验步骤

我们要使得 1.1.1.0/24、2.2.2.0/24、3.3.3.0/24 网络之间能够互相通信。

(1) 步骤 1:在各路由器上配置 IP 地址、保证直连链路的连通性

R1(config)# int loopback0

R1(config-if)# ip address 1.1.1.1 255.255.255.0

R1(config)# int s0/0/0

R1(config-if)# ip address 192.168.12.1 255.255.255.0

R1(config-if)# no shutdown

R2(config)# int loopback0

R2(config-if)# ip address 2.2.2.2 255.255.255.0

R2(config)# int s0/0/0

R2(config-if)# clock rate 128000

R2(config-if)# ip address 192.168.12.2 255.255.255.0

R2(config-if)# no shutdown

R2(config)# int s0/0/1

R2(config-if)# clock rate 128000

R2(config-if)# ip address 192.168.23.2 255.255.255.0

R2(config-if)# no shutdown

R3(config)# int loopback0

R3(config-if)# ip address 3.3.3.3 255.255.255.0

R3(config)# int s0/0/1

R3(config-if)# ip address 192.168.23.3 255.255.255.0

R3(config-if)# no shutdown

(2) 步骤 2:R1 上配置静态路由

R1(config)# ip route 2.2.2.0 255.255.255.0 s0/0/0

//下一跳为接口形式,s0/0/0 是点对点的链路,注意应该是 R1 上的 s0/0/0 接口

R1(config)# ip route 3.3.3.0 255.255.255.0 192.168.12.2

//下一跳为 IP 地址形式,192.168.12.2 是 R2 上的 IP 地址

(3) 步骤 3:R2 上配置静态路由

R2(config)# ip route 1.1.1.0 255.255.255.0 s0/0/0

R2(config)# ip route 3.3.3.0 255.255.255.0 s0/0/1

(4) 步骤 4:R3 上配置静态路由

R3(config)# ip route 1.1.1.0 255.255.255.0 s0/0/1

R3(config)# ip route 2.2.2.0 255.255.255.0 s0/0/1

4. 实验调试

(1) 在 R1、R2、R3 上查看路由表

R1# show ip route

Codes: C – connected, S – static, 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

i – IS-IS, su – IS-IS summary, 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.12.0/24 is directly connected, Serial0/0/0

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback0

2.0.0.0/24 is subnetted, 1 subnets

S 2.2.2.0 is directly connected, Serial0/0/0

3.0.0.0/24 is subnetted, 1 subnets

S 3.3.3.0 [1/0] via 192.168.12.2

2.0.0.0/24 is subnetted, 1 subnets

S 2.2.2.0 is directly connected, Serial0/0/0

3.0.0.0/24 is subnetted, 1 subnets

S 3.3.3.0 [1/0] via 192.168.12.2

R2# show ip route

Codes: C – connected, S – static, 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

i – IS-IS, su – IS-IS summary, 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.12.0/24 is directly connected, Serial0/0/0

1.0.0.0/24 is subnetted, 1 subnets

S 1.1.1.0 is directly connected, Serial0/0/0

1.0.0.0/24 is subnetted, 1 subnets

S 1.1.1.0 is directly connected, Serial0/0/0

2.0.0.0/24 is subnetted, 1 subnets

C 2.2.2.0 is directly connected, Loopback0

3.0.0.0/24 is subnetted, 1 subnets

S 3.3.3.0 is directly connected, Serial0/0/1

3.0.0.0/24 is subnetted, 1 subnets

S 3.3.3.0 is directly connected, Serial0/0/1

C 192.168.23.0/24 is directly connected, Serial0/0/1

R3# show ip route

Codes: C – connected, S – static, 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

i – IS-IS, su – IS-IS summary, 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

1.0.0.0/24 is subnetted, 1 subnets

S 1.1.1.0 is directly connected, Serial0/0/1

2.0.0.0/24 is subnetted, 1 subnets

S 2.2.2.0 is directly connected, Serial0/0/1

1.0.0.0/24 is subnetted, 1 subnets

S 1.1.1.0 is directly connected, Serial0/0/1

2.0.0.0/24 is subnetted, 1 subnets

S 2.2.2.0 is directly connected, Serial0/0/1

3.0.0.0/24 is subnetted, 1 subnets

C 3.3.3.0 is directly connected, Loopback0

C 192.168.23.0/24 is directly connected, Serial0/0/1

(2) 从各路由器的环回口 ping 其他路由器的环回口:

R1# ping

//不带任何参数的 ping 命令,允许我们输入更多的参数

Protocol [ip]:

Target IP address: 2.2.2.2 //目标 IP 地址

Repeat count [5]: //发送的 ping 次数

Datagram size [100]: //ping 包的大小

Timeout in seconds [2]: //超时时间

Extended commands [n]: y //是否进一步扩展命令

Source address or interface: 1.1.1.1 //源 IP 地址

Type of service [0]:

Set DF bit in IP header? [no]:

Validate reply data? [no]:

Data pattern [0xABCD]:

Loose, Strict, Record, Timestamp, Verbose[none]:

Sweep range of sizes [n]:

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:

Packet sent with a source address of 1.1.1.1

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 12/14/16 ms

//以上说明从 R1 的 loopback0 可以 ping 通 R2 上的 loopback0。也可以直接使用命令:

R1# ping 2.2.2.2 source loopback 0

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:

Packet sent with a source address of 1.1.1.1

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 12/14/16 ms

R2# ping 1.1.1.1 source loopback 0

R2# ping 3.3.3.3 source loopback 0

//从 R2 的 loopback0 应该可以 ping 通 R1 和 R3 的 lopback0 接口。

R3# ping 1.1.1.1 source loopback 0

R3# ping 2.2.2.2 source loopback 0

//从 R3 的 loopback0 也应该可以 ping 通 R1 和 R2 的 lopback0 接口。

【提示】虽然从 R1 的 loopback0 可以 ping 通 R3 的 loopback0,数据需要经过

192.168.23.0/24 网络,但是在 R1 上我们并没有添加 192.168.23.0/24 的路由。路由器转

发数据包完成是根据路由表的,并且数据是一跳一跳地被转发的,就像接力赛似的。从 R1

的loopback0口ping R3的loopback0口时,IP数据包的源IP为1.1.1.1,目的IP为3.3.3.3。

R1 路由器首先查路由表,数据包被发到了 R2;R2 路由器也查路由表(3.3.3.0/24 路由),

数据包被发到了 R3;R3 知道这是直连路由。R3 响应 R1 的数据包进行类似的过程。

(3) 从 R1 上 ping 2.2.2.2、从 R1 上 ping 3.3.3.3

R1# ping 2.2.2.2

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5), round-trip min/avg/max = 12/14/16 ms

//可以 ping 通。

R1# ping 3.3.3.3

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:

…..

Success rate is 0 percent (0/5)

//以上无法ping通,原因在于使用ping命令时,如果不指明源接口,则R1路由器使用s0/0/0

接口的 IP 地址(192.168.12.1)作为 IP 数据包的源 IP 地址了。R3 上响应 R1 的数据包时,

数据包是发向 192.168.12.1 的,然而由于 R3 没有 192.168.12.0/24 的路由,数据包无法发

送。即:数据包从 R1 到了 R3 后,无法返回 R1。

5. 静态路由

在实验 1 的基础上进行

(1) 步骤 1:R1、R3 上删除原有静态路由

R1(config)# no ip route 2.2.2.0 255.255.255.0 Serial0/0/0

//要删除路由,在原有命令前面加 no 即可

R1(config)# no ip route 3.3.3.0 255.255.255.0 192.168.12.2

R3(config)# no ip route 1.1.1.0 255.255.255.0 Serial0/0/1

R3(config)# no ip route 2.2.2.0 255.255.255.0 Serial0/0/1

(2) 步骤 2: R1、R3 上配置默认路由

R1(config)# ip route 0.0.0.0 0.0.0.0 s0/0/0

R3(config)# ip route 0.0.0.0 0.0.0.0 s0/0/1

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:dandanxi6@qq.com

(0)
上一篇 2023年 9月 12日 下午12:25
下一篇 2023年 9月 12日 下午12:32

相关推荐

  • 有多少人是这样被骗的呢(云账本有多少人被骗)

    随着社会的发展,不同的骗局层出不穷,只能自己提高警觉性,凡事让你打钱的,肯定就是骗子,不要深陷。那些深陷的人们,在反应过来的那一刻,一定是后悔不已,痛恨自己的愚蠢,只是深陷里面的人…

    互联网 2023年 3月 8日
  • 电脑qq上怎么修改群昵称群备注

    工具:电脑、QQ 1.登录电脑QQ,如下图: 登录电脑qq后 2.点击群聊按钮,如下图: 点击群聊按钮 点击群聊按钮后 3.左击鼠标选中所要修改的群 如果您是群管理员—…

    2023年 1月 9日
  • 3d模型效果图怎么做

    商迪3D渲染的3D模型效果图,是一种通过计算机程序生成的图像,可以模拟真实物体的形状、体积和材质,给人一种逼真的感觉。在建筑、工程、游戏以及动画制作等领域,3D模型效果图被广泛应用…

    2023年 10月 18日
  • 别再问企业信息怎么查了,答案在这里找

    问 康康姐,秋天到了,路边烤红薯也多起来,我最喜欢吃烤红薯了,但网上有人说街边烤红薯会致癌,是不是真的呢? 答 康康姐也注意到网上的说法了,说是红薯被烤焦后会产生致癌物“丙烯酰胺”…

    2023年 1月 10日
  • qlv转换mp4最简单方法免费

    qlv是腾讯视频的一种加密文件格式,大家在腾讯视频下载的所有视频都是这个格式,qlv这个格式的文件只能使用腾讯视频进行播放,完全没办法进行任何的二次编辑,今天小编就来教大家怎么把q…

    2023年 7月 25日
  • 百度拼音输入法怎么用,百度输入法华为版9键拼音怎么打

    拼音输入法是当下使用率最广的中文输入方式,而我使用时间最长的还是百度拼音输入法,期间也换过谷歌、搜狗、QQ、2345等拼音输入法,但总有些地方感觉不顺手。折腾过几次,后来还是习惯用…

    2023年 10月 9日
  • 只缘身在此山中的解释

    配置完Nginx之后虽然还没有添加任何网页内容,但是web服务器确实已经在运行了。但是这时候在浏览器上输入自己的域名很可能并不能显示正常的网页。其实这种现象很普遍,并不是Nginx…

    2023年 4月 19日
  • 怎么把抖音玩好(怎么玩好抖音)

    自从快手短视频出现之后,又相继出现抖音、西瓜、火山、美拍等短视平台,其中以抖音、快手为主,而各大互联网公司都开始纷纷涉猎短视频领域,那么究竟要怎么要才能玩转短视频平台呢 !今天小编…

    2023年 1月 3日
  • 让刷码支付更安全!支付宝上线“付款码隐私保护功能”,怎样设置?老友们跟着周到君来操作→

    支付环境更安全! 刚刚,支付宝上线了“付款码隐私保护功能”! 只要打开这个功能,即可隐藏付款码,更好的保护隐私安全。快跟着周到君看看怎么操作吧↓ 第一步,打开支付宝付款码页面; 第…

    2023年 6月 6日
  • 如何关闭qq空间微信朋友圈(微信qq关闭朋友圈广告方法)

    关于广告 为了使您看到更具有实用性的广告,我们将根据您使用我们服务的情况,对您可能在我们服务上接收到的部分广告进行个性化定制。我们的广告客户可以使用腾讯广告平台向您展示广告。您可以…

    互联网 2023年 9月 21日