soft/softether
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[soft]]
* softether [#o3368227]
** ビルドしてインストール [#d99f908a]
参考~
[[https://qiita.com/Shachihoko/items/543eea4c95153c719224]]
ソースを取得
git clone https://github.com/SoftEtherVPN/SoftEtherVPN_S...
ビルドに必要なパッケージ
sudo apt install build-essential libreadline-dev libssl-...
configure
./configure
armの場合はMakefileから-m64のオプションを削除する
sed -i -e s/ -m64//g Makefile
コンパイルとインストール
make -j4
sudo make install
**自動起動 [#oacfc7d3]
/etc/systemd/system/vpnserver.service を以下の内容で作成
[Unit]
Description=SoftEther VPN Server
After=network.target network-online.target
[Service]
ExecStart=/usr/bin/vpnserver start
ExecStop=/usr/bin/vpnserver stop
Type=forking
RestartSec=3s
[Install]
WantedBy=multi-user.target
有効化
systemctl start vpnserver
systemctl enable vpnserver
終了行:
[[soft]]
* softether [#o3368227]
** ビルドしてインストール [#d99f908a]
参考~
[[https://qiita.com/Shachihoko/items/543eea4c95153c719224]]
ソースを取得
git clone https://github.com/SoftEtherVPN/SoftEtherVPN_S...
ビルドに必要なパッケージ
sudo apt install build-essential libreadline-dev libssl-...
configure
./configure
armの場合はMakefileから-m64のオプションを削除する
sed -i -e s/ -m64//g Makefile
コンパイルとインストール
make -j4
sudo make install
**自動起動 [#oacfc7d3]
/etc/systemd/system/vpnserver.service を以下の内容で作成
[Unit]
Description=SoftEther VPN Server
After=network.target network-online.target
[Service]
ExecStart=/usr/bin/vpnserver start
ExecStop=/usr/bin/vpnserver stop
Type=forking
RestartSec=3s
[Install]
WantedBy=multi-user.target
有効化
systemctl start vpnserver
systemctl enable vpnserver
ページ名: