Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. HQ – Main – Corp
  2. en
  3. conf ter
  4. username ISP1 password cisco123
  5. int s0/0/0
  6. encapsulation ppp
  7. ppp authentication chap
  8. exit
  9.  
  10. interface tunnel 0
  11. ip address 172.16.1.1 255.255.255.252
  12. tunnel source s0/0/0
  13. tunnel destination 209.165.200.225
  14. exit
  15.  
  16. router ospf 1
  17. network 192.168.2.0 0.0.0.255 area 0
  18. network 172.16.1.0 0.0.0.3 area 0
  19. exit
  20.  
  21. router bgp 65020
  22. network 209.165.202.128 mask 255.255.255.224
  23. neighbor 209.165.200.230 remote-as 65001
  24. exit
  25.  
  26. Access-list 1 permit 192.168.2.0 0.0.0.255
  27.  
  28. ip access-list extended HTTP_ACCESS
  29. permit tcp 209.165.200.224 0.0.0.3 host 209.165.202.158 eq 80
  30. permit tcp 209.165.200.236 0.0.0.3 host 209.165.202.158 eq 80
  31. permit ip 192.168.2.0 0.0.0.255 any
  32. permit icmp any any echo-reply
  33. deny ip any any
  34.  
  35. int g0/1
  36. ip access-group HTTP_ACCESS out
  37. exit
  38.  
  39. ipv6 access-list HTTP6_ACCESS
  40. permit tcp 2001:DB8:ACAD::/63 host 2001:DB8:ACAD:B::158 eq 80
  41. permit tcp 2001:DB8:ACAD:3::/64 host 2001:DB8:ACAD:B::158 eq 80
  42. permit ipv6 2001:DB8:ACAD:2::/64 any
  43. permit icmp any any echo-reply
  44. deny ipv6 any any
  45.  
  46. interface g0/1
  47. ipv6 traffic-filter HTTP6_ACCESS out
  48.  
  49.  
  50.  
  51. Branch – Remote – Branch1
  52. en
  53. conf ter
  54. username ISP1 password cisco123
  55. int s0/0/0
  56. encapsulation ppp
  57. ppp authentication chap
  58. exit
  59.  
  60. interface tunnel 0
  61. ip address 172.16.1.2 255.255.255.252
  62. tunnel source s0/0/0
  63. tunnel destination 209.165.200.229
  64. exit
  65.  
  66. router ospf 1
  67. network 192.168.0.0 0.0.1.255 area 0
  68. network 172.16.1.0 0.0.0.3 area 0
  69. exit
  70.  
  71. Access-list 1 permit 192.168.0.0 0.0.1.255
  72.  
  73.  
  74.  
  75. Customer – Other – Branch2
  76. en
  77. conf ter
  78. Access-list 1 permit 192.168.3.0 0.0.0.255
  79.  
  80. ip access-list standard VTY_ADMIN
  81. permit 192.168.3.0 0.0.0.255
  82. permit 209.165.200.225 0.0.0.3
  83. deny any
  84. Line vty 0 4
  85. Access-class VTY_ADMIN in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement