当前位置:   article > 正文

OSPF 综合实验_ospf综合实验

ospf综合实验

目录

前言

实验要求

实验分析

1.地址规划

2.在R3--R5/R6/R7配置MGRE

3.配置IP地址

4.配置OSPF和RIP

5.重发布

6.路由汇总

7.特殊区域

8.NAT

9.防环,空接口

10.测试验证


前言

如何根据需求完成本次实验?

实验要求

1.R4为ISP,其上只能配置IP地址;R4与其他所有直连设备使用公有IP

2.R3---R5/6/7为MGRE环境,R3为中心站点

3.整个OSPF环境IP地址为172.16.0.0/16

4.所有设备均可访问R4的环回

5.减少LSA的更新量,加快收敛,保障更新安全

6.全网可达

实验分析

1.地址规划

由于OSPF 基于区域汇总,图中有6个区域,因此我们先借三位划分为8个网段

又根据实际需求一个广播域50台主机左右,故子网掩码为25位

  1. 172.16.0.0 /19 ---area 0
  2. 172.16.0.0 /25 172.16.0.128 /25 172.16.1.0 /25 172.16.1.128/25....172.16.31.128
  3. 172.16.0.0 /25 p2p 骨干 172.16.0.0/30 172.16.0.4/30
  4. 172.16.0.128 /25 MA 骨干 172.16.0.128 /29 --MGRE 172.16.0.136/29
  5. 172.16.32.0 /19---area 1
  6. 172.16.64.0 /19--- area 2
  7. 172.16.96.0 /19--- area3
  8. 172.16.128.0 /19---area 4
  9. 172.16.160.0 /19---rip 172.16.160.0/20 172.16.176.0/20
  10. 172.16.192.0 /19
  11. -----备用
  12. 172.16.224.0 /19

2.在R3--R5/R6/R7配置MGRE

R3---R5/6/7为MGRE环境,R3为中心站点,其他为站点找R1注册,默认的接口为P2P,我们需要修改为广播,并在R5/R6/R7修改接口优先级使得DR为R3,并配置缺省

  1. R3:
  2. #
  3. interface LoopBack0
  4. ip address 172.16.34.1 255.255.255.128
  5. #
  6. interface GigabitEthernet0/0/2
  7. ip address 43.1.1.1 255.255.255.0
  8. #
  9. ip route-static 0.0.0.0 0.0.0.0 43.1.1.2 ----缺省
  10. #
  11. interface Tunnel0/0/0
  12. ip address 172.16.0.129 255.255.255.248
  13. tunnel-protocol gre p2mp
  14. source 43.1.1.1
  15. ospf network-type broadcast ---修改默认点到点类型为broadcast
  16. nhrp entry multicast dynamic
  17. nhrp network-id 100
  18. R4:
  19. #
  20. interface LoopBack0
  21. ip address 4.4.4.4 255.255.255.0
  22. #
  23. interface GigabitEthernet0/0/0
  24. ip address 43.1.1.2 255.255.255.0
  25. #
  26. interface GigabitEthernet0/0/1
  27. ip address 45.1.1.1 255.255.255.0
  28. #
  29. interface GigabitEthernet0/0/2
  30. ip address 46.1.1.1 255.255.255.0
  31. #
  32. interface GigabitEthernet4/0/0
  33. ip address 47.1.1.1 255.255.255.0
  34. R5:
  35. #
  36. interface LoopBack0
  37. ip address 172.16.1.1 255.255.255.128
  38. #
  39. interface GigabitEthernet0/0/0
  40. ip address 45.1.1.2 255.255.255.0
  41. #
  42. ip route-static 0.0.0.0 0.0.0.0 45.1.1.1
  43. #
  44. interface Tunnel0/0/0
  45. ip address 172.16.0.130 255.255.255.248
  46. tunnel-protocol gre p2mp
  47. source 45.1.1.2
  48. ospf network-type broadcast ---修改默认点到点类型为broadcast
  49. ospf dr-priority 0 -----修改DR优先级为0,不参与选举,使DR为R3
  50. nhrp network-id 100
  51. nhrp entry 172.16.0.129 43.1.1.1 register
  52. R6:
  53. #
  54. interface LoopBack0
  55. ip address 172.16.1.129 255.255.255.128
  56. #
  57. interface GigabitEthernet0/0/0
  58. ip address 46.1.1.2 255.255.255.0
  59. #
  60. ip route-static 0.0.0.0 0.0.0.0 46.1.1.1
  61. #
  62. interface Tunnel0/0/0
  63. ip address 172.16.0.131 255.255.255.248
  64. tunnel-protocol gre p2mp
  65. source 46.1.1.2
  66. ospf network-type broadcast ---修改默认点到点类型为broadcast
  67. ospf dr-priority 0 -----修改DR优先级为0,不参与选举,使DR为R3
  68. nhrp network-id 100
  69. nhrp entry 172.16.0.129 43.1.1.1 register
  70. R7:
  71. #
  72. interface LoopBack0
  73. ip address 172.16.2.1 255.255.255.128
  74. #
  75. interface GigabitEthernet0/0/0
  76. ip address 47.1.1.2 255.255.255.0
  77. #
  78. ip route-static 0.0.0.0 0.0.0.0 47.1.1.1
  79. #
  80. interface Tunnel0/0/0
  81. ip address 172.16.0.132 255.255.255.248
  82. tunnel-protocol gre p2mp
  83. source 47.1.1.2
  84. ospf network-type broadcast ---修改默认点到点类型为broadcast
  85. ospf dr-priority 0 -----修改DR优先级为0,不参与选举,使DR为R3
  86. nhrp network-id 100
  87. nhrp entry 172.16.0.129 43.1.1.1 register

