Created 08-01-2022 07:16 PM
How to check if one node is connected to another node?
Created 08-01-2022 11:11 PM
Hi @Big-dAta
A simple test would be a ping test from the source node to the target node.
#ping <ip-address-of-target-node>
You can also use Telnet to check if the other node is listening on a specific port.
# telnet <ip-address-of-target-node> <port>
Created 08-01-2022 11:11 PM
Hi @Big-dAta
A simple test would be a ping test from the source node to the target node.
#ping <ip-address-of-target-node>
You can also use Telnet to check if the other node is listening on a specific port.
# telnet <ip-address-of-target-node> <port>
Created 08-01-2022 11:48 PM
Thank you @rki_
This solution is really helpful 😊