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?

已提問 2 年前檢視次數 5329 次
2 個答案
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
已回答 2 年前
0
已接受的答案

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
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南