Skip to main content
Solved

Enable ping on hypserscale

  • July 2, 2024
  • 2 replies
  • 311 views

Forum|alt.badge.img+6

Hello,

 

I need to enable ping to hyperscale nodes for monitoring purposes.

 

Is there a specific way to do it or standard linux commands need to be used?

 

Thanks

Best answer by Chris Hollis

Hi @Sandy11 

My research indicates the following commands can be run to enable ping:

 

firewall-cmd --zone=block --add-icmp-block-inversion --permanent

firewall-cmd --zone=block --add-icmp-block=echo-request --permanent

systemctl restart firewalld

 

Note, each line is a seperate command.

Feel free to give this a go and let me know how it goes.


Regards,

Chris

2 replies

Chris Hollis
Vaulter
Forum|alt.badge.img+14
  • Vaulter
  • Answer
  • July 4, 2024

Hi @Sandy11 

My research indicates the following commands can be run to enable ping:

 

firewall-cmd --zone=block --add-icmp-block-inversion --permanent

firewall-cmd --zone=block --add-icmp-block=echo-request --permanent

systemctl restart firewalld

 

Note, each line is a seperate command.

Feel free to give this a go and let me know how it goes.


Regards,

Chris


Forum|alt.badge.img+6
  • Author
  • Novice
  • July 4, 2024

Thanks, it worked perfectly.