课题
如下图,需要实现的功能如下:
- 2个交换机的2/3/4口分别对应一个PC和一个设备,要求2<->2/3<->3/4<->4完全对应,不同口之间不允许交叉访问。
- 2个交换机之间不直连,每个交换机的1口对应一个可以做
WDS无线桥接
的无线路由器,1口允许1/2/3/4口的所有数据流出/流入。 - 2个交换机的5/6/7口作为非管理型交换机的功能使用,不需要进行任何
隔离域
的设置。 - 2个交换机的8口作为设备管理口,要求可以通过8口访问到设备以及设置交换机设备的管理页面。
- 路由器需要隐藏wifi。
交换机设置
对应上诉需求,交换机需要做的就是设置VLAN ID
。本次使用的交换机是西门子XC208系列。
-
西门子三层交换机的管理总览:
-
基本设置后(比如IP,设备名,恢复出厂这一类的设置,都是基于二层,没有需要用到三层的设置),在proneta中扫描到的基本信息如下:
-
交换机的管理页面需要做的设置(两边是完全对等的,所以此处只展示一边的设置):
"-":The port is not a member of the specified VLAN.With a new definition, all ports have the identifier "-".
M:The port is a member of the VLAN. Frames sent in this VLAN are forwarded with the corresponding VLAN tag.
R:The port is a member of the VLAN. A GVRP frame is used for the registration.
U (uppercase):The port is an untagged member of the VLAN. Frames sent in this VLAN are forwarded without the VLAN tag. Frames without a VLAN tag are sent from this port.
u (lowercase):The port is an untagged member of the VLAN, but the VLAN is not configured as a port VLAN. Frames sent in this VLAN are forwarded without the VLAN tag.
F:The port is not a member of the specified VLAN and cannot become a member of this VLAN even if it is configured as a trunk port.
T:This option is only displayed and cannot be selected in the WBM.
This port is a trunk port making it a member in all VLANs.
- 从Port口出的时候,为没有VLAN Tag的帧打上特定的VLAN Tag:
Port VID:Select the VLAN ID from the drop-down list. Only VLAN IDs defined on the "VLAN > General" page can be selected.If a received frame does not have a VLAN tag, it has a tag with the VLAN ID specified here added to it and is sent according to the rules at the port.
- 在设置Port VID时会报错,这时候去把MRP关掉就好了:
取消勾选Ring Redundancy.
路由器设置
对于路由器而言,仅需要设置桥接模式
就好了,另外把隐藏wifi功能打开(2.4G和5G的都隐藏)就行。
- 设置桥接模式的时候,路由器
一主一副
,主路由器不用做任何设置,设置在副路由器上。 - 两个路由器都不需要做多余的设置,保持默认设置就可以了。
- 副路由器打开无线桥接,可以扫描搜索,也可以手动搜索,如果先打开了
隐藏无线网络
,就只能手动填写MAC地址和设备名来手动搜索了:
对于支持双频的路由器,虽然2.4G也能用,但是去设置5G无线最好。
- TP link的路由器,如果找不到这个无线桥接的功能,把那些乱七八糟的云管理关闭就好了,如下图:
结果
从Proneta的扫描结果中可以看出来,这次实验基本功能是成功的:
对于VLAN ID的详细验证方法
这里只说方法,如果想看自己的VLAN ID(-UuMFT这些设置)到底是怎么工作的?最好的方法就是设置完毕后用Wireshark抓包看以太网帧,亲自看看实际的ID不是和自己设置的一致!
标签:管理型,VLAN,member,交换机,设置,体验,port,路由器 From: https://www.cnblogs.com/xiacuncun/p/18605503图片仅举例表明VLAN Tag的字段信息,不代表102这个ID是本次实验设置的真实ID。