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
We inherit this issue from https://github.com/tatsushid/go-fastping, ping command using raw sockets needs either root user or setcap cap_net_raw+ep genet. Genet should check for uid=0 or maybe for the capability.
The text was updated successfully, but these errors were encountered:
Another issue is that recent kernels restrict the capability to use raw ping,
sudo sysctl net.ipv4.ping_group_range net.ipv4.ping_group_range = 1 0
practically disables this feature, one needs to use a better range like: sudo sysctl -w net.ipv4.ping_group_range="0 65535"
WARNING! The previous command will enable the capability to all users
We inherit this issue from https://github.com/tatsushid/go-fastping, ping command using raw sockets needs either
root
user orsetcap cap_net_raw+ep genet
. Genet should check foruid=0
or maybe for the capability.The text was updated successfully, but these errors were encountered: