How Can We Help?
< All Topics
Print

Multiple Public IP Addresses for a Single Container

Multiple Public IP Addresses for a Single Container

BitssCloud PaaS supports assigning multiple public IP addresses (of both IPv4 ) to a single container. Herewith, the assigned IPs could be either of one of the versions or both of them simultaneously.

 For example, if hosting several web-sites on a single node, the multi-IP option allows handling them as separate production-ready services due to the ability to apply a dedicated custom domain name and SSL certificate to each of them. Also, this option can be helpful for operating network appliances (e.g. load balancers) with multiple IP addresses for each network.

Note: Both Public IPv4 are paid options, charged separately (either for the same or different price) on an hourly basis. The exact cost and allowed number of IPs per node/per environment can be seen within the Balance > Quotas & Pricing > Account Limits dashboard tab.

You can assign multiple IP addresses through your BitssCloud dashboard by means of the appropriate spinners at topology wizard when either creating an environment or changing its topology.

Here, you can select or enter the required number of addresses of both types through the appropriate Public IPv4 boxes. If meeting the limits, please, contact your hosting provider to increase the available addresses count.

Managing Multiple Public IP Addresses

On the main dashboard screen, each node within the environment topology list is supplemented with details on all assigned IP addresses, displayed in the following order:

  • Private IP – automatically attached internal IP address; is always displayed first just under the Node ID value
  • Public IPv4 – single external IP record or expandable list of all v4 addresses, comes second.

Also, you can copy to a clipboard and Detach each particular address using the appropriate buttons. And the Attach/Detach IP(s) option next to the addresses list title allows to adjust the total number of assigned IPs of the corresponding type, i.e. for each block separately:

The Node Settings box displays the number of currently attached addresses with the Apply button dimmed until you make some changes.

Note: The very first added Public IP of each type that is added to an instance is considered a primary one (is always displayed first within the IP list). It can be deleted only if no more assigned addresses of the same version have been left at a node. This address is used for both incoming and outgoing traffic, whilst the rest of IPs can only receive it.

Also, all IP addresses, assigned to a container, are shown within environment topology details at the terminal upon connecting to an environment via BitssCloud SSH Gate.

Here, all container external addresses are displayed within the WAN IP column (in the same order as at the dashboard, i.e. IPv4 ), whilst the LAN IP one contains its internal address.

In case the required type of the newly attached IP is not indicated explicitly (e.g. within Cloud Scripting solution or application/add-on package settings at BitssCloud Marketplace), the IPv4 is used by default.

There is a set of API methods that you can use to perform tasks related to Public IP. For the detailed API reference on Public IP, please proceed to the following section.

API Reference on Multiple Public IPs

In this section, you can find information on BitssCloud API methods that are provided for you to work with multiple Public IP addresses.

  1. To attach or detach a Public IP address via BitssCloud API, the SetExtIpCount method is provided.
https://[hoster-api-host]/1.0/environment/control/rest/setextipcount?envname=[string]&session=[string]&type=[string]&count=[int]&nodegroup=[string]&nodeid=[int]

This method is used with the following parameters:

  • envname– name of a source environment
  • session– ID of a current user session
  • type – version of Public IP (ipv4 or ipv6)
  • count – number of IP addresses to be added or removed per container
  • nodegroup – group of a destination node (e.g. blcpsqldbnosqldbstoragevps, or build)
  • nodeid – ID of a destination node

In order to increase or reduce the number of particular IPs (IPv4 or IPv6) on a destination container, you need to specify the count according to the number of the already assigned addresses.

Note: The AttachExtIp and DetachExtIp methods, which were provided earlier to add and remove Public IP address respectively, are now deprecated but still can be used due to the backward compatibility.

  1. To swap Public IP addresses between two nodes within the same or separate environments, you can use the SwapExtIps method.
https://{hoster-api-host}/1.0/environment/control/rest/swapextips?envname=[string]&session=[string]&sourcenodeid=[int]&destnodeid=[int]&sourceip=[string]&destip=[string]

This method is used with the following parameters:

  • envname – name of a source environment
  • session – ID of a current user session
  • sourcenodeid – ID of a source node to move a Public IP address from
  • destnodeid – ID of a destination node to move a Public IP address to (can belong to another environment)
  • sourceip – Public IP address on a source node to be swapped
  • destip – Public IP address on a destination node to be swapped

In order to swap all the Public IP addresses between the source and destination nodes, omit the sourceip and destip parameters.

Note: The SwapExtIps method can be currently used only with Public IPv4.

Table of Contents