docker-openvpn-client
docker-openvpn-client copied to clipboard
OpenVPN client with killswitch and proxy servers; built on Alpine
fixing `sudo docker run --rm -it -e ALLOWED_SUBNETS="" -e CONFIG_FILE="" --name=openvpn-client --cap-add=NET_ADMIN --device=/dev/net/tun --volume="/home/ubuntu/vpn_new:/config" dockeropenvpnclient:latest using openvpn configuration file: **** /usr/local/bin/entry.sh: line 41: AUTH_SECRET: unbound variable` and added ability to...
@wfg Thanks for this repo. I just checked out the master branch and tried to build and run an OpenVPN and a proxy container with docker compose. However the OpenVPN...
I was not able to connect from my local network to the open port from one of the docker containers, and while debugging I noticed that the reason was that...
I successfully ran the openvpn configuration with the following command, and then curl -x socks5://127.0.0.1:1080 https://www.cloudflare.com/cdn-cgi/trace -4 successfully used the VPN network, but I found socks5 can't pass through UDP...
Hi there. I was troubleshooting `no openvpn configuration file found` errors I was getting from image in `ghcr.io/wfg/openvpn-client:latest`. Going back through the commit history, I see it was looking for...
I'm running the container via portainer with the following docker compose: """ volumes: openvpn_data: driver: local default: driver: bridge ipam: driver: default config: - subnet: 192.168.128.0/24 openvpn: image: yacht7/openvpn-client container_name:...
I plan on exposing the following performance tunables. I was going to play with `--txqueuelen` but received the following `openvpn` warning in the log: > 2023-02-02 15:00:52 Note: Cannot set...
It'd be great to add, optional, IPv6 support.
Hi, As mentioned in #87, when the container is run via `podman`, the network device is `tun0` rather than the hard coded `eth0`. Perhaps adding smarts to `entry.sh` to determine...