Skip to main content

Port Capacities

All of our virtual servers come with a 10 Gbps shared port by default.

Looking Glass

We have a looking glass containing all of our locations below. https://lg.advinservers.com

BGP Sessions

We can allow a BGP sessions for free across all services in the below locations.
  • Los Angeles, CA
  • Nuremberg, DE
  • Miami, FL
  • Kansas City, MO
  • Johor Bahru, MY
Please note that in some cases, we may need LOAs for any prefixes that you’d like to announce. Please contact us first before purchasing a service to see if it is possible with your requirements. It can take up to 1-2 weeks before we fully process the BGP session.

Bring Your Own IP (BYOIP)

We can allow a BYOIP for free across all services in the below locations.
  • Los Angeles, CA
  • Nuremberg, DE
  • Miami, FL
  • Kansas City, MO
  • Johor Bahru, MY
Please contact us first before purchasing a service to see if it is possible with your requirements. It can take up to 1-2 weeks before we fully process the BYOIP request.

IPv6

All products include a /48 IPv6 subnet. This subnet is routed in all locations except Secaucus, NJ and Osaka, JP, where it is configured as on-link.

Configuring Additional IP

Ubuntu

In most Linux servers using Ubuntu, you can configure a DDoS-Protected IP by doing:
echo "network:
    version: 2
    ethernets:
        eth0:
            addresses:
            - ip/32" > /etc/netplan/99-ddos-protected-ip.yaml

netplan apply
Replace ip with your DDoS-Protected IP. In the future, if you want to add additional IPs, you can modify /etc/netplan/99-ddos-protected-ip.yaml and add more lines with more addresses like so:
network:
    version: 2
    ethernets:
        eth0:
            addresses:
            - ip1/32
            - ip2/32
            - ip3/32

Debian

In Debian, you can configure a DDoS-Protected IP by doing:
echo "iface eth0 inet static
    address ip/32" > /etc/network/interfaces.d/99-ddos-protected-ip

systemctl restart networking
Replace ip with your DDoS-Protected IP. In the future, if you want to add additional IPs, you can modify /etc/network/interfaces.d/99-ddos-protected-ip and add more lines with more addresses like so:
face eth0 inet static
    address ip1/32
    address ip2/32
    address ip3/32