红联Linux门户
Linux帮助

ping: icmp open socket: Operation not permitted的解决办法

发布时间:2016-09-07 09:32:26来源:linux网站作者:276815076
ping: icmp open socket: Operation not permitted 的解决办法:为ping加上suid即可。
 
报错时ping的属性:
[root@localhost ~]# ls -l /usr/bin/ping
-rwxr-xr-x 1 root root 44896 Mar 23 18:06 /usr/bin/ping
 
给ping加上suid:
[root@localhost ~]# chmod u+s /usr/bin/ping
[root@localhost ~]$ ls -l /usr/bin/ping
-rwsr-xr-x 1 root root 44896 Mar 23 18:06 /usr/bin/ping
 
然后就能正常执行了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23943.html