>


Installing OpenVPN Access Server

Hi there, in this post I'll create some bash files in linux (ubuntu) for easy installation of openvpn access server. So, all we need is a fresh or old installation of linux (I recomment ubuntu). In the terminal we need to create the file with extension ".sh". sudo nano openvpn.sh or sudo vim openvpn.sh We gonna write into the file the following lines for Ubuntu 18(x86_64), Ubuntu 20(x86_64),Ubuntu 20(arm64), Ubuntu 22(x86_64), Ubuntu 22(arm64). Ubuntu 18(x86_64) - download file #!/bin/bash apt update wait apt upgrade -y wait echo The update was...
Read More

in Linux by Publisher

Sep

13


Netplan

For fast and simple configuration you can use our Netplan Generator. Here we have a collection of example netplan configurations for common scenarios. Configuration To configure netplan, save configuration files under /etc/netplan/ with a .yaml extension (e.g. /etc/netplan/config.yaml), then run sudo netplan apply. This command parses and applies the configuration to the system. Configuration written to disk under /etc/netplan/ will persist between reboots. Using DHCP and static addressing To let the interface named 'enp3s0' get an address via DHCP, create a YAML file with the following:...
Read More