Skip to content

400 Software Development


tailscale

create tun node (needed on virtual devices)

tun/tap is a virtual network node used in VPNs

cd /dev
sudo mkdir net
sudo mknod net/tun c 10 200
sudo chmod 0666 net/tun

Visit: Tailscale · Best VPN Service for Secure Networks

WSL workaround

Tailscale network not recognized within wsl, following workaround enables it.

# disable ipv6; only have to do this once
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1

See also