Skip to content

Instantly share code, notes, and snippets.

@say8425
Created February 27, 2019 10:06
Show Gist options
  • Save say8425/f26e9f8979b4ad8bb5ba2aaa410d3b38 to your computer and use it in GitHub Desktop.
Save say8425/f26e9f8979b4ad8bb5ba2aaa410d3b38 to your computer and use it in GitHub Desktop.
Install SoftEtherVPN on Ubuntu 18
# Adding SoftEtherVPN PPA to your system
# https://code.launchpad.net/~paskal-07/+archive/ubuntu/softethervpn
sudo add-apt-repository ppa:paskal-07/softethervpn
sudo apt-get update
# Upgrade System
sudo apt-get update && sudo apt-get upgrade
# Install SoftEtherVPN
sudo apt-get install softether-vpnserver
# Add systemd service
sudo vi /lib/systemd/system/vpnserver.service
# Put following contehtn within it
[Unit]
Description=SoftEther VPN Server
After=network.target
[Service]
Type=forking
ExecStart=/usr/bin/vpnserver start
ExecStop=/usr/bin/vpnserver stop
[Install]
WantedBy=multi-user.target
# Run Systemd
sudo systemctl enable vpnserver
sudo systemctl start vpnserver
# Run SoftEtherVPN
sudo vpnserver stop
sudo vpnserver start
[Unit]
Description=SoftEther VPN Server
After=network.target
[Service]
Type=forking
ExecStart=/usr/bin/vpnserver start
ExecStop=/usr/bin/vpnserver stop
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment