#PacketTracer实验#-单臂路由的实现方法,单臂路由是最简单的不同网段,或不同VLAN之间实现相互访问的方法。我将单臂路由实现过程分为:硬件连接,IP设置,VLAN规划,交换机配置,路由器配置五个方面,接下来以PacketTracer实验方式来分享这五个过程,希望对于大家理解单笔路由有所帮助!
工具/原料
PacketTracer工具
路由器1台、交换机1台、电脑2台、网线4条
方法/步骤
1、【硬件连接】打开PacketTracer工具,添加一台路由器,一台交换机和两台电脑,这些是我们实现单臂路由的硬件设备,如图所示。
2、【硬件连接】通过直连线工具,将路由器的fa0/0连接交换机的fa0/1,将交换机的fa0/2连接PC1的fa0,将交换机的fa0/3连接PC2的fa0,如图所示。
3、【IP设置】设置PC1的IP地址:192.168.1.2,其子网掩码:255.255.255.0,其网关:192.168.1.1;然后设置PC2的IP地址:192.168.2.2,其子网掩码:255.255.255.0,其网关:192.168.2.1;显然这两台电脑的IP不属于一个网段,通过交换机是无法实现相互访问的。
4、【IP设置】设置好了两台电脑的IP地址,通过ping工具测试在没有设置路由器和交换机的情况下两台电脑是否能够互通,结果显示不能ping通,因为两台电脑属于不同的网段,而选择的交换机为二层交换没有路由功能,因此ping不通【此验证仅为了便于大家理解】
5、【VLAN规划】由于单臂路由比较简撮劝丛食单,就关系到两个网段,因此规划两个VLAN,以10和20为例,跟大家分享。登录交换机,然后输入enab造婷用痃le进入特权模式,再输入configuret进入全局配置模式,创建vlan10命名为PC1,创建vlan20名名为PC2,退出、通过wr保存如图:命令如下Switch>Switch>enSwitch#conSwitch#confSwitch#configuretEnterconfigurationcommands,oneperline.EndwithCNTL/Z.Switch(config)#vlan10namepc1^%Invalidinputdetectedat'^'marker.Switch(config)#vlan10Switch(config-vlan)#naSwitch(config-vlan)#namepc1Switch(config-vlan)#exSwitch(config)#vlan20Switch(config-vlan)#naSwitch(config-vlan)#namepc2Switch(config-vlan)#exSwitch(config)#exSwitch#%SYS-5-CONFIG_I:ConfiguredfromconsolebyconsolewrBuildingconfiguration...[OK]Switch#
6、【交换机配置】交换机配置也就是对交湍恬擒舍换机连接的端口进行设置,并开启!也就是将交换机连接路由器的fa0/1垮逆解仔端口设置为trunk模式,并开启;把交换机连接电脑的fa0/2和fa0/3端口设置为access模式,并开启。如图。命令如下Switch>enSwitch#conftEnterconfigurationcommands,oneperline.EndwithCNTL/Z.Switch(config)#interfacefa0/1Switch(config-if)#switchportmodetrunkSwitch(config-if)#switchporttrunkallowedvlan10,20Switch(config-if)#exSwitch(config)#Switch(config)#Switch(config)#interfacefa0/2Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlan10Switch(config-if)#exSwitch(config)#Switch(config)#Switch(config)#interfacefa0/3Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlan20Switch(config)#Switch(config)#exSwitch#%SYS-5-CONFIG_I:ConfiguredfromconsolebyconsolewrBuildingconfiguration...[OK]Switch#
7、【路由器配置】登录路由器,由于路由骰蓍溶芽器只有一根线连接交换机,因此通过子接口,并将两台电脑的网关到两个子接口去,路由器设置如图,命令如下:Router>enRouter#con熠硒勘唏ftEnterconfigurationcommands,oneperline.EndwithCNTL/Z.Router(config)#interf0/0Router(config-if)#noshut(启动f0/0的接口,包括所有子接口)Router(config-if)#exRouter(config)#interf0/0.1(进入子接口)Router(config-subif)#encapsulationdot1Q10(封装dot1Q协议,建立与vlan10的关联)Router(config-subif)#ipaddress192.168.1.1255.255.255.0Router(config-subif)#exRouter(config)#interfacefa0/0.2Router(config-subif)#encapsulationdot1Q20Router(config-subif)#ipaddress192.168.2.1255.255.255.0Router(config-subif)#exRouter(config)#exRouter#wrBuildingconfiguration...[OK]Router#
8、【通信测试】通过观察发现,路由器设置完成之后,路由器连接交换机的线路状态由黄点变成了绿点,通过两台电脑互相ping测试,发现可以通信,单臂路由实验完成!如图所示。