DEV Community

Roy
Roy

Posted on

run ping command as normal user in wsl2

run getcap /bin/ping on a normal linux distribution,

$ getcap /bin/ping
/bin/ping = cap_net_raw+ep

change capability on the /bin/ping of wsl2

setcap cap_net_raw+ep /bin/ping
Enter fullscreen mode Exit fullscreen mode

Top comments (0)