华为复合vlan(mux vlan)

一、概念:

Multiplex vlan:实现网络资源控制的的机制。

/ Principle vlan:port 可以和mux vlan内所有接口进行通信,限制128个

< /Separate vlan:隔离型从vlan,只能和Principal port进行通信,限制1个

\ Subordinate vlan <

\ Group vlan:互通型从vlan,和Principal port、同一接口组内通信,128

二、配置举例:

例:vlan10为Principle vlan,20为Separate vlan,30为Group vlan;

1口为vlan10,2、3口为vlan20,配置为群组vlan,3、4口为vlan30,配置为分隔vlan:

vlan batch 10 20 30
#
vlan 10
 subordinate group 20
 subordinate separate 30
#
int G0/0/1
 port link-type access
 port default vlan 10
 port mux-vlan enable vlan 10
#
int G0/0/2
 port link-type access
 port default vlan 20
 port mux-vlan enable vlan 20
#
int G0/0/3
 port link-type access
 port default vlan 20
 port mux-vlan enable vlan 20
#
int G0/0/4
 port link-type access
 port default vlan 30
 port mux-vlan enable vlan 30
#
int G0/0/5
 port link-type access
 port default vlan 30
 port mux-vlan enable vlan 30
#

检查结果:1、2、3口二层互通,4、5口二层互不通但和1通

相关推荐
勤奋的凯尔森同学39 分钟前
webmin配置终端显示样式,模仿UbuntuDesktop终端
linux·运维·服务器·ubuntu·webmin
丁卯4042 小时前
Go语言中使用viper绑定结构体和yaml文件信息时,标签的使用
服务器·后端·golang
chengooooooo2 小时前
苍穹外卖day8 地址上传 用户下单 订单支付
java·服务器·数据库
人间打气筒(Ada)3 小时前
MySQL主从架构
服务器·数据库·mysql
落笔画忧愁e4 小时前
FastGPT快速将消息发送至飞书
服务器·数据库·飞书
小冷爱学习!4 小时前
华为动态路由-OSPF-完全末梢区域
服务器·网络·华为
技术小齐5 小时前
网络运维学习笔记 016网工初级(HCIA-Datacom与CCNA-EI)PPP点对点协议和PPPoE以太网上的点对点协议(此处只讲华为)
运维·网络·学习
打不了嗝 ᥬ᭄5 小时前
Linux的权限
linux
落幕5 小时前
C语言-进程
linux·运维·服务器
深度Linux5 小时前
C++程序员内功修炼——Linux C/C++编程技术汇总
linux·项目实战·c/c++