专注于武汉中小企业服务解决方案提供商

电脑维修、布线、安防监控、数据恢复、采购、回收

所属分类 > 家电维修 > 正文

如何实现同一路由器不同vlan之间的通信(不同vlan之间如何通信)

编辑:rootadmin
路由器怎么设置 路由器全部怎么安装 路由器怎么设置 路由器亮红灯哪种故障 路由器登录入口和光猫的区别 路由器怎么重启 路由器怎么连接 路由器桥接教程详细 路由器干什么用:如何实现同一路由器不同vlan之间的通信不同vlan之间如何通信一、如何实现同一路由器不同vlan之间的通信1.单臂路由(图)环境:一台路由器,一台二层交换机,两台pc机二层交换机的配置一般模式:Switch>输入enable进入特权模式:Switch>enable输入configureterminal进入全局配置模式:Switch#configureterminalEnterconfigurationcommands,oneperline.EndwithCNTL/Z.创建vlan和vlan:Switch(config)#vlanSwitch(config-vlan)#vlanSwitch(config-vlan)#exit进入接口配置模式:Switch(config)#interfacefastEthernet0/1把0/1变成trunk口(默认是access口)Switch(config-if)#switchportmodetrunk%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet0/1,changedstatetodown%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet0/1,changedstatetoupSwitch(config-if)#exit进入接口配置模式分别把对应的接口,加入对应的vlan:Switch(config)#interfacefastEthernet1/1Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlanSwitch(config-if)#interfacefastEthernet2/1Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlan到此而层交换机配置完毕!路由器的配置:Router>Router>enableRouter#configureterminalEnterconfigurationcommands,oneperline.EndwithCNTL/Z.Router(config)#interfas0/0Router(config-if)#noipaddressRouter(config-if)#noshutdown注意:单臂路由的配置父接口一定要noshutdown%LINK-5-CHANGED:InterfaceFastEthernet0/0,changedstatetoup%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet0/0,changedstatetoupRouter(config-if)#exitRouter(config)#intfas0/0.%LINK-5-CHANGED:InterfaceFastEthernet0/0.,changedstatetoup%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet0/0.,changedstatetoupRouter(config-subif)#encapsulationdot1Q注意:在配置ip时一定要先封装.1q协议Router(config-subif)#ipaddress......0Router(config-subif)#noshutdownRouter(config-subif)#intfas0/0.%LINK-5-CHANGED:InterfaceFastEthernet0/0.,changedstatetoup%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet0/0.,changedstatetoupRouter(config-subif)#ipaddress......0%ConfiguringIProutingonaLANsubinterfaceisonlyallowedifthatsubinterfaceisalreadyconfiguredaspartofanIEEE.,IEEE.1Q,or*LvLAN.Router(config-subif)#encapsulationdot1QRouter(config-subif)#ipaddress......0Router(config-subif)#noshutdownRouter(config-subif)#查看路由表:Router#showiprouteCodes:C-connected,S-static,I-IGRP,R-RIP,M-mobile,B-BGPD-EIGRP,EX-EIGRPexternal,O-OSPF,IA-OSPFinterareaN1-OSPFNSSAexternaltype1,N2-OSPFNSSAexternaltype2E1-OSPFexternaltype1,E2-OSPFexternaltype2,E-EGPi-*-*,L1-*-*level-1,L2-*-*level-2,ia-*-*interarea*-candidatedefault,U-per-userstaticroute,o-ODRP-periodicdownloadedstaticrouteGatewayoflastresortisnotsetC...0/isdirectlyconnected,FastEthernet0/0.C...0/isdirectlyconnected,FastEthernet0/0.Router#PC0的配置:ip...netmask...0gateway...1PC1的配置:ip...netmask...0gateway....使用SVI实现VLAN间的通信(图)环境:一台三层交换机,两台pc机三层交换机的配置:Switch>enableSwitch#configureterminalEnterconfigurationcommands,oneperline.EndwithCNTL/Z.创建vlanSwitch(config)#vlanSwitch(config-vlan)#vlanSwitch(config-vlan)#exit配置SVI接口ipSwitch(config)#interfacevlan%LINK-5-CHANGED:InterfaceVlan,changedstatetoupSwitch(config-if)#ipaddress......0Switch(config-if)#noshutdownSwitch(config-if)#interfacevlan%LINK-5-CHANGED:InterfaceVlan,changedstatetoupSwitch(config-if)#ipaddress......0Switch(config-if)#noshutdownSwitch(config-if)#exit改变接口模式并加入vlanSwitch(config)#interfacefastEthernet0/1Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlan%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceVlan,changedstatetoupSwitch(config-if)#interfacefastEthernet0/2Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlan%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceVlan,changedstatetoupSwitch(config-if)#看三层交换机的路由表:Switch#showiprouteCodes:C-connected,S-static,I-IGRP,R-RIP,M-mobile,B-BGPD-EIGRP,EX-EIGRPexternal,O-OSPF,IA-OSPFinterareaN1-OSPFNSSAexternaltype1,N2-OSPFNSSAexternaltype2E1-OSPFexternaltype1,E2-OSPFexternaltype2,E-EGPi-*-*,L1-*-*level-1,L2-*-*level-2,ia-*-*interarea*-candidatedefault,U-per-userstaticroute,o-ODRP-periodicdownloadedstaticrouteGatewayoflastresortisnotsetC...0/isdirectlyconnected,VlanC...0/isdirectlyconnected,VlanSwitch#两主机的配置与单臂路由中两主机的配置一样3.跨交换机实现VLAN间的通信(图)环境:一台三层交换机,两台二层交换机,两台pc机三层交换机的配置(SW3)Switch>enableSwitch#configureterminalEnterconfigurationcommands,oneperline.EndwithCNTL/Z.创建vlan、并设置ipSwitch(config)#vlanSwitch(config-vlan)#vlanSwitch(config-vlan)#exitSwitch(config)#interfacevlan%LINK-5-CHANGED:InterfaceVlan,changedstatetoupSwitch(config-if)#ipaddress......0Switch(config-if)#noshutdownSwitch(config-if)#interfacevlan%LINK-5-CHANGED:InterfaceVlan,changedstatetoupSwitch(config-if)#ipaddress......0Switch(config-if)#noshutdownSwitch(config-if)#exit设置接口模式并加入相应的vlan(注意trunk口的设置)Switch(config)#interfacefastEthernet0/1Switch(config-if)#switchportmodetrunkSwitch(config-if)#interfacefastEthernet0/1Switch(config-if)#switchportaccessvlan%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceVlan,changedstatetoupSwitch(config)#interfacefastEthernet0/2Switch(config-if)#switchportmodetrunkSwitch(config-if)#interfacefastEthernet0/2Switch(config-if)#switchportaccessvlan%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceVlan,changedstatetoupSwitch#看路由表Switch#showiprouteCodes:C-connected,S-static,I-IGRP,R-RIP,M-mobile,B-BGPD-EIGRP,EX-EIGRPexternal,O-OSPF,IA-OSPFinterareaN1-OSPFNSSAexternaltype1,N2-OSPFNSSAexternaltype2E1-OSPFexternaltype1,E2-OSPFexternaltype2,E-EGPi-*-*,L1-*-*level-1,L2-*-*level-2,ia-*-*interarea*-candidatedefault,U-per-userstaticroute,o-ODRP-periodicdownloadedstaticrouteGatewayoflastresortisnotsetC...0/isdirectlyconnected,VlanC...0/isdirectlyconnected,VlanSW的配置Switch>enableSwitch#configureterminalEnterconfigurationcommands,oneperline.EndwithCNTL/Z.Switch(config)#vlanSwitch(config-vlan)#exitSwitch(config)#interfacefastEthernet0/1Switch(config-if)#switchportmodetrunk%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet0/1,changedstatetodown%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet0/1,changedstatetoupSwitch(config-if)#interfacefastEthernet1/1Switch(config-if)#switchportmodeaccessSwitch(config-if)#switchportaccessvlanSwitch(config-if)#exitSwitch(config)#SW的配置Switch>Switch>enSwitch#Switch#configureterEnterconfigurationcommands,oneperline.EndwithCNTL/Z.Switch(config)#interfas1/1Switch(config-if)#switchportmodetrunk%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet1/1,changedstatetodown%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet1/1,changedstatetoupSwitch(config-if)#switchportmodeaccessSwitch(config-if)#interfas2/1Switch(config-if)#switchportmodetrunk%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet2/1,changedstatetodown%LINEPROTO-5-UPDOWN:LineprotocolonInterfaceFastEthernet2/1,changedstatetoupSwitch(config-if)#exitSwitch(config)#vlanSwitch(config-vlan)#interfas1/1Switch(config-if)#switchportaccessvlanSwitch(config-if)#注意:两交换机之间的链接是trunk链路4.以上配置在模拟器上都可实现在模拟器上配置其中pc图片上述三种方式pc机的配置都一样二、不同vlan之间如何通信不同的vlan想要进行通信必须要用到三层设备才能实现vlan间的互访,比如路由器或三层交换机。路由器就做vlan间路由,三层交换机中只需要在不同的vlan上配置了*。如果是二层交换机,可以另外借助一台路由器,做单臂路由;如果是三层交换机,直接开启三层交换功能,思科的话需要全局配置模式下手动开iprouting,华为或者其他思科风格的交换机应该默认开启的。\x0d\x0a更多关于不同vlan之间如何通信,进入:

标签: 如何实现同一路由器不同vlan之间的通信(不同vlan之间如何通信)


本文链接地址:https://www.iopcc.com/jiadian/73428.html转载请保留说明!

上一篇:迅维科技与东盟企业签约打造东盟科技产品翻新中心 (迅维科技有限公司)

下一篇:怎么查看苹果手机激活时间?怎么确定自己的不是二手手机 (怎么查看苹果手机使用了多长时间)

推荐内容:

热水器烧水有声音能正常使用吗(讨论热水器噪音对使用的影响) (热水器里有烧水声)

热水器烧水有声音能正常使用吗(讨论热水器噪音对使用的影响) (热水器里有烧水声)

热水器噪音对使用的影响)热水器是我们日常生活中必不可少的电器之一,它可以帮助我们快速地加热水,方便我们 ...

正确使用电脑的建议和健康保健措施 (正确使用电脑的注意事项)

正确使用电脑的建议和健康保健措施 (正确使用电脑的注意事项)

健措施(正确使用电脑的注意事项),希望有所帮助,仅作参考,欢迎阅读内容。内容相关其他词:正确使用电脑的姿势 ...

怎么恢复出厂设置路由器怎么设置(路由器怎么恢复出厂值设置) (怎么恢复出厂设置华为)

怎么恢复出厂设置路由器怎么设置(路由器怎么恢复出厂值设置) (怎么恢复出厂设置华为)

由器怎么设置路由器亮红灯哪种故障路由器登录入口和光猫的区别路由器怎么重启路由器怎么连接路由器桥接教程详 ...

跟家电维修小编学习们怎么装系统 (家电维修好干吗)

跟家电维修小编学习们怎么装系统 (家电维修好干吗)

遇到了各种电脑*问题,他们想立马安装电脑*了,但是却不知道如何安装电脑*,所以就来问小编我,那么小编现在就 ...

不想体验Win11测试版如何退回Win10系统 (win11测试版bug)

不想体验Win11测试版如何退回Win10系统 (win11测试版bug)

了,但是有些朋友不太喜欢。如果他们想退回以前的Win*,他们应该怎么做?因为每个人都经历过Win测试版,微软也允 ...

Win7电脑能使用EDGE浏览器吗? (win7能装新版edge吗?)

Win7电脑能使用EDGE浏览器吗? (win7能装新版edge吗?)

随着win*一起发布的,所以在win7上暂时是没有办法使用的,但是edge还是在win上是有很多的可取之处的,下面来看详细 ...

怎么把U盘做成启动盘?石大师U盘启动盘制作教程 (怎么把U盘做成系统)

怎么把U盘做成启动盘?石大师U盘启动盘制作教程 (怎么把U盘做成系统)

是U盘装*中不可或缺的步骤之一,今天小编将为大家介绍使用石*U盘装*软件制作U盘启动盘的方法,还不清楚应该如何 ...

小米笔记本电脑U盘重装系统教学 小米笔记本怎么U盘重装系统? (小米笔记本电脑怎么样)

小米笔记本电脑U盘重装系统教学 小米笔记本怎么U盘重装系统? (小米笔记本电脑怎么样)

多的国内定位器厂商都有生成电脑了,比如小米就有自己的笔记本*电脑。有用户购买的电脑发现自己不喜欢里面预装 ...

企业级、客户级、消费级固态硬盘的区别有哪些? (企业客户类别分为哪几类)

企业级、客户级、消费级固态硬盘的区别有哪些? (企业客户类别分为哪几类)

和消费级。企业级产品对于稳定性可靠性有极高的需要。人们非常容易将高性能与企业级联系在一起,其实这是一个 ...

iPhone6无线WiFi打不开检修思路 (iphone6的wifi打不开)

iPhone6无线WiFi打不开检修思路 (iphone6的wifi打不开)

常运用,*WiFi打不开,接到机子以后我们先进入*检测功能,发现*wifi蓝牙*都有,*WiFi打不开,确定主板问题以后那就拆 ...

Copyright © 2023 武汉电脑维修 All Rights Reserved.

鄂ICP备2023003026号

免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢!邮箱: opceo@qq.com