赞
踩
学习提高blog,自己学习过程中的问题记录
一、要求
1.按照要求进行IP地址配置
2.PC3与PC4访问时,要求优先从千兆以太网链路转发,优先级修改为50
3.全网主机可以实现互通
4.R1能够利用telnet技术远程访问R2,密码为HCIE@123,权限等级为3
静态路由知识点补充
静态路由:由管理员手工添加的路由
为什么要添加静态路由
1. 路由器的作用:实现不同网段之间互通
2. 路由器如何在不同网段互通---路由器工作原理:转发
3. 转发:路由器会根据‘目的IP地址’查‘路由表’转发
若路由表中无目的IP地址所在路由,无法实现转发;
- 路由表:默认会将 直连网段 自动添加到路由表中
非直连网段路由器不会自动添加---
- 如何让非直连路由器获取非直连网段的路由?
静态:管理员手工添加的路由
动态:路由器之间自动传递的路由
eg
[r2]ip route-static 目的网段 掩码 出接口() 下一跳进口
[r2]ip route-static 192.168.1.0 24 g0/0/1 12.1.1.1
验证display ip interface brief
display IP routing-table
[ ]undo ip route-static 10.1…..有<cr>表示可以回车
有三种接口配置方法
✔ Ip route-static 目的网段 掩码 出接口 下一跳
Ip route-static 目的网段 掩码 出接口
✔ Ip route-static 目的网段 掩码 下一跳
-------------------------------
路由的比较规则:
1.先比掩码:掩码越长越优先(越长越精确)
2.比优先级:越小越优先(当掩码长度相同时)直连:0 静态:60
Ospf:10 rip(动态):100
-------静态路由只比1,2
3.度量:越小越优先
统称,rip---跳数(跳路由器的个数) ospf---开销
-------动态路由只比1,2,3
路由跟踪命令:Tracert可以跟踪一些路由
[ ]Tracert ip地址
Display this
----------
如何修改静态路由优先级
[r2]ip route-static 192.168.1.0 24 e0/0/1 12.1.1.1 preference 50
路由表中存放的最优路由
---------
静态路由的缺点:
- 不适用于中大型网络
- 灵活度较差
二、配置PC
三、配置端口号
R1:
- [r1]int g0/0/0
- [r1-GigabitEthernet0/0/0]ip address 192.168.1.254 24
- [r1]int g0/0/1
- [r1-GigabitEthernet0/0/1]ip address 12.1.1.1 24
R2:
- [r2]int g0/0/1
-
- [r2-GigabitEthernet0/0/1]ip address 12.1.1.2 24
-
- [r2]int g0/0/0
-
- [r2-GigabitEthernet0/0/0]ip address 192.168.3.254 24
-
- [r2]int g0/0/2
-
- [r2-GigabitEthernet0/0/2]ip address 23.1.1.1 24
-
- [r2]interface e0/0/0
-
- [r2-Ethernet0/0/0]ip address 50.1.1.1 24
R3:
- [r3]interface g0/0/2
-
- [r3-GigabitEthernet0/0/2]ip address 23.1.1.2 24
-
- [r3]int e0/0/0
-
- [r3-Ethernet0/0/0]ip address 50.1.1.2 24
-
- [r3]int g0/0/0
-
- [r3-GigabitEthernet0/0/0]ip address 192.168.2.254 24
四、配置静态路由
R1:
- [r1]ip route-static 192.168.3.0 24 g0/0/1 12.1.1.2
- [r1]ip route-static 192.168.2.0 24 g0/0/1 12.1.1.2
display this 结果
display ip routing-table 结果
R2:
- [r2]ip route-static 192.168.2.0 24 g0/0/2 23.1.1.2 preference 50
- [r2]ip route-static 192.168.2.0 24 e0/0/0 50.1.1.2
- [r2]ip route-static 192.168.1.0 24 g0/0/1 12.1.1.1
display this 结果
display ip routing-table 结果
R3:
- [r3]ip route-static 192.168.3.0 24 g0/0/2 23.1.1.1 preference 50
-
- [r3]ip route-static 192.168.3.0 24 e0/0/0 50.1.1.1
-
- [r3]ip route-static 192.168.1.0 24 g0/0/2 23.1.1.1
display this 结果
display ip routing-table 结果
五、ping结果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。