3

我需要有关 CISCO 数据包跟踪器上的设备(交换机、路由器和 PC)的基本配置方面的帮助。有什么建议吗?

在此处输入图像描述

4

2 回答 2

3

我没有使用数据包跟踪器,但在我的 gns3 实验室中,我会使用 10.10.lower routerid+higher routerid.routerid

因此,r1 和 r3 之间的接口对于 r1 到 r3 来说是 10.10.13.1,而另一端是 10.10.13.3,在 r3 端和 r2 到 r3 上使用 r2 上的 10.10.23.2 和 r3 上的 10.10.23.3

然后在它们之间使用相同的设置在它们之间运行一个通用的 eigrp 设置,你就完成了。

路由器 eigrp 1

网络 0.0.0.0 0.0.0.0

在交换机上,您将使用 vlan 说 10 给该 IP 地址,然后在该接口上使用 switchport access vlan 10 命令将计算机放入该 vlan。

You will be able to ping then but again I use gns3 for my labs, make sure the switch to router link is a trunk on the switch side (encapsulation dot1q has to be configured on the router too to allow trunking)

于 2013-03-30T13:31:47.003 回答
1

With the diagram provided, you would require more than a basic config :)

What you would require would be:

  1. A suitable routing protocol

Availble IGP(internal Gateway Protocols) routing protocols include:

RIP cost 120

OSPF cost 110

EIGRP cost 90.

If you are using a discontigous network, remember to do 'no auto-summary'.

The lower the cost the better the Protocol. This means, EIGRP wins! Yehh!!

Setting up EIGRP:

using the diagram provided, let's make R1 a sample router.

(config)# int se0/0/0

(config-int)#router eigrp 100 (where 100 is ASN and should be same an all routers)

(config-router)# network 192.168.1.0 0.0.0.3 (netork btw R1 $ R2 和通配符掩码)

(config-router)#network 10.0.0.0 0.0.0.255(R1 和 LAN 网络之间的路由)注意:通配符掩码是子网掩码的倒数 - 请查看 cisco 网站以了解详情(config-router)没有自动汇总(已经在默认在较新的 IOS 上)

执行“复制运行配置启动配置”以保存您的配置!在其他路由器上重复此过程。

建议的故障排除建议:使用 ping 验证网络连接是否正常 do 'show running-config startup-config do 'show ip int brief'

使用与其子网相对应的静态 ip 设置 PC,您就可以开始了!对于开关......只需确保接口已启动 :)

于 2015-11-06T12:37:44.560 回答