配置完成后,我们可以从R3上测试R5/R6/R7

3.配置IP地址

根据上图和已做出的IP规划配置IP地址,配置完成后进行ping测试IP地址配置是否正确

4.配置OSPF和RIP

  1. R1:
  2. #
  3. ospf 1 router-id 1.1.1.1
  4. area 0.0.0.1
  5. network 172.16.0.0 0.0.255.255
  6. R2:
  7. #
  8. ospf 1 router-id 2.2.2.2
  9. area 0.0.0.1
  10. network 172.16.0.0 0.0.255.255
  11. R3:
  12. #
  13. ospf 1 router-id 3.3.3.3
  14. area 0.0.0.0
  15. network 172.16.0.129 0.0.0.0
  16. area 0.0.0.1
  17. network 172.16.32.0 0.0.3.255
  18. R5:
  19. #
  20. ospf 1 router-id 5.5.5.5
  21. area 0.0.0.0
  22. network 172.16.0.0 0.0.255.255
  23. R6:
  24. #
  25. ospf 1 router-id 6.6.6.6
  26. area 0.0.0.0
  27. network 172.16.0.0 0.0.1.255
  28. area 0.0.0.2
  29. network 172.16.64.1 0.0.0.0
  30. R7:
  31. ospf 1 router-id 7.7.7.7
  32. area 0.0.0.0
  33. network 172.16.0.0 0.0.3.255
  34. area 0.0.0.3
  35. network 172.16.96.1 0.0.0.0
  36. R8:
  37. #
  38. ospf 1 router-id 8.8.8.8
  39. area 0.0.0.3
  40. network 172.16.0.0 0.0.255.255
  41. R9:
  42. #
  43. ospf 1 router-id 9.9.9.9
  44. area 0.0.0.3
  45. network 172.16.96.6 0.0.0.0
  46. area 0.0.0.4
  47. network 172.16.128.0 0.0.1.255
  48. R10:
  49. #
  50. ospf 1 router-id 10.10.10.10
  51. area 0.0.0.4
  52. network 172.16.0.0 0.0.255.255
  53. R11:
  54. #
  55. ospf 1 router-id 11.11.11.11
  56. area 0.0.0.2
  57. network 172.16.0.0 0.0.255.255
  58. R12:
  59. #
  60. ospf 1 router-id 12.12.12.12
  61. area 0.0.0.2
  62. network 172.16.64.6 0.0.0.0
  63. #
  64. rip 1
  65. version 2
  66. network 172.16.0.0

配置完OSPF后,我们需要查看邻居表,查看邻居是否建立

5.重发布

通过查看路由表,发现还缺少area 4和rip 的 路由 ,根据拓扑我们需要在R12上对RIP进行重发布

R9上对area 4进行多进程重发布

  1. R9:
  2. 首先我们需要删除之前在R9上配置的area 4的ospf1进程
  3. #
  4. ospf 2
  5. area 0.0.0.4
  6. network 172.16.128.0 0.0.1.255
  7. #
  8. ospf 1
  9. import-route ospf 2 ----将进程2宣告给进程1
  10. R12:
  11. 将RIP宣告进ospf 1 进程
  12. #
  13. ospf 1
  14. import-route rip 1

宣告完成后 ,此时路由表路由条目已经齐全,但我们还需要做减少LSA的更新量,加快收敛,保障更新安全

6.路由汇总

我们需要进行在R3 /R6/R7---区域间路由汇总R12---rip路由汇总R9----区域外路由汇总

  1. 区域间路由汇总
  2. R3:
  3. #
  4. ospf 1
  5. area 1
  6. abr-summary 172.16.32.0 255.255.224.0
  7. R6:
  8. #
  9. ospf 1
  10. area 2
  11. abr-summary 172.16.64.0 255.255.224.0
  12. R7:
  13. #
  14. ospf 1
  15. area 3
  16. abr-summary 172.16.96.0 255.255.224.0
  17. 区域外路由汇总
  18. R9:
  19. #
  20. ospf 1
  21. area 3
  22. asbr-summary 172.16.128.0 255.255.224.0
  23. rip路由汇总
  24. R12:
  25. ospf 1
  26. area 2
  27. asbr-summary 172.16.160.0 255.255.224.0

7.特殊区域

area 1 完全末梢    area 2 完全nssa      area 3 完全nssa    R9---OSPF 缺省指向R10

  1. area 1 完全末梢
  2. R1:
  3. #
  4. ospf 1 router-id 1.1.1.1
  5. area 0.0.0.1
  6. stub
  7. R2:
  8. #
  9. ospf 1 router-id 2.2.2.2
  10. area 0.0.0.1
  11. stub
  12. R3:
  13. #
  14. ospf 1 router-id 3.3.3.3
  15. area 0.0.0.1
  16. stub no-summary
  17. area 2 完全nssa
  18. R6:
  19. #
  20. ospf 1 router-id 6.6.6.6
  21. area 0.0.0.2
  22. nssa no-summary
  23. R11:
  24. #
  25. ospf 1 router-id 11.11.11.11
  26. area 0.0.0.2
  27. nssa
  28. r12:
  29. #
  30. ospf 1 router-id 12.12.12.12
  31. area 0.0.0.2
  32. nssa
  33. area 3 完全nssa
  34. R7:
  35. #
  36. ospf 1 router-id 7.7.7.7
  37. area 0.0.0.3
  38. nssa no-summary
  39. R8:
  40. #
  41. ospf 1 router-id 8.8.8.8
  42. area 0.0.0.3
  43. nssa
  44. R9:
  45. #
  46. ospf 1 router-id 9.9.9.9
  47. area 0.0.0.3
  48. nssa
  49. R9-OSPF 缺省指向R10
  50. R9:
  51. #
  52. ospf 2
  53. default-route-advertise

8.NAT

从局域网访问ISP需要进行地址转换,我们需要在R3、R6、R7做NAT

  1. R3:
  2. #
  3. acl number 2000
  4. rule 5 permit source 172.16.0.0 0.0.255.255
  5. #
  6. interface GigabitEthernet0/0/2
  7. nat outbound 2000
  8. R6:
  9. #
  10. acl number 2000
  11. rule 5 permit source 172.16.0.0 0.0.255.255
  12. #
  13. interface GigabitEthernet0/0/0
  14. nat outbound 2000
  15. R7:
  16. #
  17. acl number 2000
  18. rule 5 permit source 172.16.0.0 0.0.255.255
  19. #
  20. interface GigabitEthernet0/0/0
  21. nat outbound 2000

9.防环,空接口

由于存在缺省路由,在R9和R12上会出现环路,在R3、R6、R7上虽然不会出环,但会占用资源,所以我们需要设置空接口

  1. 设置空接口
  2. R3:
  3. #
  4. ip route-static 172.16.32.0 255.255.224.0 NULL0
  5. R6:
  6. #
  7. ip route-static 172.16.64.0 255.255.224.0 NULL0
  8. R7:
  9. #
  10. ip route-static 172.16.96.0 255.255.224.0 NULL0
  11. R9:
  12. #
  13. ip route-static 172.16.128.0 255.255.224.0 NULL0
  14. R12:
  15. #
  16. ip route-static 172.16.160.0 255.255.224.0 NULL0

10.测试验证

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/491480
推荐阅读
相关标签
  

闽ICP备14008679号