https://github.com/magna-z/docker-softether-vpn
SoftEther VPN Server
https://github.com/magna-z/docker-softether-vpn
docker docker-image softether softether-vpn
Last synced: about 2 months ago
JSON representation
SoftEther VPN Server
- Host: GitHub
- URL: https://github.com/magna-z/docker-softether-vpn
- Owner: magna-z
- License: apache-2.0
- Created: 2018-03-30T20:57:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-13T21:30:39.000Z (about 6 years ago)
- Last Synced: 2025-05-14T09:51:38.948Z (about 1 year ago)
- Topics: docker, docker-image, softether, softether-vpn
- Language: Dockerfile
- Homepage: https://softether.org
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[SoftEther VPN Project](https://www.softether.org)
---
Based on Alpine Linux.
Documentation:
- [vpnserver](https://www.softether.org/4-docs/1-manual/3._SoftEther_VPN_Server_Manual)
- [vpnclient](https://www.softether.org/4-docs/1-manual/4._SoftEther_VPN_Client_Manual)
- [vpnbridge](https://www.softether.org/4-docs/1-manual/5._SoftEther_VPN_Bridge_Manual)
- [vpncmd](https://www.softether.org/4-docs/1-manual/6._Command_Line_Management_Utility_Manual)
Current version: **4.29, build 9680, rtm**
### Prepare and run (with directory "/var/docker/softether-vpn" as example)
```bash
mkdir -p /var/docker/softether-vpn && \
cd /var/docker/softether-vpn && \
\
touch vpn_server.config && \
mkdir -p packet_log security_log server_log && \
chmod 600 vpn_server.config && \
chmod 700 packet_log security_log server_log && \
\
docker run -d \
--restart always \
--name softether-vpn \
--network host \
-v $PWD/vpn_server.config:/usr/vpnserver/vpn_server.config:rw \
-v $PWD/packet_log:/usr/vpnserver/packet_log:rw \
-v $PWD/security_log:/usr/vpnserver/security_log:rw \
-v $PWD/server_log:/usr/vpnserver/server_log:rw \
magnaz/softether-vpn
```