what happened to network utility? How can I ping?
Does another program have the same capability?
Does another program have the same capability?
Network Utility had been retired a couple macOS releases ago, and, although you could find it with Spotlight, it didn’t function and instead referred you to Terminal commands.
To ping a host, just use this command:
ping example.com
If I remember correctly, Network Utility defaulted to 10 attempts. You can achieve the same behavior:
ping -c 10 example.com
Pro Tip: You can see see all available configuration options by typing in the Terminal:
ping --help
Network Utility had been retired a couple macOS releases ago, and, although you could find it with Spotlight, it didn’t function and instead referred you to Terminal commands.
To ping a host, just use this command:
ping example.com
If I remember correctly, Network Utility defaulted to 10 attempts. You can achieve the same behavior:
ping -c 10 example.com
Pro Tip: You can see see all available configuration options by typing in the Terminal:
ping --help
Terminal
ping -c 4 host
what happened to network utility? How can I ping?