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

1 VLAN间通信之单臂路由

1.1 问题

1)如图配置PC和路由器的接口IP地址

2)在R1上配置单臂路由,实现 PC1/2 之间的互通

1.2 方案

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

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

1.3 步骤

[hidecontent type=”payshow”]

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

步骤一:配置交换机

  1. [SW1]vlan batch 10 20
  2. [SW1]interface eth0/0/1
  3. [SW1Ethernet0/0/1]port linktype access
  4. [SW1Ethernet0/0/1]port default vlan 10
  5. [SW1]interface eth0/0/2
  6. [SW1Ethernet0/0/2]port linktype access
  7. [SW1Ethernet0/0/2]port default vlan 20
  8. [SW1]interface g0/0/1
  9. [HuaweiGigabitEthernet0/0/1]port linktype trunk
  10. [HuaweiGigabitEthernet0/0/1]port trunk allowpass vlan 10 20

步骤二:配置路由器

  1. [R1]interface g0/0/1.1
  2. [R1GigabitEthernet0/0/1.1]dot1q termination vid 10
  3. [R1GigabitEthernet0/0/1.1]ip address 10.10.0.1 24
  4. [R1GigabitEthernet0/0/1.1]arp broadcast enable
  5. [R1GigabitEthernet0/0/1.1]interface g0/0/1.2
  6. [R1GigabitEthernet0/0/1.2]dot1q termination vid 20
  7. [R1GigabitEthernet0/0/1.2]ip address 10.20.0.1 24
  8. [R1GigabitEthernet0/0/1.2]arp broadcast enable

步骤三:测试

使用ping命令测试,如图-2所示。

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

2 VLAN间通信之三层交换机

2.1 问题

1)如图配置PC的IP地址

2)将SW3配置为每个VLAN的网关

3)实现不同PC之间的互通

2.2 方案

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

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

2.3 步骤

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

1)在SW1/2/3配置vlan的相关配置

  1. [SW1]vlan batch 1 2 3 4 5
  2. [SW1]interface Ethernet0/0/1
  3. [SW1Ethernet0/0/1]port linktype access
  4. [SW1Ethernet0/0/1]port default vlan 1
  5. [SW1]interface Ethernet0/0/2
  6. [SW1Ethernet0/0/2]port linktype access
  7. [SW1Ethernet0/0/2]port default vlan2
  8. [SW1]interface Ethernet0/0/3
  9. [SW1Ethernet0/0/3]port linktype access
  10. [SW1Ethernet0/0/3]port default vlan3
  11. [SW1]interface g0/0/1
  12. [SW1GigabitEthernet0/0/1]port linktype trunk
  13. [SW1GigabitEthernet0/0/1]port trunk allowpass vlan all
  14. [SW2]vlan batch 1 2 3 4 5
  15. [SW2]interface Ethernet0/0/4
  16. [SW2Ethernet0/0/4]port linktype access
  17. [SW2Ethernet0/0/4]port default vlan4
  18. [SW2]interface Ethernet0/0/5
  19. [SW2Ethernet0/0/5]port linktype access
  20. [SW2Ethernet0/0/5]port default vlan5
  21. [SW2]interface g0/0/2
  22. [SW2GigabitEthernet0/0/2]port linktype trunk
  23. [SW2GigabitEthernet0/0/2]port trunk allowpass vlan all
  24. [SW3]vlan batch 1 2 3 4 5
  25. [SW3]interface g0/0/1
  26. [SW3GigabitEthernet0/0/1]port linktype trunk
  27. [SW3GigabitEthernet0/0/1]port trunk allowpass vlan all
  28. [SW3]interface g0/0/2
  29. [SW3GigabitEthernet0/0/2]port linktype trunk
  30. [SW3GigabitEthernet0/0/2]port trunk allowpass vlan all

2)配置三层交换机 SW3 的 vlanif 接口

  1. [SW3]int Vlanif 1
  2. [SW3Vlanif1]ip add 192.168.1.254 24
  3. [SW3Vlanif1]quit
  4. [SW3]int Vlanif 2
  5. [SW3Vlanif2]ip add 192.168.2.254 24
  6. [SW3Vlanif2]quit
  7. [SW3]int Vlanif 3
  8. [SW3Vlanif3]ip add 192.168.3.254 24
  9. [SW3Vlanif3]quit
  10. [SW3]int Vlanif4
  11. [SW3Vlanif4]ip add 192.168.4.254 24
  12. [SW3Vlanif4]quit
  13. [SW3]int Vlanif5
  14. [SW3Vlanif5]ip add 192.168.5.254 24
  15. [SW3Vlanif5]quit

3)配置PC的IP地址,并测试PC间的互通性

3 VLANIF 案例实践

3.1 问题

1)不同的VLAN属于不同的网段,如 192.168.x.0/24(X为 vlan 号)

2)VLAN 中的主机IP地址为 192.168.X.Y/24,网关为 192.168.x.254/24(Y是主机的号码)

3)根据实际需求,添加额外的网段,实现不同VLAN之间的设备互通

3.2 方案

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

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

3.3 步骤

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

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

2)配置交换机的基本信息(SW1/2/3/4/5都配置)

  • 创建 vlan 10\20\30\40
  • 交换机之间的链路都配置为Trunk,并允许所有的VLAN
  • 交换机与PC之间的链路配置为Access,并加入到正确的VLAN

3)在三层交换机上配置每个VLAN的网关接口和路由,实现不同网段互通

  1. SW1:
  2. interface vlanif 10
  3. ip address 192.168.10.254 24
  4. quit
  5. vlan 12
  6. quit
  7. interface vlanif 12
  8. ip address 192.168.12.1 24
  9. quit
  10. ip routestatic 192.168.20.0 24 192.168.12.2
  11. ip routestatic 192.168.30.0 24 192.168.12.2
  12. ip routestatic 192.168.40.0 24 192.168.12.2
  13. SW2:
  14. interface vlanif 20
  15. ip address 192.168.20.254
  16. quit
  17. vlan 12
  18. quit
  19. interface vlanif 12
  20. ip address 192.168.12.2 24
  21. quit
  22. ip routestatic 192.168.10.0 24 192.168.12.1
  23. vlan 23
  24. quit
  25. interface vlanif 23
  26. ip address 192.168.23.2 24
  27. quit
  28. ip routestatic 192.168.30.0 24 192.168.23.3
  29. ip routestatic 192.168.40.0 24 192.168.23.3
  30. SW3:
  31. interface vlanif 30
  32. ip address 192.168.30.254 24
  33. quit
  34. interface vlanif 40
  35. ip address 192.168.40.254 24
  36. quit
  37. vlan 23
  38. quit
  39. interface vlanif 23
  40. ip address 192.168.23.3 24
  41. quit
  42. ip routestatic 192.168.10.0 24 192.168.23.2
  43. ip routestatic 192.168.20.0 24 192.168.23.2

4)测试PC间互通

4 配置默认路由

4.1 问题

配置设备的接口IP地址,并通过配置静态路由和默认路由,实现全网设备互通

4.2 方案

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

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

4.3 步骤

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

1)配置PC的IP地址和网关

2)保持交换机SW1/2的默认配置不变

3)配置R1/R2/R3的接口IP地址

4)配置R1/R2/R3的路由条目

  1. [R1] ip routestatic 0.0.0.0 0 192.168.2.2
  2. [R2] ip routestatic 192.168.1.0 24 192.168.2.1
  3. [R2] ip routestatic 192.168.4.0 24 192.168.3.2
  4. [R3] ip routestatic 0.0.0.0 0 192.168.3.1

5)测试PC1和PC2之间的连通性

5 路由网综合案例

5.1 问题

1)如图配置不同PC的IP地址和网关

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

3)每个 VLAN内的主机的网关IP地址为 192.168.XX.254,XX为 vlan 号

4)确保不同网段的PC是可以互通的

5.2 方案

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

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

5.3 步骤

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

1)配置PC的IP地址和网关

2) 配置SW1/5/6的vlan为10/20/30,交换机之间的链路为Trunk,与PC间为Access

3)配置SW2/3/7的vlan为40/50,交换机之间的链路为Trunk,与PC间为Access

4) 配置SW4/8/9的vlan为60/70/80,交换机之间的链路为Trunk,与PC间为Access

5)配置R1/R2/R3的接口IP地址

6)配置每个 VLAN 的网关接口IP地址

  1. SW1为vlan10/20/30的网关设备:
  2. interface vlanif 10
  3. ip address 192.168.10.254 24
  4. quit
  5. interface vlanif 20
  6. ip address 192.168.20.254 24
  7. quit
  8. interface vlanif 30
  9. ip address 192.168.30.254 24
  10. quit
  11. SW2为 vlan 40 的网关:
  12. interface vlanif 40
  13. ip address 192.168.40.254 24
  14. quit
  15. SW3为 vlan 50 的网关:
  16. interface vlanif 50
  17. ip address 192.168.50.254 24
  18. quit
  19. R3的 gi0/0/0为 vlan60/70/80 的网关:
  20. interface gi0/0/0.60
  21. dot1q termination vid 60
  22. arp broadcast enable
  23. ip address 1921.68.60.254 24
  24. quit
  25. interface gi0/0/0.70
  26. dot1q termination vid 70
  27. arp broadcast enable
  28. ip address 1921.68.70.254 24
  29. quit
  30. interface gi0/0/0.80
  31. dot1q termination vid 80
  32. arp broadcast enable
  33. ip address 1921.68.80.254 24
  34. quit

7)在SW1与R1之间添加 vlan 100,实现两者互通

  1. SW1:
  2. vlan 100
  3. quit
  4. interface gi0/0/1
  5. port linktype access
  6. port default vlan 100
  7. quit
  8. interface vlanif 100
  9. ip address 192.168.100.100 24
  10. quit
  11. ip routestatic 0.0.0.0 0 192.168.100.1
  12. R1:
  13. interface gi0/0/0
  14. ip address 192.168.100.1 24
  15. quit
  16. ip routestatic 192.168.10.0 24 192.168.100.100
  17. ip routestatic 192.168.20.0 24 192.168.100.100
  18. ip routestatic 192.168.30.0 24 192.168.100.100
  19. ip routestatic 192.168.40.0 24 192.168.12.2
  20. ip routestatic 192.168.50.0 24 192.168.12.2
  21. ip routestatic 192.168.60.0 24 192.168.12.2
  22. ip routestatic 192.168.70.0 24 192.168.12.2
  23. ip routestatic 192.168.80.0 24 192.168.12.2

8)在SW2与R2之间添加 vlan 400,实现两者互通

  1. SW2:
  2. vlan 400
  3. quit
  4. interface gi0/0/1
  5. port linktype access
  6. port default vlan 400
  7. quit
  8. interface vlanif 400
  9. ip address 192.168.200.3 24
  10. quit
  11. ip routestatic 0.0.0.0 0 192.168.200.2
  12. R2:
  13. interface gi0/0/0
  14. ip address 192.168.200.2 24
  15. quit
  16. ip routestatic 192.168.40.0 24 192.168.200.3

9)在SW3与R2之间添加 vlan 500,实现两者互通

  1. SW3:
  2. vlan 500
  3. quit
  4. interface gi0/0/1
  5. port linktype access
  6. port default vlan 500
  7. quit
  8. interface vlanif 500
  9. ip address 192.168.255.3 24
  10. quit
  11. ip routestatic 0.0.0.0 0 192.168.255.2
  12. R2:
  13. interface gi4/0/0
  14. ip address 192.168.255.2 24
  15. quit
  16. ip routestatic 192.168.50.0 24 192.168.255.3
  17. ip routestatic 192.168.10.0 24 192.168.12.1
  18. ip routestatic 192.168.20.0 24 192.168.12.1
  19. ip routestatic 192.168.30.0 24 192.168.12.1
  20. ip routestatic 192.168.60.0 24 192.168.23.3
  21. ip routestatic 192.168.70.0 24 192.168.23.3
  22. ip routestatic 192.168.80.0 24 192.168.23.3

10)在R3上配置路由条目信息,实现与其他PC所在的网段的互通

  1. ip routestatic 192.168.10.0 24 192.168.23.2
  2. ip routestatic 192.168.20.0 24 192.168.23.2
  3. ip routestatic 192.168.30.0 24 192.168.23.2
  4. ip routestatic 192.168.40.0 24 192.168.23.2
  5. ip routestatic 192.168.50.0 24 192.168.23.2
  6. ip routestatic 192.168.60.0 24 192.168.23.2

11)测试不同网段的PC之间的连通性

[/hidecontent]

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

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

2021-12-23 15:16:01

华为数通

子网划分原理 、 子网划分综合案例 、 IP汇总原理 、 综合布线系统介绍 、 中小型企业网络组网方案 、 IP汇总综合案例

2021-12-23 15:19:35

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