Skip to main content

IP Address Management

Each GoMami VPS instance is assigned a dedicated IPv4 address. You can view and manage IP address information in the control panel.

Viewing Your IP Address

  1. Log in to GoMami, go to the server control panel
  2. Click the Network tab
  3. View complete network information in the Primary Network and IPv4 Addresses sections

Network Information

Network Information

The Network tab displays:

FieldDescription
InterfaceNetwork interface name (e.g., ens3)
TypeNetwork type (Public)
MACMAC address
Speed (inbound/outbound)Inbound/outbound bandwidth speed
IPv4 AddressServer's public IPv4 address
GatewayDefault gateway address
NetmaskSubnet mask
ResolversDNS resolver addresses

Reverse DNS (rDNS)

You can set reverse DNS records directly in the Network tab by clicking the RDNS column in the IPv4 address table.

info

Before setting rDNS, make sure you've configured the corresponding forward DNS record with your DNS provider.

DNS Resolvers

In the IPv4 Public DNS Resolvers section, you can customize Primary and Secondary DNS resolvers. The defaults are system-provided resolvers (1.1.1.1 and 8.8.8.8).

Network Configuration

Network is automatically configured after deployment — usually no manual setup is needed. If you need manual configuration (e.g., after installing a custom OS):

Ubuntu / Debian (Netplan)

# /etc/netplan/01-netcfg.yaml
network:
version: 2
ethernets:
eth0:
addresses:
- your_ip/24
gateway4: gateway_ip
nameservers:
addresses:
- 8.8.8.8
- 1.1.1.1
# Apply configuration
netplan apply

CentOS / AlmaLinux (NetworkManager)

# Configure with nmcli
nmcli con mod eth0 ipv4.addresses "your_ip/24"
nmcli con mod eth0 ipv4.gateway "gateway_ip"
nmcli con mod eth0 ipv4.dns "8.8.8.8,1.1.1.1"
nmcli con mod eth0 ipv4.method manual
nmcli con up eth0
caution

Incorrect network configuration may cause the server to become unreachable. Before making changes, ensure you can access the server via VNC console as a fallback.

Reverse DNS (rDNS)

If you need to set up reverse DNS records (commonly used for mail servers), contact the support team via the ticket system.

Next Steps