- This topic has 6 replies, 3 voices, and was last updated 2 years, 1 month ago by .
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.
Home › Forums › FABRIC General Questions and Discussion › Destination Host Unreachable From Node
To test network connectivity on a newly created node, I used “ping 8.8.8.8” and got as reply “Destination Host Unreachable.”
Also, based on basic_gpu_devices.ipynb I tried to add the Cuda repo but got “Failed to connect to developer.download.nvidia.com port 443: No route to host”.
What might be causing this issue?
Can you try doing ‘ping google.com’? I believe I had a similar issue with the IP not resolving, but specifying the domain name worked for me.
Yes, ‘ping google.com’ works. But how can we solve the “Failed to connect to developer.download.nvidia.com port 443: No route to host” issue?
The command that I am trying is:
sudo dnf config-manager –add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo
Which FABRIC site is your node on?
It’s in CLEM.
Image: default_rocky_8
Image Type: qcow2
Host: clem-w1.fabric-testbed.net
Site: CLEM
This is because that Nvidia site is not setup for IPv6 and FABRIC’s CLEM site uses IPv6 addresses on its management network.
One reasonable workaround for this is to use the NAT64 services described here: https://nat64.net/
There is an example FABRIC Jupyter notebook in your JupyterHub container called “Accessing IPv4 Sites from IPv6 Nodes” that shows how to set this up on a FABRIC node.
Paul
Thanks a lot for the information!