The Public IP Address Associated with a Cloud VPS

The Public IP of a Cloud VPS

The public IP address associated with a Cloud VPS allows the server to be reachable from the Internet. A Cloud VPS with a public IP has direct access to the network and benefits from high connection speeds, limited only by the bandwidth capabilities of the network interface.

With the SeFlow Cloud VPS service, each VPS includes at least one public IP address, already provisioned and configured by the platform. The public IP allows you to connect to your Cloud VPS using:

  • RDP (Remote Desktop Protocol) for Windows systems;
  • SSH (Secure Shell) for Linux systems.
Tip: Always store your Cloud VPS public IP in your project documentation and secure access (RDP/SSH) using strong credentials, MFA when possible, and restrictive firewall rules.

IPv6

IPv6 is the next-generation Internet addressing protocol, designed to overcome the exhaustion of IPv4 addresses.

The continuous growth of connected devices (PCs, laptops, phones, smart TVs, VoIP devices, IoT systems, etc.) has led to the saturation of publicly available IPv4 addresses. For this reason, IPv6 was introduced, providing an almost unlimited pool of addresses.

Tip: For medium- or long-term deployments, consider using IPv6 alongside IPv4 to improve scalability and future-proof your infrastructure.

Differences Between IPv4 and IPv6

IPv4 and IPv6 are both Internet addressing protocols, but they differ in format, size, and address capacity.

Feature IPv4 IPv6
Address Length 32 bits 128 bits
Format 4 decimal groups (0–255) separated by dots
Example: 62.149.188.210
8 groups of 4 hexadecimal digits (0–9, a–f) separated by colons
Example: 2001:0db8:85a3:0000:1319:8a2e:0370:7344
Number of Addresses About 4.3 billion addresses (2^32) About 3.4 × 1038 addresses (2^128)
Equivalent to hundreds of billions of billions of billions of billions of unique addresses.
Tip: IPv4 is still the most widely used protocol today, but IPv6 is the ideal choice for projects requiring long-term scalability or large-scale deployments.

Advantages of IPv6

IPv6 provides several advantages over IPv4:

  • Massive address space: allows unique addressing of virtually unlimited devices.
  • Reduced dependency on NAT: every device can have its own public address, improving end-to-end connectivity.
  • Built-in security: IPsec support is mandatory in IPv6, whereas it is optional in IPv4.
  • More efficient routing and network handling, especially on large-scale networks.
Tip: Even if your Cloud VPS currently relies mainly on IPv4, enable and test IPv6 in development environments to prepare for future adoption.

IPv6 Syntax Rules

When writing an IPv6 address, there are several rules to follow:

  • Lowercase letters: hexadecimal digits (a–f) should be written in lowercase.
  • Zero compression: a group of four zeros can be reduced to 0:
    2001:0db8:85a3:0000:0000:8a2e:0370:7344
    becomes
    2001:0db8:85a3:0:0:8a2e:0370:7344
  • :: substitution for a sequence of two or more zero groups:
    2001:0db8:85a3:0000:0000:8a2e:0370:7344
    becomes
    2001:0db8:85a3::8a2e:0370:7344
  • Single :: allowed: it can appear only once in an address.
    Invalid example: 2001::85a3::0370:7344
  • Leading zeros omitted:
    2001:0db8:85a3:70aa:0101:1000:8a2e:0370
    can be written as
    2001:db8:85a3:70aa:101:1000:8a2e:370
  • Last 32 bits may be written in IPv4 format:
    2001:0db8:85a3:0000:0000:8a2e:0370:7344
    can be written as
    2001:0db8:85a3:0000:0000:8a2e:3.112.115.68
Tip: Use consistent conventions when writing IPv6 addresses (compression rules, lowercase format) across documentation and systems to avoid confusion.

Transition from IPv4 to IPv6

The global transition from IPv4 to IPv6 is gradual. To ensure compatibility, many providers adopt dual-stack configurations, supporting both protocols simultaneously.

In Cloud VPS environments, it is therefore common to have:

  • one IPv4 public address;
  • one or more IPv6 addresses associated with the same machine.
Tip: When configuring DNS or firewall rules, always check whether your Cloud VPS uses IPv6 as well—configure both protocols to avoid inconsistent behavior between IPv4 and IPv6.

Converting IPv4 to IPv6

In some scenarios, it may be useful to represent an IPv4 address inside an IPv6 address. This is done by converting the four decimal blocks of the IPv4 into hexadecimal.

Example IPv4:

62.149.188.210

Convert each decimal block into hexadecimal:

  • 623e
  • 14995
  • 188bc
  • 210d2

The combination becomes: 3e95:bcd2

This IPv4 can be represented in IPv6 in the IPv4-compatible format:

0000:0000:0000:0000:0000:ffff:3e95:bcd2

which can also be written in compressed form as:

::ffff:3e95:bcd2

Tip: IPv4-in-IPv6 representation is useful for compatibility and migration scenarios. For production environments, prefer native IPv6 addressing whenever possible.

 

Was this answer helpful? 0 Users Found This Useful (0 Votes)