在Amazon EC2上添加公共IP地址有一点小复杂,写下来备忘:
- 在需要添加地址的EC2实例名上右击并选择”Manage Private IP Addresses”
- 分配一个新的IP地址(私有IP)并更新
- 创建一个新的Elastic IP并关联到那个实例(以及刚创建的私有地址)
- 在EC2的实例中运行如下命令(注意以下的地址为第2步中的私有地址)
1
ip addr add dev eth0 172.xxx.xxx.xxx
- 将相关配置添加到
/etc/network/interfaces.d/eth0.cfg
以持久化:1 2 3 4
# The primary network interface auto eth0 iface eth0 inet dhcp up ip addr add dev eth0 172.xxx.xxx.xxx
No comments:
Post a Comment