You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
dmudgeau
changed the title
Cannot connect to Pure VPN
Cannot connect to Pure VPN TUNSETIFF tun: Operation not permitted
Oct 16, 2024
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
The text was updated successfully, but these errors were encountered: