Eth-Trunk案例实践 、 Eth-Trunk配置 、 Eth-Trunk原理 、 Mux VLAN 配置 、 端口隔离原理与配置 、 Mux VLAN 原理

1 配置静态 Eth-trunk

1.1 问题

1)交换网络中存在2个 VLAN – 10 和 20

2)每个VLAN的IP地址为:192.168.xx.0/24(xx为 vlan 号)

3)对交换机之间的链路进行链路捆绑,增加互联带宽

4)确保同 VLAN的 PC 之间互通

1.2 方案

使用eNSP搭建实验环境,如图-1所示。

Eth-Trunk案例实践 、 Eth-Trunk配置 、 Eth-Trunk原理 、 Mux VLAN 配置 、 端口隔离原理与配置 、 Mux VLAN 原理图-1

1.3 步骤

[hidecontent type=”payshow”]

实现此案例需要按照如下步骤进行。

1)如图配置PC的IP地址

2)在SW1/2配置基本信息

  • 创建 vlan 10 和 20
  • 配置交换机与PC之间的链路为 Access,并加入到正确的 VLAN

3)对SW1/2之间的链路进行链路捆绑

  1. [SW1]interface ethtrunk 1
  2. [SW1EthTrunk1]mode manual loadbalance
  3. [SW1EthTrunk1]trunkport g0/0/1
  4. [SW1EthTrunk1]trunkport g0/0/2
  5. [SW1EthTrunk1]quit
  6. [SW2]interface ethtrunk 1
  7. [SW2EthTrunk1]mode manual loadbalance
  8. [SW2EthTrunk1]trunkport g0/0/1
  9. [SW2EthTrunk1]trunkport g0/0/2
  10. [SW2EthTrunk1]quit

4)显示Eth-Trunk信息,如图-2所示

Eth-Trunk案例实践 、 Eth-Trunk配置 、 Eth-Trunk原理 、 Mux VLAN 配置 、 端口隔离原理与配置 、 Mux VLAN 原理图-2

5)把 Eth-trunk 配置为 Trunk

  1. [SW1]interface ethtrunk 1
  2. [SW1EthTrunk1]port linktype trunk
  3. [SW1EthTrunk1]port trunk allowpass vlan all
  4. [SW1EthTrunk1]quit

2 配置动态Eth-trunk

2.1 问题

1)交换机之间的多个链路通过 LACP 协议自动捆绑

2)配置 SW2 为 LACP 的主动端,优先级设置为100、

3)交换机之间的最大连接带宽为2G

2.2 方案

使用eNSP搭建实验环境,如图-3所示。

Eth-Trunk案例实践 、 Eth-Trunk配置 、 Eth-Trunk原理 、 Mux VLAN 配置 、 端口隔离原理与配置 、 Mux VLAN 原理图-3

2.3 步骤

实现此案例需要按照如下步骤进行。

1)如图配置PC的接口IP地址

2)在SW1/2上配置基本信息

  • 创建 vlan 10 和 20
  • 配置交换机与PC之间的链路为 Access,并加入到正确的 VLAN

3)对SW1/2之间的链路进行捆绑

  1. [SW1]interface ethtrunk 1
  2. [SW1EthTrunk1]mode lacpstatic
  3. [SW1EthTrunk1]trunkport g0/0/1
  4. [SW1EthTrunk1]trunkport g0/0/2
  5. [SW1EthTrunk1]trunkport g0/0/3

4)配置sw2 eth-trunk的主动端,优先级为100

  1. [SW2]lacp priority 100

5)配置最大带宽为2G,并开启 LACP的抢占功能

  1. [sw2EthTrunk1]max activelinknumber 2
  2. [sw2EthTrunk1]lacp preempt enable

6)把 Eth-trunk 配置为 Trunk(SW1/2都要配置)

  1. [SW2]interface ethtrunk 1
  2. [SW2EthTrunk1]port linktype trunk
  3. [SW2EthTrunk1]port trunk allowpass vlan all
  4. [SW2EthTrunk1]quit

3 链路聚合综合实战

3.1 问题

1) PC1和PC2属于 vlan 12,网段为 192.168.12.0/24,网关IP为:192.168.12.254

2) PC3和PC4属于 vlan 34,网段为 192.168.34.0/24,网关IP为:192.168.34.254

3)确保设备之间的互联链路使用最大的互联带宽,并且没有环路发生

4)确保不同的PC之间可以互通

3.2 方案

使用eNSP搭建实验环境,如图-4所示。

Eth-Trunk案例实践 、 Eth-Trunk配置 、 Eth-Trunk原理 、 Mux VLAN 配置 、 端口隔离原理与配置 、 Mux VLAN 原理图-4

3.3 步骤

实现此案例需要按照如下步骤进行。

1)路由器配置 r1、r2

每个路由器上各建两个eth-trunk端口,分别连接路由器和三层交换机,并配置路由

  1. R1:
  2. interface ethtrunk 7
  3. undo portswitch –> 关闭2层功能,开启三层IP地址功能
  4. mode lacpstatic
  5. trunkport gi0/0/0
  6. trunkport gi0/0/1
  7. ip address 192.168.12.1 24
  8. quit
  9. interface ethtrunk 1
  10. undo portswitch –> 关闭2层功能,开启三层IP地址功能
  11. mode lacpstatic
  12. trunkport gi2/0/1
  13. trunkport gi2/0/2
  14. ip address 192.168.10.254 24
  15. quit
  16. ip routestatic 192.168.20.0 24 192.168.12.2
  17. R2:
  18. interface ethtrunk 7
  19. undo portswitch –> 关闭2层功能,开启三层IP地址功能
  20. mode lacpstatic
  21. trunkport gi0/0/0
  22. trunkport gi0/0/1
  23. ip address 192.168.12.2 24
  24. quit
  25. interface ethtrunk 2
  26. undo portswitch –> 关闭2层功能,开启三层IP地址功能
  27. mode lacpstatic
  28. trunkport gi2/0/1
  29. trunkport gi2/0/2
  30. ip address 192.168.20.254 24
  31. quit
  32. ip routestatic 192.168.10.0 24 192.168.12.1

2)配置三层交换机 sw1/3/4

在交换机上创建 vlan ,并将设备之间的链路进行捆绑,并配置为 Trunk

  1. [sw1]vlan 10
  2. [sw3]vlan 10
  3. [sw4]vlan 10
  4. [sw1]interface EthTrunk 1
  5. [sw1EthTrunk1]mode lacpstatic
  6. [sw1EthTrunk1]trunkport g0/0/1
  7. [sw1EthTrunk1]trunkport g0/0/2
  8. [sw1EthTrunk1]port linktype access
  9. [sw1EthTrunk1]port default vlan 10
  10. [sw1EthTrunk1]quit
  11. [sw1]interface EthTrunk 12
  12. [sw1EthTrunk12]mode lacpstatic
  13. [sw1EthTrunk12]trunkport g0/0/3
  14. [sw1EthTrunk12]trunkport g0/0/4
  15. [sw1EthTrunk12]port linktype trunk
  16. [sw1EthTrunk12]port trunk allowpass vlan all
  17. [sw1EthTrunk12]quit
  18. [sw1]interface EthTrunk 14
  19. [sw1EthTrunk14]mode lacpstatic
  20. [sw1EthTrunk14]trunkport g0/0/5
  21. [sw1EthTrunk14]trunkport g0/0/6
  22. [sw1EthTrunk14]port linktype trunk
  23. [sw1EthTrunk14]port trunk allowpass vlan all
  24. [sw1EthTrunk14]quit
  25. [sw3]interface EthTrunk 13
  26. [sw3EthTrunk13]mode lacpstatic
  27. [sw3EthTrunk13]trunkport g0/0/3
  28. [sw3EthTrunk13]trunkport g0/0/4
  29. [sw3EthTrunk13]port linktype trunk
  30. [sw3EthTrunk13]port trunk allowpass vlan all
  31. [sw3EthTrunk13]quit
  32. [sw4]interface EthTrunk 14
  33. [sw4EthTrunk14]mode lacpstatic
  34. [sw4EthTrunk14]trunkport g0/0/5
  35. [sw4EthTrunk14]trunkport g0/0/6
  36. [sw4EthTrunk14]port linktype trunk
  37. [sw4EthTrunk14]port trunk allowpass vlan all
  38. [sw4EthTrunk14]quit

3)配置二层交换机 sw2、sw5、sw6

