Question

Enabling IP6 in existing droplet?

I am following this tutorial https://www.digitalocean.com/community/tutorials/how-to-enable-ipv6-for-digitalocean-droplets to enable IP6 in my existing droplet.I manage to enable the IP6 but for the configuration part when I run the command,

sudo nano /etc/network/interfaces

the output is(in the Putty),

"# This file describes the network interfaces available on your system

and how to activate them. For more information, see interfaces(5).

The loopback network interface

auto lo iface lo inet loopback

source /etc/network/interfaces.d/*"

this is not what it is shown in the tutorial,so the question is am I using the wrong command(I am a Window user so I am using Putty and also using Serverpilot)? and where do I insert the “primary_ipv6_address” and the “ipv6_gateway”?

Thank you.


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Manju Ramanathpura
DigitalOcean Employee
DigitalOcean Employee badge
January 28, 2018
Accepted Answer

Hi,

What you see in the /etc/network/interfaces file is correct. You are not running any wrong command. Existing contents of the /etc/network/interfaces file is not captured in the tutorial.

Recommendation in the tutorial is to append the following block of code to your existing /etc/network/interfaces file.

iface eth0 inet6 static
       address primary_ipv6_address
       netmask 64
       gateway ipv6_gateway
       autoconf 0
       dns-nameservers 2001:4860:4860::8844 2001:4860:4860::8888 209.244.0.3

primary_ipv6_address and the ipv6_gateway should be replaced with the IPv6 address and the IPv6 Gateway that you see for your Droplet in the Droplet Network View.

Make sure to save the edits to /etc/network/interfaces before rebooting the Droplet.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel