> ## Documentation Index
> Fetch the complete documentation index at: https://docs.advinservers.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Network Information

> This is an overview of our network.

## Port Capacities

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

## Looking Glass

We have a looking glass containing all of our locations below.

[https://lg.advinservers.com](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 an additional IP by running:

```
echo "network:
    version: 2
    ethernets:
        eth0:
            addresses:
            - ip/32" > /etc/netplan/99-additional-ip.yaml

netplan apply
```

Replace `ip` with your additional IP.

In the future, if you want to add additional IPs, you can modify `/etc/netplan/99-additional-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 additional IP by running:

```
echo "iface eth0 inet static
    address ip/32" > /etc/network/interfaces.d/99-additional-ip

systemctl restart networking
```

Replace `ip` with your additional IP.

In the future, if you want to add additional IPs, you can modify `/etc/network/interfaces.d/99-additional-ip` and add more lines with more addresses like so:

```
face eth0 inet static
    address ip1/32
    address ip2/32
    address ip3/32
```
