Advertisement
Guest User

IPv6 COnfig

a guest
Jul 29th, 2012
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. !
  2. version 12.4
  3. !
  4. hostname Router
  5. !
  6. !
  7. ipv6 unicast-routing
  8. no ipv6 source-route
  9. !
  10. !
  11. !
  12. interface Tunnel0
  13. description Hurricane Electric IPv6 Tunnel Broker
  14. no ip address
  15. ipv6 address 2001:470:A:AAA::2/64
  16. ipv6 enable
  17. ipv6 traffic-filter internet_inbound_ipv6 in
  18. ipv6 traffic-filter internet_outbound_ipv6 out
  19. tunnel source FastEthernet0/0
  20. tunnel destination 209.51.161.58
  21. tunnel mode ipv6ip
  22. !
  23. interface FastEthernet0/0
  24. ip address dhcp
  25. duplex auto
  26. speed auto
  27. ipv6 traffic-filter internet_inbound_ipv6 in
  28. ipv6 traffic-filter internet_outbound_ipv6 out
  29. !
  30. !
  31. interface FastEthernet0/1
  32. no ip address
  33. duplex auto
  34. speed auto
  35. ipv6 address 2001:470:B:BBB::2/64
  36. ipv6 enable
  37. !
  38. !
  39. ip forward-protocol nd
  40. !
  41. !
  42. !
  43. ipv6 route ::/0 Tunnel0
  44. !
  45. !
  46. ipv6 access-list internet_inbound_ipv6
  47. remark Permit IPv6 Link-Local & Multicast
  48. permit ipv6 FE00::/7 any
  49. remark Block IPv6 Bogons
  50. deny ipv6 ::/3 any
  51. deny ipv6 4000::/2 any
  52. deny ipv6 8000::/1 any
  53. remark Block own assigned IPv6 space
  54. deny ipv6 2001:470:A:AAA::/64 ::/64
  55. remark Block anything going to Windows RPC
  56. deny tcp any any eq 135
  57. permit icmp any any
  58. deny ipv6 2001:470:A:AAA::/64 any
  59. deny ipv6 2001:470:B:BBB::/64 any
  60. !
  61. ipv6 access-list internet_outbound_ipv6
  62. remark Prohibit any contact with Windows RPC-NetBIOS
  63. deny tcp any any eq 135
  64. deny tcp any any eq 137
  65. deny tcp any any eq 138
  66. deny tcp any any eq 139
  67. deny udp any any eq 135
  68. deny udp any any eq netbios-ns
  69. deny udp any any eq netbios-dgm
  70. deny udp any any eq netbios-ss
  71. remark Allow traffic from own assigned IP space
  72. permit ipv6 2001:470:A:AAA::/64 ::/64
  73. permit ipv6 2001:470:B:BBB::/64 ::/64
  74. !
  75. !
  76. end
  77.  
  78.  
  79.  
  80. Ethernet adapter Local Area Connection:
  81.  
  82. Connection-specific DNS Suffix . :
  83. IPv6 Address. . . . . . . . . . . : 2001:470:B:BBB:5892:36b:2db9:62ff
  84. Temporary IPv6 Address. . . . . . : 2001:470:B:BBB:c1e5:1cf3:bd0f:fd1e
  85. Link-local IPv6 Address . . . . . : fe80::5892:36b:2db9:62ff%11
  86. Default Gateway . . . . . . . . . : fe80::20e:d7ff:fe80:2d41%11
  87.  
  88.  
  89. Tunnel adapter Teredo Tunneling Pseudo-Interface:
  90.  
  91. Connection-specific DNS Suffix . :
  92. IPv6 Address. . . . . . . . . . . : 2001:0:4137:9e76:80:1c54:3f57:fd16
  93. Link-local IPv6 Address . . . . . : fe80::80:1c54:3f57:fd16%18
  94. Default Gateway . . . . . . . . . :
  95.  
  96. C:\Users\Dex>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement