Created
February 27, 2019 10:06
-
-
Save say8425/f26e9f8979b4ad8bb5ba2aaa410d3b38 to your computer and use it in GitHub Desktop.
Install SoftEtherVPN on Ubuntu 18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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