Reputation: 35
Adding an extra static IP to an AWS instance is as simple as assigning a secondary private IPv4 address to a network interface and then assign the Elastic IP address to it.
We have customers hosting on the same machine that need additional IPs for the EV certificates or to meet PCI certification.
Please, how does one accomplish what ought to be a very simple task on Google Compute?
Thanks!
Upvotes: 0
Views: 799
Reputation: 1452
You can create instances with Multiple Network Interfaces, up to a maximum of 8 network interfaces, each one can optionally have an external IP address.
Note that you can only configure a network interface when you create an instance and you cannot modify or delete the network interfaces after the VM has been created (You cannot delete a network interface without deleting the instance).
For internal IP addresses, you can use Alias IP Addresses and Ranges.
Upvotes: 1