Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. route outside 0.0.0.0 0.0.0.0 192.168.1.1 1
  2. route outsidebackup 0.0.0.0 0.0.0.0 192.168.2.1 2
  3.  
  4. sla monitor 99
  5. type echo protocol ipIcmpEcho 8.8.8.8 interface outside
  6. num-packets 3
  7. frequency 10
  8. !
  9. sla monitor schedule 99 life forever start-time now
  10. !
  11. track 99 rtr 99 reachability
  12. !
  13. show run sla monitor
  14. !
  15. show run track
  16. !
  17. show sla monitor operational-state 99 | include operation
  18. !
  19. show sla monitor operational-state 99
  20. !
  21. route outside 0.0.0.0 0.0.0.0 x.x.x.x 1 track 99
  22. route backup 0.0.0.0 0.0.0.0 y.y.y.y 254
  23. !
  24. object network isp1-nat
  25. subnet a.b.c.0 255.255.255.0
  26. nat (inside,outside) dynamic interface
  27. !
  28. object network isp2-nat
  29. subnet a.b.c.0 255.255.255.0
  30. nat (inside,backup) dynamic interface
  31. !
  32.  
  33. router1:
  34. interface gi0/0
  35. description outside
  36. ip address x.x.x.x x.x.x.x
  37. ip nat outside
  38. no shutdown
  39. !
  40. ip sla 99
  41. icmp-echo 8.8.8.8 source-interface GigabitEthernet0/0
  42. request-data-size 1
  43. tos 160
  44. timeout 2000
  45. threshold 2000
  46. frequency 15
  47. hours-of-statistics-kept 8
  48. !
  49. ip sla schedule 99 life forever start-time now
  50. !
  51. track 99 ip sla 99 reachability
  52. delay down 40
  53. !
  54. interface gi0/1
  55. description inside HSRP VIP: a.b.c.1
  56. ip address a.b.c.11 255.255.255.0
  57. standby 1 ip a.b.c.1
  58. standby 1 preempt
  59. standby 1 priority 105
  60. standby 1 track 99
  61. ip nat inside
  62. !
  63. ip access-list standard NAT
  64. permit a.b.c.0 0.0.0.255
  65. !
  66. ip nat inside source list NAT interface gi0/0 overload
  67.  
  68.  
  69. router2:
  70. interface gi0/0
  71. description outside
  72. ip address x.x.x.x x.x.x.x
  73. ip nat outside
  74. no shutdown
  75. !
  76. interface gi0/1
  77. description inside HSRP VIP: a.b.c.1
  78. ip address a.b.c.12 255.255.255.0
  79. standby 1 ip a.b.c.1
  80. ip nat inside
  81. no shutdown
  82. !
  83. ip access-list standard NAT
  84. permit a.b.c.0 0.0.0.255
  85. !
  86. ip nat inside source list NAT interface gi0/0 overload
  87.  
  88.  
  89. ASA config:
  90. route outside 0.0.0.0 0.0.0.0 a.b.c.1 1
  91. !
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement