How to Configure a Private Network on OpenBSD

Last modified: October 7, 2020
You are here:
Estimated reading time: 1 min

Introduction

When deploying a VPS with a private network, you need to configure the private IP addresses. The examples shown in this guide are IPv4, but FastyCloud supports both IPv4 and IPv6. FastyCloud also supports multiple VLANs over a single private network interface with 802.1q tags. You’ll find your server’s information on the information page under Settings > IPv4. In the example below, the public network address is 192.0.2.123, and the private network address is 10.10.10.3. You’ll find configuration samples for your server by clicking “View our networking configuration tips and examples.

NetworkConfig


Private Networking Notes:

  • When you enable private networking, you may use any RFC1918 private address as long as there are no conflicts with your other instances. Valid addresses include:
    • 10.0.0.0/8
    • 172.16.0.0/12
    • 192.168.0.0/16
  • Private IP addresses in the customer portal are suggestions. You are not required to use the suggested private IP addresses.
  • Private networks can not communicate between locations, regardless of IP addressing. For example, server instances in Miami can not see private networks in Dallas.
  • Private networks do not have DHCP, and you must manually manage your IP address space or install a DHCP server on your private network.
  • For optimal performance, set the private network adapter MTU to 1450 when configuring the NIC at the OS level.
  • We also have guides to configure multiple private networks.

OpenBSD 6.x

Add the following lines to the /etc/hostname.vio1 file. Replace 10.10.10.3 with your IP address.

inet 10.10.10.3 255.255.0.0
!ifconfig vio1 mtu 1450

Reboot the system.

reboot

Manage Private Networks via API

The FastyCloud API offers several endpoints to manage private networks.

Was this article helpful?
Dislike 0
Views: 85