1) /etc/hosts or DNS file cannot resolve the host
2) ping operation fails with below error:
[gpadmin@hdm4] ping -c 1 admin.pivotal.com ping: icmp open socket: Operation not permitted You may see such an error if setuid bit (s) is not set on /bin/ping command. Verify using: [INCORRECT] ls -al /bin/ping -rwxr-xr-x 1 root root 40760 May 20 2011 /bin/ping [CORRECT] [root@pccadmin ~]# chmod 4755 /bin/ping [root@pccadmin ~]# ls -tlr /bin/ping -rwsr-xr-x. 1 root root 40760 Jul 18 2011 /bin/ping where: s instead of x in the owner permissions means that the setuid is enabled, so this file will be executed with root permissions by all users.
where: s instead of x in the owner permissions means that the setuid is enabled, so this file will be executed with root permissions by all users.
[gpadmin@admin] ssh hdm4.pivotal.com [gpadmin@hdm4] ping -c 1 admin.pivotal.com