Amazon AWS
Amazon AWS

Setting up IPv6 on AWS


I used to think that IPv6 is mostly a concern for ISPs and hosting companies to enable and once they do, everything in their system will start using it. Turns out, it isn’t that simple. How the internet hasn’t really felt much of the effect of this is a little beyond me because IPv4 exhaustion occurred at the beginning of 2011.

 

By default,
AWS does not enable IPv6

 

First, does your computer support IPv6?

You might be surprised to realize your computer and home network isn’t setup for IPv6. So before you start changing your entire cloud setup, check to make sure.

https://test-ipv6.com/

If you find you do not support IPv6, you should next check to make sure your modem and router support IPv6. The standard was originally written in 1998, so most devices should have support for it but it might not be correctly enabled by default.

The normal ipv6 roadblock is your router as most modems are mostly auto-configured by the ISP. So first check your router to see if:

  1. Make sure IPv6 is enabled on the router
  2. If it is enabled, but you are not getting an IPv6 address, check to see if the router is  using Native IPv6 from ISP and try switching it to DHCPv6
IPv6 Options in Router

You may need to specify an IPv6 DNS lookup (Google DNS IPv6)

  • 2001:4860:4860::8888
  • 2001:4860:4860::8844

Now, try ipv6-test and see if you pass.

Setting Up AWS to Receive IPv6 Traffic

Now we can start changing settings in AWS to enable IPv6. You have to complete all the steps before you can test IPv6 access to your cloud.

Essentially you need to tell Amazon that you need an IPv6 public block that you will start assigning to your EC2 instances.

  1. VPCs
    1. In AWS Console Services menu goto VPC
    2. Right click on the VPC and click Edit CIDRs
    3. Click Add IPv6 CIDR
  2. VPC Subnet
    1. In the VPC Dashboard, on the sidebar select Subnets
    2. Right click on each subnet (often one for each availability zone enabled) and select Edit IPv6 CIDRs
    3. Click Add IRv6 CIDR and use the default value (it will auto increment so each availability zone is none overlapping)
    4. Click the checkbox to accept and then click close
  3. VPC Route Table
    1. In the VPC Dashboard, on the sidebar select Route Table
    2. Click on the route table that matches your VPC and on the bottom tab select Routes
    3. Click Edit
    4. Add ::/0 and target it to your internet gateway (you should have an ipv4 version and it probably starts with igw-)
    5. Click Save
  4. EC2
    1. In AWS Console Services menu goto EC2
    2. Right click on the EC2 node you want to add IPv6 to and select Networking > Manage IP Addresses
    3. Click Assign new IP
    4. Click Yes, Update
    5. (repeat on any other nodes you want to add ipv6)
  5. Security Groups
    1. In the EC2 Dashboard, on the sidebar select Security Groups
    2. Add ::/0 entries for any IPv4 public entries
    3. Example of a HTTP/HTTPS server with ping replies enabledaws security groups for http server
  6. DNS AAAA records
    1. If you use Route 53 or an outside DNS provider, simply add AAAA records pointing to your EC2 nodes IPv6 address whenever an A record is used. This allows the end user to pick if they want a IPv4 or IPv6 address.
    2. dig request for ipv4 and ipv6 records

Testing

Instead of using ping which will send an ICMP request over IPv4, you need to start using ping6. If you are getting hostname lookup troubles, then transition over to

dig <hostname> ANY

If you don’t see both A and AAAA records, then you either need to wait for DNS propagation or check to make sure your records are showing by your DNS provider.

> ping6 steve.zazeski.com
ping6: getaddrinfo -- nodename nor servname provided, or not known

If your DNS records are working, then you need to make sure the above IPv6 route table is actually being used and that a security group isn’t stopping the message. For troubleshooting, try adding a relaxed any inbound connection security group (just make sure to remove it when you are done troubleshooting).

openanalytics 3296 views

I'm a 34 year old UIUC Computer Engineer building mobile apps, websites and hardware integrations with an interest in 3D printing, biotechnology and Arduinos.


View Comments

This site uses Akismet to reduce spam. Learn how your comment data is processed.