Private Static IP for EC2

0

How can I set static IP for already running EC2. Does the auto assigned private IP gets changed under any scenario?

posta 2 anni fa5326 visualizzazioni
2 Risposte
1

Private IP of a running or stopped instance would not change. You will loose it once the instance is terminated.

If you want to retain a private IP for an EC2 instance even after termination, you could do this -

  1. Create a custom ENI (network interface) with a custom IPV4 address within the CIDR range of the subnet (e.g. us-east-1a) you want to launch the EC2 instance.
  2. Launch the ec2 instance in the same subnet (e.g. us-east-1a)
  3. Attach the custom ENI to your new EC2 instance (From Instances page of AWS Console - Actions --> Networking --> Attach Network Interface) You would see 2 private ips for the instance after this.

Please keep in mind this will lock your EC2 instance to a specific Availability Zone. Also, make sure you understand the implications of doing this after considering the alternate options.

An alternate to this is to use an Elastic IP, which is a fixed public ip address that you can attach to any of your instances.

https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-instance-addressing.html

profile pictureAWS
con risposta 2 anni fa
0
Risposta accettata

The private IP address of an Amazon EC2 instance will never change while an instance is running or stopped. However, EC2 instances can have multiple IP addresses. (For more: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/MultipleIP.html). Pls, remember, that there is no way to remove the Primary IP address from any EC2 instances. Furthermore, two EC2 instances cannot have the same IP. only one IP can be assigned to one only one EC2 instance. (This is only for the private IP address, not the public IP address).

Apart from that, for public IP use Elastic IP address. For more: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html

VISI
con risposta 2 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande