当前位置:首页 > wifi设置知识 > 正文内容

如何实现同一路由器不同vlan之间的通信(高质量推荐)

秋天2023年10月30日 06:14:58wifi设置知识124
本文将介绍如何实现同一路由器不同vlan之间的通信 ,并提供一些实用的技巧和解决方案,帮助您解决相关问题。

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

1.单臂路由(图)

环境:一台路由器,一台二层交换机,两台pc机

如何实现同一路由器不同vlan之间的通信(高质量推荐)

二层交换机的配置

一般模式:

Switch>

输入enable进入特权模式:

Switch>enable

输入configure terminal进入全局配置模式:

Switch#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

创建vlan 10 和 vlan 20:

Switch(config)#vlan 10

Switch(config-vlan)#vlan 20

Switch(config-vlan)# exit

进入接口配置模式:

Switch(config)#interface fastEthernet 0/1

把0/1变成trunk口(默认是access口)

Switch(config-if)#switchport mode trunk

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

Switch(config-if)#exit

进入接口配置模式分别把对应的接口,加入对应的vlan:

Switch(config)#interface fastEthernet 1/1

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 10

Switch(config-if)#interface fastEthernet 2/1

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 20

到此而层交换机配置完毕!

路由器的配置:

Router>

Router>enable

Router#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Router(config)#inter fas 0/0

Router(config-if)#no ip address

Router(config-if)#no shutdown

注意:单臂路由的配置父接口一定要no shutdown

%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

Router(config-if)#exit

Router(config)#int fas 0/0.10

%LINK-5-CHANGED: Interface FastEthernet0/0.10, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.10, changed state to up

Router(config-subif)#encapsulation dot1Q 10

注意:在配置ip时一定要先封装802.1q协议

Router(config-subif)#ip address 192.168.10.1 255.255.255.0

Router(config-subif)#no shutdown

Router(config-subif)#int fas 0/0.20

%LINK-5-CHANGED: Interface FastEthernet0/0.20, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.20, changed state to up

Router(config-subif)#ip address 192.168.20.1 255.255.255.0

% Configuring IP routing on a LAN subinterface is only allowed if that

subinterface is already configured as part of an IEEE 802.10, IEEE 802.1Q,

or ISL vLAN.

Router(config-subif)#encapsulation dot1Q 20

Router(config-subif)#ip address 192.168.20.1 255.255.255.0

Router(config-subif)#no shutdown

Router(config-subif)#

查看路由表:

Router#show ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

C 192.168.10.0/24 is directly connected, FastEthernet0/0.10

C 192.168.20.0/24 is directly connected, FastEthernet0/0.20

Router#

PC0的配置:

ip 192.168.10.10

netmask 255.255.255.0

gateway 192.168.10.1

PC1的配置:

ip 192.168.20.20

netmask 255.255.255.0

gateway 192.168.20.1

2.使用SVI实现VLAN间的通信(图)

环境:一台三层交换机,两台pc机

三层交换机的配置:

Switch>enable

Switch#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

创建vlan 10 20

Switch(config)#vlan 10

Switch(config-vlan)#vlan 20

Switch(config-vlan)#exit

配置SVI接口ip

Switch(config)#interface vlan 10

%LINK-5-CHANGED: Interface Vlan10, changed state to up

Switch(config-if)#ip address 192.168.10.1 255.255.255.0

Switch(config-if)#no shutdown

Switch(config-if)#interface vlan 20

%LINK-5-CHANGED: Interface Vlan20, changed state to up

Switch(config-if)#ip address 192.168.20.1 255.255.255.0

Switch(config-if)#no shutdown

Switch(config-if)#exit

改变接口模式并加入vlan

Switch(config)#interface fastEthernet 0/1

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 10

%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan10, changed state to up

Switch(config-if)#interface fastEthernet 0/2

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 20

%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan20, changed state to up

Switch(config-if)#

看三层交换机的路由表:

Switch#show ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

C 192.168.10.0/24 is directly connected, Vlan10

C 192.168.20.0/24 is directly connected, Vlan20

Switch#

两主机的配置与单臂路由中两主机的配置一样

3.跨交换机实现VLAN间的通信(图)

环境:一台三层交换机,两台二层交换机,两台pc机

三层交换机的配置(SW3)

Switch>enable

Switch#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

创建vlan 10 、 20 并设置ip

Switch(config)#vlan 10

Switch(config-vlan)#vlan 20

Switch(config-vlan)#exit

Switch(config)#interface vlan 10

%LINK-5-CHANGED: Interface Vlan10, changed state to up

Switch(config-if)#ip address 192.168.10.1 255.255.255.0

Switch(config-if)#no shutdown

Switch(config-if)#interface vlan 20

%LINK-5-CHANGED: Interface Vlan20, changed state to up

Switch(config-if)#ip address 192.168.20.1 255.255.255.0

Switch(config-if)#no shutdown

Switch(config-if)#exit

设置接口模式并加入相应的vlan(注意trunk口的设置)

Switch(config)#interface fastEthernet 0/1

Switch(config-if)#switchport mode trunk

Switch(config-if)#interface fastEthernet 0/1

Switch(config-if)#switchport access vlan 10

%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan10, changed state to up

Switch(config)#interface fastEthernet 0/2

Switch(config-if)#switchport mode trunk

Switch(config-if)#interface fastEthernet 0/2

Switch(config-if)#switchport access vlan 20

%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan20, changed state to up

Switch#

看路由表

Switch#show ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

C 192.168.10.0/24 is directly connected, Vlan10

C 192.168.20.0/24 is directly connected, Vlan20

SW21的配置

Switch>enable

Switch#configure terminal

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#vlan 10

Switch(config-vlan)#exit

Switch(config)#interface fastEthernet 0/1

Switch(config-if)#switchport mode trunk

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up

Switch(config-if)#interface fastEthernet 1/1

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 10

Switch(config-if)#exit

Switch(config)#

SW22的配置

Switch>

Switch>en

Switch#

Switch#configure ter

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#inter fas 1/1

Switch(config-if)#switchport mode trunk

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet1/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet1/1, changed state to up

Switch(config-if)#switchport mode access

Switch(config-if)#inter fas 2/1

Switch(config-if)#switchport mode trunk

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet2/1, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet2/1, changed state to up

Switch(config-if)#exit

Switch(config)#vlan 20

Switch(config-vlan)#inter fas 1/1

Switch(config-if)#switchport access vlan 20

Switch(config-if)#

注意:两交换机之间的链接是trunk链路

4.以上配置在模拟器上都可实现

在模拟器上配置其中pc图片

上述三种方式pc机的配置都一样


二、不同vlan之间如何通信

不同的vlan想要进行通信必须要用到三层设备才能实现vlan间的互访,比如路由器或三层交换机。

路由器就做vlan间路由,三层交换机中只需要在不同的vlan上配置了网关。

如果是二层交换机,可以另外借助一台路由器,做单臂路由;如果是三层交换机,直接开启三层交换功能,思科的话需要全局配置模式下手动开iprouting,华为或者其他思科风格的交换机应该默认开启的。

\x0d\x0a更多关于不同vlan之间如何通信,进入:https://www.abcgonglue.com/ask/17dbc61615823496.html?zd查看更多内容

~了解这些路由器和无线网络的技巧和方法可以让您更好地掌控您的网络,从而享受更好的上网体验。

扫描二维码推送至手机访问。

版权声明:本文由路由设置网发布,如需转载请注明出处。

本文链接:https://www.shoulian.org/luyou/post/110503.html

分享给朋友:

“如何实现同一路由器不同vlan之间的通信(高质量推荐)” 的相关文章

路由器怎么离线下载

路由器怎么离线下载

针对路由器怎么离线下载这个问题,本文将综合不同朋友对这个路由器离线怎么办的知识为大家一起来解答,希望能帮到大家 本文内容目录一览: 1、路由器离线怎么办? 2、路由器离线了怎么办? 3、华硕路由器AC68U是否有软件支持迅雷离线下载?如题 谢谢了 路由器离线怎么办? 路由器离线解决方法如下...

5款中高端路由器有哪些

5款中高端路由器有哪些

当朋友们看到这个文章时想必是想要了解5款中高端路由器有哪些相关的知识,这里同时多从个角度为大家介绍中高端路由器推荐相应的内容。 本文内容目录一览:5款中高端路由器有哪些的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于中高端路由器推荐、5款中高端路由器有哪些的信息别忘了在本站进行查找喔。...

光纤路由器怎么桥接

光纤路由器怎么桥接

今天和朋友们分享光纤路由器怎么桥接相关的知识,相信大家通过本文介绍也能对电信光纤路由器怎么桥接无线路由器有自已的收获和理解。自己轻松搞问题。本文内容目录一览:光纤路由器怎么桥接的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于电信光纤路由器怎么桥接无线路由器、光纤路由器怎么桥接的信息别忘了在本站...

水星路路由器怎么调试

水星路路由器怎么调试

今天给各位分享水星路路由器怎么调试的知识,其中也会对水星路路由器怎么调试设置进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站 本文内容目录一览: 1、水星路由器设置方法 2、水星路由器怎么设置? 3、水星路由器设置教程 4、水星路由器如何设置 5、水星无线路由器怎么设置?...

怎么使路由器信号强大

怎么使路由器信号强大

有很多朋友不知道怎么使路由器信号强大要如何操作,今天为大家整理了很多怎样让路由器信号强相关的答案,组成一篇内容丰富的文章,希望能到您 本文内容目录一览: 1、如何让路由器信号增强 2、怎么可以让wifi信号变强 3、家里的wifi信号弱怎么增强 4、怎么让wifi信号变强 5、路由器...

apn和路由器怎么设置

apn和路由器怎么设置

今天和朋友们分享apn和路由器怎么设置相关的知识,相信大家通过本文介绍也能对ap路由怎么设置?有自已的收获和理解。自己轻松搞问题。本文内容目录一览: 1、请教一下iPhone11的APN在哪里设置?系统13.1.3。买了张电信的物联卡,好像说要设置了才行 2、路由器接入点如何设置 3、apn...