思科路由器配置问题
发布网友
发布时间:2022-04-28 22:16
我来回答
共4个回答
热心网友
时间:2022-06-23 23:06
思路:
静态路由Ip route 命令格式
Ip route 目的网络号 掩码 {下一路地址/接(出)口}
基本配置:
R0(config)#int f0/1
R0(config-if)#ip add 192.168.1.1 255.255.255.0
R0(config-if)#no shut
R0(config)#int f0/0
R0(config-if)#ip add 10.0.0.2 255.255.255.252
R0(config-if)#no shut
R1(config)#int f0/0
R1(config-if)#ip add 10.0.0.1 255.255.255.252
R1(config-if)#no shut
R1(config)#int f0/1
R1(config-if)#ip add 10.0.1.1 255.255.255.252
R1(config-if)#no shut
R2(config)#int f0/0
R2(config-if)#ip add 10.0.1.2 255.255.252
R2(config-if)#no shut
R2(config)#int f0/1
R2(config-if)#ip add 192.168.2.1 255.255.255.0
R2(config-if)#no shut
然后配静态路由
R0(config)#ip route 10.0.1.0 255.255.255.252 10.0.0.1
R0(config)#ip route 192.168.2.0 255.255.255.0 10.0.0.1
R1(config)#ip route 192.168.1.0 255.255.255.0 10.0.0.2
R1(config)#ip route 192.168.2.0 255.255.255.0 10.0.1.2
R2(config)#ip route 10.0.0.0 255.255.255.252 10.0.1.1
R2(config)#ip route 192.168.1.0 255.255.255.0 10.0.1.1
验证所得:
R2#ping 192.168.1.2 //------------------路由器2 ping PC0
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:
!!!!! //----------------------------------ping 通
R0#ping 192.168.2.2 //路由器0 ping PC2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.2, timeout is 2 seconds:
!!!!! //通
总结:
这个题目的意思是要学者明白,ip route 后面接的是网络地址..而网络地址是ip 与掩码相与所得,很多初学者觉得相与麻烦…但在工作当中常用show ip route 命令查看网络地址…..
验证时要用路由器ping ,避免不必要的错误
动态路由OSPF (通告型命令)
OSPF 命令格式:
router ospf process-ID
network 网络地址 反掩码 区域
基本配置如上
动态路由配置:
R0(config)#route ospf 1
R0(config-router)#network 10.0.0.0 0.0.0.3 area 0
R0(config-router)#network 192.168.1.0 0.0.0.255 area 0
R1(config)#router ospf 1
R1(config-router)#network 10.0.0.0 0.0.0.3 area 0
R1(config-router)#network 10.0.1.0 0.0.0.3 area 0
R2(config)#router ospf 1
R2(config-router)#network 10.0.1.0 0.0.0.3 area 0
R2(config-router)#network 192.168.2.0 0.0.0.255 area 0
验证:
R2#ping 192.168.1.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:
!!!!!
R0#ping 192.168.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.2, timeout is 2 seconds:
!!!!!
总结:反掩码..还有Process-ID(1~65535)都是学者要掌握的.
如果真想学好网络互联..OSPF是一门相当重要的课程.
参考资料:我也是学者...
热心网友
时间:2022-06-23 23:06
首先非常抱歉的告诉你我不愿意给你配置文档。
如果你是做实验:你就应该一步步的去思考并查阅相关资料。这样你才能有收获,用别人写好的配置那你永远只能学到表面的东西,为什么需要这样配置你不会去思考。
如果你是做作业:那你就应该用你所学的知识去做,学习要踏实才能学好。
如果你是在做工程:对你的现状,我无语了!
如果你是在配置当中遇到了问题,我们会解答。
热心网友
时间:2022-06-23 23:07
静态路由配置:
路由器0:interface FastEthernet0/0
ip address 10.0.0.2 255.255.255.0
interface FastEthernet0/1
ip address 192.168.1.1 255.255.255.0
ip route 10.0.1.0 255.255.255.0 10.0.0.1
ip route 192.168.2.0 255.255.255.0 10.0.0.1
路由器1:interface FastEthernet0/0
ip address 10.0.0.1 255.255.255.0
interface FastEthernet0/1
ip address 10.0.1.1 255.255.255.0
ip route 192.168.1.0 255.255.255.0 10.0.0.2
ip route 192.168.2.0 255.255.255.0 10.0.1.2
路由器2:interface FastEthernet0/0
ip address 10.0.1.2 255.255.255.0
interface FastEthernet0/1
ip address 192.168.2.1 255.255.255.0
ip route 192.168.1.0 255.255.255.0 10.0.1.1
ip route 10.0.0.0 255.255.255.0 10.0.1.1
ospf配置:ip地址没变
路由器0:router ospf 1
network 192.168.1.0 0.0.0.255 area 0
network 10.0.0.0 0.0.0.255 area 0
路由器1:router ospf 1
network 10.0.0.0 0.0.0.255 area 0
network 10.0.1.0 0.0.0.255 area 0
路由器2router ospf 1
network 192.168.2.0 0.0.0.255 area 0
network 10.0.1.0 0.0.0.255 area 0
热心网友
时间:2022-06-23 23:07
楼上的答案还是比较清楚的,我也是初学思科者,这种题目的话,我认为只要弄清拓扑,还是比较容易解决的!