设为首页收藏本站language 语言切换
查看: 1748|回复: 9
收起左侧

[已解决] CCNA实验求助!有图有真相!

[复制链接]
发表于 2012-6-7 14:39:43 | 显示全部楼层 |阅读模式
目的是让所有PC全网全通
VLAN,OSPF,单臂路由都弄过了,为什么左边的PC PING 不通右边的PC,研究了半天了。。。

CISCO

CISCO

附上PKT文件:
CCNA大综合实验Basic.pkt (23.27 KB, 下载次数: 254)
发表于 2012-6-7 15:23:36 | 显示全部楼层
问题是你两个路由之间的路由是怎么做的?
沙发 2012-6-7 15:23:36 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-6-7 15:24:27 | 显示全部楼层
请问,你做ospf宣告的是什么网段?
板凳 2012-6-7 15:24:27 回复 收起回复
回复 支持 反对

使用道具 举报

 楼主| 发表于 2012-6-7 15:34:44 | 显示全部楼层
本帖最后由 fantasyzyc 于 2012-6-7 15:36 编辑
network.com 发表于 2012-6-7 15:23
问题是你两个路由之间的路由是怎么做的?

路由器R1
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
shutdown
!
interface FastEthernet0/1
ip address 10.10.10.1 255.255.255.0
duplex auto
speed auto
!
interface Serial0/0
ip address 10.1.1.1 255.255.255.0
clock rate 64000
!
interface Serial0/1
no ip address
shutdown
!
interface Serial0/2
no ip address
shutdown
!
interface FastEthernet1/0
no ip address
duplex auto
speed auto
!
interface FastEthernet1/0.1
encapsulation dot1Q 10
ip address 192.168.1.254 255.255.255.0
!
interface FastEthernet1/0.2
encapsulation dot1Q 20
ip address 192.168.2.254 255.255.255.0
!
interface FastEthernet1/0.3
encapsulation dot1Q 30
ip address 192.168.3.254 255.255.255.0
!
interface FastEthernet1/0.4
encapsulation dot1Q 40
ip address 192.168.4.254 255.255.255.0
!
router ospf 1
log-adjacency-changes
network 10.1.1.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 192.168.3.0 0.0.0.255 area 0
network 192.168.4.0 0.0.0.255 area 0
network 10.10.10.0 0.0.0.255 area 0
!
ip classless
!
!
line con 0
line vty 0 4
login
!
end
路由器R3

!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
!
!
interface FastEthernet0/0
no ip address
duplex auto
speed auto
!
interface FastEthernet0/0.1
encapsulation dot1Q 10
ip address 192.168.1.254 255.255.255.0
!
interface FastEthernet0/0.2
encapsulation dot1Q 20
ip address 192.168.2.254 255.255.255.0
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/0
ip address 10.1.1.2 255.255.255.0
!
interface Serial0/1
no ip address
shutdown
!
router ospf 1
log-adjacency-changes
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 10.1.1.0 0.0.0.255 area 0
!
ip classless
!
line con 0
line vty 0 4
login
!
end
地板 2012-6-7 15:34:44 回复 收起回复
回复 支持 反对

使用道具 举报

 楼主| 发表于 2012-6-7 16:13:47 | 显示全部楼层
network.com 发表于 2012-6-7 15:24
请问,你做ospf宣告的是什么网段?

R1:
network 10.1.1.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 192.168.3.0 0.0.0.255 area 0
network 192.168.4.0 0.0.0.255 area 0
network 10.10.10.0 0.0.0.255 area 0
R3:
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 0
network 10.1.1.0 0.0.0.255 area 0
5# 2012-6-7 16:13:47 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-6-7 16:18:08 | 显示全部楼层
跨路由器的话左边和右边不能在同一个网段,你左边的路由器直连192.168.1.0/24和192.168.2.0/24;右边的路由器也是直连192.168.1.0/24和192.168.2.0/24;路由器不知道往哪里走了

评分

参与人数 1鸿鹄币 +10 收起 理由
小乔 + 10 赞一个!

查看全部评分

6# 2012-6-7 16:18:08 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-6-7 16:24:15 | 显示全部楼层
建议:把右边的主机划分子网,和左边不要在同一个网段就可以
7# 2012-6-7 16:24:15 回复 收起回复
回复 支持 反对

使用道具 举报

 楼主| 发表于 2012-6-7 16:24:26 | 显示全部楼层
ziyouhaiyang 发表于 2012-6-7 16:18
跨路由器的话左边和右边不能在同一个网段,你左边的路由器直连192.168.1.0/24和192.168.2.0/24;右边的路由 ...

原来如此!受教了~准备再在这个基础上练ACL和NAT
8# 2012-6-7 16:24:26 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-6-7 16:28:56 | 显示全部楼层
IP划分错了
右边的与左边的1.0和2.0重叠了
左边去往右边的包会被路由直接丢回来

把右边划为5.0和6.0就行了
9# 2012-6-7 16:28:56 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-6-29 23:13:47 | 显示全部楼层
10# 2012-6-29 23:13:47 回复 收起回复
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-30 17:53 , Processed in 0.071805 second(s), 29 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表