HON’s Wiki # VyOS

Home / Networking

Contents

A Debian-based router OS, forked from Vyatta. Junos-like CLI.

Resources

TODO

Installation

See Installation (VyOS).

  1. For bare-metal:
    • Consider disabling Intel Hyper-Threading. It does little for memory-intensive applications like packet routing.
  2. For PVE/QEMU VM:
    • Set the disk size to e.g. 10GB. It will mostly only be used for 500MB VyOS images, logs, containers and other things you might have added.
    • Disable memory ballooning/memory sharing. VyOS does not use swapping so accidental overprovisioning that could starve the VyOS VM could cause errors.
    • Enable the QEMU agent option in PVE. VyOS comes with the agent installed.
  3. Download the latest rolling release (free) or LTS release (paid) ISO.
  4. Burn and boot from it (it’s a live image).
  5. Log in using user vyos and password vyos.
  6. Run install image to run the permanent installation wizard.
    • Keep the suggested image name to keep track of versions.
    • If asked about which config to copy, either one is fine.
  7. Remove the live image and reboot.

Minimum Configuration for Remote Access (Optional)

Steps to get SSH up ASAP so you can avoid the console. Assumes you already know how to configure VyOS, jump directly to “initial configuration” if not.

  1. Log in as vyos with the password you set during installation.
  2. Set an IPv4/IPv6 address for the interface you intend to connect through.
    1. Add address: set int eth eth0 address 10.0.0.10/24 (example)
    2. Add DHCP address (alternative): set int eth eth0 address dhcp (example)
  3. Set the default route as a static route, if you don’t connect from the connected network configured above and are not using DHCP.
    1. Add route: set protocols static route 0.0.0.0/0 next-hop 10.0.0.1
  4. (Optional) Set DNS servers.
    1. Add server: set system name-server <ip-address>
  5. Set the time zone. NTP servers are already configured, but might not be syncing yet.
    1. Set time zone: set system time-zone Europe/Oslo (example)
    2. Commit.
    3. Check time: run show date
  6. Add proper user, remove default user:
    1. Add new user: set system login <user> authentication plaintext-password "<password>"
    2. Commit, log out, log in as new user.
    3. Delete old user: delete system login user vyos
  7. Enable SSH, without root auth:
    1. Enable: set service ssh
  8. Commit, save and try to connect through SSH.

Initial Configuration

An example of a full-ish configuration. Skip any steps already done in “minimum configuartion for remote access”.

  1. Log in as user vyos and password as set in the installation (or vyos if using the live media).
    • It’ll drop you directly into operational mode.
  2. Enter configuration mode: configure
    • This changes the prompt from $ to #.
  3. Set the keyboard layout:
    1. Set: set system option keyboard-layout no (Norwegian)
    2. Apply: commit
  4. Set hostname:
    1. Hostname: set system host-name <hostname>
    2. Domain name: set system domain-name <domain-name>
  5. Set the DNS servers: set system name-server <ip-address> (for each server)
  6. Set the time zone: set system time-zone Europe/Oslo (example)
  7. (Optional) Replace the NTP servers:
    1. Remove default NTP servers: delete service ntp server
    2. Add new NTP servers: set service ntp server <server> (e.g. {0..3}.no.pool.ntp.org)
  8. (Optional) Enable Ctrl+Alt+Del reboot: set system options ctrl-alt-del-action reboot (or ignore)
  9. Set up a plain WAN-facing interface with an IP address (without LAG or VLAN):
    1. Show all Ethernet interfaces: run show interfaces ethernet detail
    2. Enter interface config: edit interfaces ethernet <if>
    3. Set the MAC address if missing (from show int ...): set hw-id <mac-addr>
    4. Set description: set description <description>
    5. (Alternative) Set static address (IPv4 + IPv6): set address <addr>/<prefix-length>
    6. (Alternative) Set to get IPv4 address from DHCPv4: set address dhcp
    7. (Alternative) Set to get IPv6 address from DHCPv6: set address dhcpv6
    8. (Alternative) Set to get IPv6 address from SLAAC: set ipv6 address autoconf
    9. (Optional) Apply firewall policies (from global): set firewall interface {local|in|out} {name|ipv6-name} <...>
  10. Set default routes: set protocols static route[6] <0.0.0.0/0|::/0> next-hop <next-hop> (for IPv4 and IPv6)
  11. (Optional) Setup basic SSHD:
    1. Enable server: set service ssh
    2. Disable reverse DNS lookup: set service ssh disable-host-validation
    3. (Optional) Disable password login (pubkeys only): set service ssh disable-password-authentication
    4. (Optional) Commit and log in through SSH instead of the console.
  12. Replace default user:
    1. (Note) You may want to skip ahead to the SSHD step so you can paste stuff vis SSH instead of manually writing it into the console.
    2. Enter new user: edit system login user <username>
    3. Set password: set authentication plaintext-password "<password>"
      • Remember quotation marks if the password string spaces.
      • To generate an encrypted-password instead of specifying it as plaintext, run openssl passwd -6 on a “safe” machine. (TODO Is this broken in 1.3? It only adds the last characters of the supplied text.)
    4. (Optional) Add your personal SSH pubkey:
      1. Set key type: set authentication public-keys <name> type ssh-rsa
      2. Set key (only the Base64-encoded part): set authentication public-keys <name> key <key>
    5. Commit and log into the new user.
    6. Delete the default user: delete system login user vyos
  13. (Optional) Set up a LAG interface:
    1. Enter interface config: edit interfaces bonding bond<n>
    2. Set member interfaces: set member interface <if>
    3. Enable LACP: set mode 802.3ad
    4. Set fast: lacp-rate fast
    5. Set hashing policy: set hash-policy layer2+3
    6. Configure as a normal interface.
  14. (Optional) Set up a VLAN interface:
    1. Enter the parent/physical interface config.
    2. Enter the VLAN subinterface config: edit vif <VID>
    3. Configure as a normal interface.
  15. (Optional) Set black hole route: set protocols static route[6] <prefix> blackhole (for IPv4 and IPv6)
  16. Enable LLDP: set service lldp interface all
  17. Set firewall:
    1. (Note) VyOS 1.4.xxx changed to a new firewall structure.
    2. Set options and default policies:
      1. edit firewall global-options
      2. set source-validation strict (uRPF)
      3. set all-ping enable
      4. set broadcast-ping disable
      5. set receive-redirects disable
      6. set ipv6-receive-redirects disable
      7. set ip-src-route disable
      8. set ipv6-src-route disable
      9. set log-martians disable
      10. set send-redirects disable
      11. set syn-cookies enable
      12. set twa-hazards-protection disable
    3. (OUTDATED) Create IPv4 and IPv6 rule sets. Note that IPv4 and IPv6 rule sets can’t share names, so you can suffix the names with -4 and -6 to avoid conflict.
    4. (OUTDATED) Attach rule sets to interfaces (typically “local” and “out”).
  18. Set banners:
    1. (Note) Newlines must be escaped with \n.
    2. Set pre-login banner: set system login banner pre-login "" (disable)
    3. Set post-login banner: set system login banner post-login ""
  19. Hardware tuning (bare metal):
    • (Note) VyOS automatically sets large RX/TX buffers (always?) and provides a config interface for other options now, so no need to add ethtool stuff to vyos-postconfig-bootup.script anymore.
    • (Note) For background info
  20. Commit and save: commit and save.

General Configuration

CLI

Basics

Tasks

Reset Admin Password

Reboot the device and wait for the boot screen. In the boot screen, select the “lost password change (KVM)” option. It will boot to into a prompt asking you to set a new password. After setting a new password, the device will automatically reboot.

Add Service

This example shows how to download an application to persistent storage and run it at boot as a service.

  1. Enter persistent storage: cd /usr/lib/live/mount/persistence/
  2. Create an opt dir to store apps in: mkdir opt and cd opt.
  3. Download the app: wget <whatever-v0> and extract it (keep the version number).
  4. Make a symlink without the version number: ln -s <whatever-v0> <whatever>
  5. Try to run the executable to make sure it works.
  6. Make a folder too keep systemd service files: mkdir systemd
  7. Create a service file for the application as systemd/<whatever>.service (see example below).
  8. Make sure the service works by manually adding it and starting it (see the script to do it automatically at boot).
  9. Add and start the service at boot by adding it through /config/scripts/vyos-postconfig-bootup.script (see example below).
  10. Reboot and make sure it works (systemctl status <whatever>.service).

Example service file (<whatever>.service):

[Unit]
Description=Node Exporter
After=network.target

[Service]
Type=simple
Restart=always
ExecStart=/usr/lib/live/mount/persistence/opt/node_exporter/node_exporter --collector.interrupts

[Install]
WantedBy=multi-user.target

Example /config/scripts/vyos-postconfig-bootup.script (excluding old stuff):

# ...

# Enable Node Exporter
if [[ -f /usr/lib/live/mount/persistence/opt/systemd/node-exporter.service ]]; then
    ln -s /usr/lib/live/mount/persistence/opt/systemd/node-exporter.service /etc/systemd/system/node-exporter.service
    systemctl daemon-reload
    systemctl enable --now node-exporter.service
fi

hon.one | HON95/wiki | Edit page