Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. FreeBSD config
  2. --------------
  3.  
  4. Install the dual-dhclient port:
  5. $ fetch http://daemonology.net/tmp/dual-dhclient.tgz
  6. $ tar -xf dual-dhclient.tgz -C /usr/ports
  7. $ make -C /usr/ports/net/dual-dhclient install
  8.  
  9. Edit /etc/rc.conf:
  10. * change ifconfig_DEFAULT line:
  11. ifconfig_DEFAULT="SYNCDHCP accept_rtadv"
  12. * add the following two lines:
  13. ipv6_activate_all_interfaces="YES"
  14. dhclient_program="/usr/local/sbin/dual-dhclient"
  15.  
  16. AWS config
  17. ----------
  18.  
  19. 1. Add an IPv6 CIDR to your VPC.
  20.  
  21. 2. Add an IPv6 CIDR to each subnet.
  22.  
  23. 3. Enable auto-assign IPv6 address on each subnet.
  24.  
  25. 4. Adjust the Route Table by adding a destination of ::/0 with a Target of
  26. the VPC's Internet Gateway.
  27.  
  28. 5. (If necessary) Adjust your Security Group rules to allow IPv6 traffic.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement