Problem description
Unable to ping the Druva Oracle PBS server from outside the network. Ping/ICMP echo requests are not receiving a response.
Cause
The Linux kernel parameter in Ubuntu 22.04 OS was configured to ignore ICMP echo requests, preventing responses to ping from external systems.
Resolution
To resolve this issue, we have to disable the ICMP echo setting in the OS kernel Parameter.
Steps:
Log in to the PBS Server.
Verify the ICMP echo ignore setting:
βsysctl net.ipv4.icmp_echo_ignore_allIf the value is 1, update it to 0 to allow ICMP echo responses:
sysctl -w net.ipv4.icmp_echo_ignore_all=0Make the change persistent across reboots by editing /etc/sysctl.conf and adding or updating the line:
βnet.ipv4.icmp_echo_ignore_all=0Reload the sysctl configuration:
βsysctl -pConfirm that the server now responds to ping from external hosts.
Verification
Test the ping from outside the VM.
Do a reboot to check if the configuration persists.
