网络安全考试题目:按照下图配置A各端口相应的IP地址
- 提问者网友:眉目添风霜
- 2021-07-31 15:49
- 五星知识达人网友:归鹤鸣
- 2021-07-31 16:09
1、配置路由器A各端口IP地址
router> enable
router# configure terminal
router(config)# hostname A
A(config)# interface f0
A(config-if)# ip address 192.168.0.1 255.255.255.0
A(config-if)# no shutdown
A(config-if)# interface s0
A(config-if)# ip address 192.168.6.1 255.255.255.0
A(config-if)# no shutdown
A(config-if)# exit
2、在A上启用RIP
A(config)#router rip
A(config-router)#netowrk 192.168.0.0
A(config-router)#netowrk 192.168.6.0
A(config-router)#exit
只在A上配置了RIP协议,但B路由器上没有配置RIP协议,这样192.168.1.0能到达192.168.0.1,但反过来则不通!因为A把自己直连的网络通告了出来
另外还有的就是rip协议还有version1和version2
RIP V1
1、有类路由协议
2、不支持变长子网掩码(VLSM)
3、更新方式为广播
4、不支持认证
5、每个更新包最大支持25条路由条目
6、路由表查询方式由大类-->小类(即先查询主类网络,再查询子网号)
7、不支持不连续子网 8、不支持全0、全1子网
RIP V2
1、无类路由协议
2、支持变长子网掩码(VLSM)
3、路由更新方式为多播,目的地址为224.0.0.9
4、支持明文及密文认证(思科私有)
5、每个更新包视认证方式不同,支持路由条目数为24或23条
6、路由表查询机制是由小类-->大类(按位查询,最长匹配、精确匹配,先检查32位掩码的)
7、支持不连续子网
8、支持全0、全1子网 因为无论是哪种版本的RIP路由协议,都是同属于距离矢量路由协议的,所以周期性的更新,全路由表扩散,易产生路由环路等问题都是一样的。
rip协议的收敛速度是个问题,不适合实时网络使用!!!
- 1楼网友:洒脱疯子
- 2021-07-31 18:23
是华为的还是思科的??两个命令不一样的.
- 2楼网友:掌灯师
- 2021-07-31 16:59
1配置A各端口IP地址
router> enable router# router# configure terminal router(config)# hostname A A(config)# interface f0 A(config-if)# ip address 192.168.0.1 255.255.255.0 A(config-if)# no shutdown A(config-if)# interface s0 A(config-if)# ip address 192.168.6.1 255.255.255.0 A(config-if)# no shutdown A(config-if)# exit
2在A上启用RIP
A(config)#router rip
A(config-router)#netowrk 192.168.0.0
A(config-router)#netowrk 192.168.6.0
A(config-router)#exit