Closed kchenhal closed 3 years ago
Hello @kchenhal , it is indeed not possible to associate multiple IP addresses to an ECS this way. I can see to options:
Thanks Olivier. I will try the VIP approach. what is the different between vip and private ip used in the neutron port? will the client be able to use vip to connect to the server?
Actually a VIP is the way (in a sort) to associate an IP address to a MAC at Neutron level (the network manager). So the IP packets for this VIP will be routed to the Neutron port of the ECS you associated to. At ECS level, do not forget to declare the VIP as a secondary IP of the network interface (ex: eth0 for the primary, eth0:1 for the secondary, eth0:2 for the third and so on), the Virtual Network Interface method for Linux: https://linuxconfig.org/configuring-virtual-network-interfaces-in-linux
thanks! @osaluden
I am trying to create neutron port with multiple fixed ipaddress, when I apply it, got the following error:
here is the TF code
I intend to attach this port an instance via flexibleengine_compute_interface_attach_v2
./terraform version
Thanks