Open Sispheor opened 4 years ago
Same here, a year later. Looks like abandonware.
wireguard-socks-proxy | [#] ip link add peer1 type wireguard
wireguard-socks-proxy | RTNETLINK answers: Operation not permitted
wireguard-socks-proxy | Unable to access interface: Protocol not supported
wireguard-socks-proxy | [#] ip link delete dev peer1
wireguard-socks-proxy | Cannot find device "peer1"
Try adding --privileged
to the docker run
command.
I got similar error, I need to add --sysctl net.ipv6.conf.all.disable_ipv6=1
to docker run command to fix it and remove all ipv6 address from wireguard conf
docker run -d --rm --sysctl net.ipv6.conf.all.disable_ipv6=1 --cap-add=NET_ADMIN \
--name wireguard-socks-proxy \
--volume wg:/etc/wireguard/:ro \
-p 1080:1080 \
kizzx2/wireguard-socks-proxy
Hi, this is the error I get on ubuntu 18.04