News
3 new Serverspace GPT API Language Models available now!
WB
William Bell
May 1 2020
Updated June 7 2023

Connecting VyOS server to a network

VPS VyOS

This guide describes how to configure a VyOS server in private network.

VyOS VDS's are often used as routers and can handle VPNs of different types and configurations.

Setup

After VPS connection to a LAN in a control panel, connect to the server over ssh and enter VyOS configuration mode:

config
Copy

Note: In normal mode, some utilities are unavailable and command prompt ends up with “$“, while in configuration mode it ends up with “#“.

Display all available interfaces:

show interfaces
Copy
ethernet eth0 {
address XXX.XXX.XXX.XXX /24
duplex auto
hw-id
smp_affinity auto
speed auto
}
ethernet eth1 {
duplex auto
hw-id
smp_affinity auto
speed auto
} loopback lo {
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Copy

Use set command to set local IP address; if DHCP option is disabled for the network, then take an address from a control panel on your VPS settings tab and set it as a value (see figure below):

set interfaces ethernet eth1 address /24
Copy

For example:

set interfaces ethernet eth1 address 10.0.0.2/24
Copy

If DHCP option is enabled, execute the following command:

set interfaces ethernet eth1 address dhcp
Copy

Note: If an error is returned, try including a current user in a superuser group (for example, usermod -a -G root ).

Check modifications:

show interfaces
Copy
ethernet eth1 {
+ address /
duplex auto
hw-id 00:50:56:01:1b:9f
smp_affinity auto speed auto
}
loopback lo {
}
1
2
3
4
5
6
7
8
Copy

Modified lines are marked with “+”.

If everything is OK, then commit and save changes:

commit
save
Copy

Exit configuration mode:

exit
Copy

Check the configured local IP address of VyOS interface:

show interfaces
Copy
Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down
Interface
---------
eth0
eth1
lo
IP Address
----------
XXX.XXX.XXX.XXX/24
10.0.0.2/24
127.0.0.1/8
::1/128
S/L
---
u/u
u/u
u/u
Description
-----------
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Copy

Now, you can use the configured machine as a router or other node in a private network.


Vote:
5 out of 5
Аverage rating : 5
Rated by: 1
33145 North Miami, FL 2520 Coral Way apt 2-135
+1 302 425-97-76
700 300
ITGLOBAL.COM CORP
700 300
We use cookies to make your experience on the Serverspace better. By continuing to browse our website, you agree to our
Use of Cookies and Privacy Policy.