在交换机上创建 vlan ,并将设备之间的链路进行捆绑,并配置为 Trunk

  1. [sw2]vlan 20
  2. [sw5]vlan 20
  3. [sw6]vlan 20
  4. [sw2]interface EthTrunk 1
  5. [sw2EthTrunk1]mode lacpstatic
  6. [sw2EthTrunk1]trunkport g0/0/1
  7. [sw2EthTrunk1]trunkport g0/0/2
  8. [sw2EthTrunk1]port linktype access
  9. [sw2EthTrunk1]port default vlan 20
  10. [sw2EthTrunk1]quit
  11. [sw2]interface EthTrunk 25
  12. [sw2EthTrunk25]mode lacpstatic
  13. [sw2EthTrunk25]trunkport g0/0/3
  14. [sw2EthTrunk25]trunkport g0/0/4
  15. [sw2EthTrunk25]port linktype trunk
  16. [sw2EthTrunk25]port trunk allowpass vlan all
  17. [sw2EthTrunk25]quit
  18. [sw2]interface EthTrunk 26
  19. [sw2EthTrunk26]mode lacpstatic
  20. [sw2EthTrunk26]trunkport g0/0/5
  21. [sw2EthTrunk26]trunkport g0/0/6
  22. [sw2EthTrunk26]port linktype trunk
  23. [sw2EthTrunk26]port trunk allowpass vlan all
  24. [sw2EthTrunk26]quit
  25. [sw5]interface EthTrunk 25
  26. [sw5EthTrunk25]mode lacpstatic
  27. [sw5EthTrunk25]trunkport g0/0/3
  28. [sw5EthTrunk25]trunkport g0/0/4
  29. [sw5EthTrunk25]port linktype trunk
  30. [sw5EthTrunk25]port trunk allowpass vlan all
  31. [sw5EthTrunk25]quit
  32. [sw6]interface EthTrunk 26
  33. [sw6EthTrunk26]mode lacpstatic
  34. [sw6EthTrunk26]trunkport g0/0/5
  35. [sw6EthTrunk26]trunkport g0/0/6
  36. [sw6EthTrunk26]port linktype trunk
  37. [sw6EthTrunk26]port trunk allowpass vlan all
  38. [sw6EthTrunk26]quit

4)如图配置PC机的IP地址

5)测试不同PC之间的互通性

4 Mux Vlan综合案例

4.1 问题

1)VLAN 100 是主 vlan ,vlan 200和 300 是辅助 vlan

2)VLAN 200 是隔离vlan, VLAN 300 是组 vlan

3)PC1/2属于 vlan 200,PC3/4 属于 vlan 300

4)确保 PC1/2 与 PC3/4 不能互相访问,但是都可以访问 Server1

5)配置每个设备的IP地址,如图所示

4.2 方案

使用eNSP搭建实验环境,如图-5所示。

Eth-Trunk案例实践 、 Eth-Trunk配置 、 Eth-Trunk原理 、 Mux VLAN 配置 、 端口隔离原理与配置 、 Mux VLAN 原理图-5

4.3 步骤

实现此案例需要按照如下步骤进行。

1)如图配置 PC 、Server1 和 R1 的接口IP地址

2)配置 SW1 的 Mux Vlan 功能

  1. SW1:
  2. vlan batch 100 200 300
  3. vlan 100
  4. muxvlan
  5. subordinate group 300
  6. subordinate seperate 200
  7. quit
  8. portgroup groupmember gi0/0/1 gi0/0/2
  9. port link access
  10. port default vlan 200
  11. port muxvlan enable // 端口启用 mux vlan 功能
  12. quit
  13. portgroup groupmember gi0/0/3 gi0/0/4
  14. port link access
  15. port default vlan 300
  16. port muxvlan enable // 端口启用 mux vlan 功能
  17. quit
  18. interface gi0/0/10 // 端口加入主 vlan
  19. port link access
  20. port default vlan 100
  21. port muxvlan enable
  22. quit

3)测试 PC 与 Server1 之间的通信

5 端口隔离 综合案例

5.1 问题

1)PC1/2/3/4都属于同一个 VLAN 100

2)IP地址所在网段为 192.168.100.0/24,网关地址为 192.168.100.254

3)PC1/2不能互相访问,但是都可以访问 PC3/4

4)同时,所有的PC都可以访问 Server1

5.2 方案

使用eNSP搭建实验环境,如图-6所示。

Eth-Trunk案例实践 、 Eth-Trunk配置 、 Eth-Trunk原理 、 Mux VLAN 配置 、 端口隔离原理与配置 、 Mux VLAN 原理图-6

5.3 步骤

实现此案例需要按照如下步骤进行。

1)如图配置 PC 、R1、Server1的IP地址和网关

2)在SW1上配置端口隔离

  1. vlan 100
  2. quit
  3. portgroup groupmember gi0/0/1 to gi0/0/5
  4. port link access
  5. port default vlan 100
  6. quit
  7. portgroup groupmember gi0/0/1 gi0/0/2
  8. portisolate enable group 1 -> 开启端口隔离,并加入组1
  9. quit

3)测试 PC 与 Server1 之间的连通性

[/hidecontent]

给TA打赏
共{{data.count}}人
人已打赏
华为数通

MSTP配置案例 、 MSTP负载均衡 、 MSTP工作原理 、 STP工作原理 、 STP高级配置 、 交换网路径选择

2021-12-23 15:15:21

华为数通

路由网故障排查 、 VLAN间通信之路由器 、 VLAN间通信之案例实践 、 VLAN间通信之交换机 、 路由网综合案例 、 特殊路由之默认路由

2021-12-23 15:17:36

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索