We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
My general notes on how to do this:
Select a new Ubuntu instance
Run it in a new or existing VPC subnet
For the eth0 adapter, add two static IP addresses not already in use on this subnet (e.g. 10.0.0.20 and 10.0.0.21). Both on eth0. Do not add eth1.
Launch instance. Associate a public IP instance with the primary address specified in step 3 for this instance.
Now configure the second IP address properly. Edit /etc/network/interfaces file. At the bottom of this file add the following:
iface eth0:1 inet static
address 10.0.0.21
netmask 255.255.255.0
Then run "sudo ifup eth0:1"
That should do it.