Ping feature should support pinging hosts by name #386
Replies: 5 comments
-
This is already possible. The input fields are labeled as |
Beta Was this translation helpful? Give feedback.
-
Weird - I tried doing that earlier, but it gave me errors.
Anyway, if this is supposed to work, I think the label could be clearer. |
Beta Was this translation helpful? Give feedback.
-
I'm also unable to ping by Hostname/FQDN/mDNS. Log says this every 3s for every host with an address instead of an IP:
And if I manually try to wake up that host (which is already turned on, btw):
Same thing for a host that is actually turned off:
If I use an actual IP instead of a name, everything works fine Using UpSnap 4.2.5 in a Docker container (via Portainer "stack"), with the following composer file:
Host is an Ubuntu 22.04 server with Any ideas? |
Beta Was this translation helpful? Give feedback.
-
I did a little research what the issue here could be. I think it's an issue with docker using the host network: moby/moby#38531 Maybe explicitly telling docker what dns to use will fix it. For you docker-composer.yml, try: version: "3"
services:
upsnap:
container_name: upsnap
image: ghcr.io/seriousm4x/upsnap:4
network_mode: host
restart: unless-stopped
volumes:
- ./data:/app/pb_data
dns:
- 192.168.0.1 Or |
Beta Was this translation helpful? Give feedback.
-
Not sure why changing the DNS entry will help solving multicast (mDNS) resolution. My DNS "server" is my router, but it acts just as a relay for my ISP's DNS Server, and it does not resolve host names in the LAN. But let's try anyway: With the
And of course, |
Beta Was this translation helpful? Give feedback.
-
The ping feature currently only supports pinging hosts by their IP addresses. On my network, my non-server machines use non-static DHCP, but with mDNS. Therefore I need to be able to ping host by host name e.g.
mypc.local
.Beta Was this translation helpful? Give feedback.
All reactions