Advertisement
Guest User

HRSP and Bridge

a guest
Dec 21st, 2011
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. R1
  2. enable
  3. conf t
  4. bridge irb
  5. bridge 1 protocol ieee
  6. bridge 1 route ip
  7. bridge 2 protocol ieee
  8. bridge 2 route ip
  9. track 1 interface fa0/0 ip routing
  10. int e1/0
  11. no ip address
  12. bridge-group 1
  13. no shutdown
  14. int e1/1
  15. no ip address
  16. bridge-group 1
  17. no shutdown
  18. int e1/2
  19. no ip address
  20. bridge-group 2
  21. no shutdown
  22. int e1/3
  23. no ip address
  24. bridge-group 2
  25. no shutdown
  26. int BVI2
  27. no shutdown
  28. ip address 10.10.2.2 255.255.255.0
  29. standby 1 ip 10.10.2.1
  30. standby 1 priority 100
  31. standby 1 preempt
  32. standby 1 track 1
  33. int BVI1
  34. no shutdown
  35. ip address 10.10.1.2 255.255.255.0
  36. standby 2 ip 10.10.1.1
  37. standby 2 priority 100
  38. standby 2 preempt
  39. standby 2 track 1
  40.  
  41.  
  42. R2
  43. enable
  44. conf t
  45. bridge irb
  46. bridge 1 protocol ieee
  47. bridge 1 route ip
  48. bridge 2 protocol ieee
  49. bridge 2 route ip
  50. track 1 interface fa0/0 ip routing
  51. int e1/0
  52. no ip address
  53. bridge-group 1
  54. no shutdown
  55. int e1/1
  56. no ip address
  57. bridge-group 1
  58. no shutdown
  59. int e1/2
  60. no ip address
  61. bridge-group 2
  62. no shutdown
  63. int e1/3
  64. no ip address
  65. bridge-group 2
  66. no shutdown
  67. int BVI2
  68. no shutdown
  69. ip address 10.10.2.3 255.255.255.0
  70. standby 1 ip 10.10.2.1
  71. standby 1 priority 105
  72. standby 1 preempt
  73. standby 1 track 1
  74. int BVI1
  75. no shutdown
  76. ip address 10.10.1.3 255.255.255.0
  77. standby 2 ip 10.10.1.1
  78. standby 2 priority 105
  79. standby 2 preempt
  80. standby 2 track 1
  81.  
  82.  
  83. Topology is here
  84. http://img849.imageshack.us/img849/599/examplede.png
  85.  
  86. I am trying to get HSRP to work with two switches.
  87. I am trying to bridge both interfaces on each router into one virtual interface and then configure HRSP on the virtual interface.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement