Total Pageviews

Sunday 26 November 2017

在AWS EC2中, 添加新IP地址


在Amazon EC2上添加公共IP地址有一点小复杂,写下来备忘:
  1. 在需要添加地址的EC2实例名上右击并选择”Manage Private IP Addresses”
  2. 分配一个新的IP地址(私有IP)并更新
  3. 创建一个新的Elastic IP并关联到那个实例(以及刚创建的私有地址)
  4. 在EC2的实例中运行如下命令(注意以下的地址为第2步中的私有地址)
    1
    ip addr add dev eth0 172.xxx.xxx.xxx
  5. 将相关配置添加到 /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
There you go!

No comments:

Post a Comment