Did Apple really remove Network Utility from macOS, and when?+
Yes. It was fully functional through macOS Catalina 10.15. Big Sur 11, in June 2020, deprecated it: the bundle was still in /System/Library/CoreServices/Applications/, but the tabs no longer did anything. By Monterey 12 it was reported gone, with the `networkQuality` command line tool offered as a partial consolation. On macOS 27.0 (build 26A5388g) it is absent from both /System/Library/CoreServices/Applications/ and /System/Applications/Utilities/. Apple's support pages describing it are still online, but they are frozen at the macOS 10.15 URL path and were never updated.
Which of the six tools actually work on iPhone and iPad?+
Five: ping, DNS lookup, whois, MX lookup and the DNSBL blacklist check, plus the network-interfaces view. Traceroute is the exception — SSHive does not implement one on iOS, so there is no real traceroute on iPhone or iPad and we will not claim one. If you need a hop-by-hop path, run it from the direct-download Mac build or the Windows build.
Is SSHive's ping a real ICMP ping?+
On the direct-download Mac app, yes: it runs the system `ping -c 10` and streams the raw output, `icmp_seq`, TTL and the statistics block included. On the Mac App Store build, on Windows, on iPhone and on iPad it is a TCP-connect probe to port 80 instead, because App Sandbox and iOS do not grant raw ICMP sockets. Two practical consequences: measured RTT includes TCP handshake overhead, so it reads slightly high, and a host whose port 80 is firewalled — dropping the probe rather than refusing it — shows as unreachable even though it answers ICMP. A port that is merely closed sends a RST, and SSHive counts that as a reply.
Why is traceroute missing from the Mac App Store version?+
App Sandbox does not grant ICMP raw sockets. A traceroute has to set the IP TTL on each outgoing probe and then read the ICMP time-exceeded replies that routers send back — and reading ICMP requires a raw socket, which no entitlement Apple offers gives to a sandboxed app. Rather than fail silently, the Mac App Store build renders the Traceroute card greyed out with that explanation. If you need traceroute on a Mac, use the free direct-download build, which runs the system `traceroute -m 30`.
Are the network tools free, or do they need Pro?+
Free — all six, on Mac, Windows, iPhone and iPad. None of them goes through the licence check, so there is no upgrade prompt, no ad overlay before a result, and no account to create. You can install the app, run a whois and never see a paywall. SSHive Pro is a separate one-time purchase (about $9.99, Universal Purchase across Mac, iPhone and iPad, no subscription) that covers the remote-access side of the app. It does not gate the diagnostics on any platform.
Does SSHive send my lookups through a third-party API?+
WHOIS queries open a TCP connection to port 43 on the registry or registrar server directly — the desktop build chains up to three hops (two referrals) to reach the authoritative server, the mobile build starts at IANA and follows one." Apply the same fix in the deepDive: "chains up to three hops, two referrals deep, with a ten-second timeout per hop".
Is this a complete Network Utility replacement?+
Not a literal one, and we would rather say so up front. Ping, Lookup, Traceroute (Mac direct download), Whois and the Info tab's interface list all have equivalents here. Port Scan and Netstat do not — use nmap and `netstat -an` or `lsof -i` in Terminal for those. Finger is a dead protocol nobody needs. In exchange you get two things Network Utility never had, and that no clone of it ships: MX lookup and DNSBL blacklist checking, on iPhone and iPad as well as the Mac.