美文网首页简友广场想法哲思
华为交换机常见VLAN操作整理 第十四天

华为交换机常见VLAN操作整理 第十四天

作者: 大海的成长记录 | 来源:发表于2021-03-20 22:13 被阅读0次

    1、接口加入VLAN

    接口加入VLAN之前,需要在接口上设置对应的链路类型。

    (1)Access接口加入VLAN

    脚本:

    system-view

    interface gigabitethernet 1/0/10

    port link-type access #设置接口的链路类型为Access。

    port default vlan 2 #把接口gigabitethernet 1/0/10加入VLAN 2。

    quit

    (2)Trunk接口加入VLAN

    脚本:

    system-view

    interface gigabitethernet 1/0/10

    port link-type trunk #设置接口的链路类型为trunk。

    port trunk allow-pass vlan 2 #把接口gigabitethernet 1/0/10加入VLAN 2

    quit

    (3)Hybrid接口加入VLAN

    脚本:

    system-view

    interface gigabitethernet 1/0/10

    port link-type hybrid #设置接口的链路类型为hybrid。

    port hybrid tagged vlan 10 #接口gigabitethernet 1/0/10以tagged方式加入vlan 10。

    port hybrid untagged vlan 20 #接口gigabitethernet 1/0/10以untagged方式加入vlan 20。

    quit

    2、批量创建VLAN

    系统视图下执行命令vlan batch,批量创建VLAN。

    批量创建10个连续的VLAN,VLAN5到VLAN15。

    脚本:

    system-view

    vlan batch 5 to 15

    批量创建10个不连续的VLAN,VLAN 16,VLAN 18,VLAN 20,VLAN 25,VLAN 27,VLAN 29到VLAN 33。

    脚本:

    system-view

    vlan batch 16 18 20 25 27 29 to 33

    注意:批量创建不连续的VLAN时,一次最多可以输入10个不连续的VLAN或VLAN段,超过10个可以多次使用该命令进行配置。例如: vlan batch 16 18 20 25 27 29 to 33。

    3、接口批量加入VLAN

    通过端口组可以把接口批量加入VLAN;对于Access接口,还可以在VLAN视图下直接批量将接口加入VLAN。

    (1)access接口类型。

    通过端口组批量将接口加入VLAN。

    脚本:

    system-view

    port-group pg1 #创建端口组pg1。

    group-member gigabitethernet 1/0/10 to gigabitethernet 1/0/15 #把接口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入到端口组。

    port link-type access #批量修改端口gigabitethernet 1/0/10到gigabitethernet 1/0/15的联络类型为access。

    port default vlan 2 #批量把端口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入VLAN 2。

    quit

    在VLAN视图下批量将接口加入VLAN。

    脚本:

    system-view

    vlan 2

    port gigabitethernet 1/0/10 to 1/0/15 #批量把端口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入VLAN 2。

    注意:须先将所有要批量加入VLAN的接口的接口类型配置为access。

    (2)trunk接口类型。

    脚本:

    system-view

    port-group pg1 #创建端口组pg1。

    group-member gigabitethernet 1/0/10 to gigabitethernet 1/0/15 #把接口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入到端口组。

    port link-type trunk #批量修改端口gigabitethernet 1/0/10到gigabitethernet 1/0/15的联络类型为trunk。

    port trunk allow-pass vlan 2 5 #批量把端口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入VLAN 2和VLAN5。

    quit

    (3)hybrid接口类型。

    脚本:

    system-view

    port-group pg1 #创建端口组pg1。

    group-member gigabitethernet 1/0/10 to gigabitethernet 1/0/15 #把接口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入到端口组。

    port link-type hybrid #批量修改端口gigabitethernet 1/0/10到gigabitethernet 1/0/15的联络类型为hybrid。

    port hybrid tagged vlan 2 #批量把端口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入vlan2。

    port hybrid untagged vlan 5 #批量把端口gigabitethernet 1/0/10到gigabitethernet 1/0/15加入vlan5。

    相关文章

      网友评论

        本文标题:华为交换机常见VLAN操作整理 第十四天

        本文链接:https://www.haomeiwen.com/subject/mrjgcltx.html