Re: Wii SSH isn't working
Harold Gutch <[email protected]> Mon, 5 May 2025 19:26:57 +0200
| Newsgroups | gmane.os.netbsd.ports.powerpc |
|---|---|
| Message-ID | <[email protected]> |
On Mon, May 05, 2025 at 11:52:21AM -0400, Anne DeCusatis wrote: > Hi, > > > I haven't used made *heavy* use of the Wii's wifi, but I have tested > > it briefly on both current and netbsd-10 (well, actually a 10.1 > > release with the wifi patches backported) and I didn't have any issues > > like these. My first guess is that it's a resolver issue of sorts. > > Thanks very much for the hints and for confirming it's something with > my setup in particular! > > I now suspect the issue is related to my Raspberry Pi's Pi-Hole > network configuration. > [...] > On the wii: > host tvpi returns the correct IP assignment of .5 as well as an ipv6 address. > host 192.168.x.5 gives me: Host 5.x.168.192.in-addr.arpa. not found: 3(NXDOMAIN) I suspect it's the latter, sshd checks if forward and reverse lookups of clients connecting match. How long does the latter take, do you get the NXDOMAIN "instantaneously"? Technically the right thing to do would be adding the hosts to your DNS configuration. I have an OpenWRT running dhcpd and when hosts acquire a DNS lease with a name, OpenWRT also adds that to its resolver, so my Wii was able to look up the connecting client in DNS. I don't know how easy or hard it would be to incorporate something in any way similar to your setup, but an entirely different workaround you could try is adding the following line to /etc/hosts on your Wii: 192.168.x.5 tvpi (obviously with the x replaced like what makes sense for your network). Can you give that a try and see if it helps? cheers, Harold