Setup my container and placed the .ovpn file in the /config/openvpn directory
first error I got was:
ERROR: Cannot open TUN/TAP dev /dev/net/tun: No such file or directory (errno=2)
Found a possible solution to run this in the start.sh script and the error went away:
mkdir -p /dev/net
mknod /dev/net/tun c 10 200
chmod 600 /dev/net/tun
/etc/init.d/openvpn restart
Now I get this error and I don't know how to fix it suggestions are a permissions issue
ERROR: Cannot ioctl TUNSETIFF tun: Operation not permitted (errno=1)
I have tried with multiple .ovpn profiles from purevpn TCP and UDP and different servers.
Setup my container and placed the .ovpn file in the /config/openvpn directory first error I got was:
ERROR: Cannot open TUN/TAP dev /dev/net/tun: No such file or directory (errno=2)
Found a possible solution to run this in the start.sh script and the error went away: mkdir -p /dev/net mknod /dev/net/tun c 10 200 chmod 600 /dev/net/tun /etc/init.d/openvpn restart
Now I get this error and I don't know how to fix it suggestions are a permissions issue
ERROR: Cannot ioctl TUNSETIFF tun: Operation not permitted (errno=1)
I have tried with multiple .ovpn profiles from purevpn TCP and UDP and different servers.
I would really love to get this working! Thanks