1000 FAQs, 500 tutorials and explanatory videos. Here, there are only solutions!
Perform a TELNET / TRACEROUTE command
This guide presents commands that can be executed to test a connection or a network and thus further specify the potential source of error.
Perform a Telnet…
TELNET
allows you to test the connection to a server without considering all the additional settings of a mail or FTP application in order to determine the source of a problem. If the connection does not go through on an SMTP server, for example, you will need to check if your firewall is not blocking port 587
or 465
.
… on macOS
- Look for Network Utility.
- Go to the
Ping
,Lookup
orTraceroute
tab depending on what you want to test. - You can also use a terminal application (command line interface, CLI) on your device and, depending on what you want to test, enter:
traceroute [server]
nc [server] [port]
Replace[server]
with the server name or its IP address, same for[port]
…
… on Windows
Enable Telnet in advance if necessary.
- Use a command-line interface (CLI) application like
Terminal
on your device, for example by typing Run thencmd
. - In the window that opens, depending on what you want to test, type:
tracert [server]
telnet [server] [port]
Example:telnet mail.infomaniak.com 587
(allows you to test the SMTP port if your software/email client does not allow sending emails)…
… on Android
- Use the application Simple Telnet Client which allows you to test very simply via 2 fields to fill in (for example
mail.infomaniak.com
and the port143
or993
)…
Perform a PING
PING
allows you to check if a machine is accessible via the Internet. You can also use this tool to ensure you are addressing the correct machine, for example during a DNS change, by checking the IP address obtained. It is possible to perform a ping
on a domain name, a hostname
or an IP address.