Home Blog

Port

Authority


In this blog, we will be looking at ports, and no, not the boat kind. I’m going to try to fit in all the ports you will need to know for the A+ exam, but there are a lot, so I’ll try my best.

We will be going in numerical order here, so the first port is, of course, port 21, FTP (File Transfer Protocol) This one is pretty self explanatory, especially if you have ever used something like Filezilla (A 3rd party file transfer program) that allows you to transfer files over FTP. This is commonly done to transfer files to IoT devices, like a Raspberry Pi and the like, so you don’t have to keep moving the SD card back and forth. As of 2021 however, browsers no longer support FTP by default, so you would need a 3rd party software like mentioned before if you want to transfer files.

SSH (Secure Shell … Protocol, don’t ask why it isn’t SSP) is at port 22 is used to securely connect to a remote (as in not the one you are using, not necessarily far away) computer (and in the most cases servers) and run commands on it. Harking back to the FTP use case, this is also very useful for a Raspberry Pi, so you don’t have to hook up a monitor and keyboard to the device, you can just use SSH to remotely run commands off your own machine.

Next up is Telnet at port 23. Now, what do you think Telnet stands for? I bet you are thinking “Something network”, but would you have guessed it is short for “Teletype Network”? Telnet is, similar to SSH, used to remotely type on a keyboard. It is not a huge system still tho, mostly due to it becoming obsolete and being replaced by better, more secure protocols.

Next up, of course, is port 25, SMTP or Simple Mail Transfer Protocol, just like the name says, it is a simple protocol for transferring mail. Or maybe a protocol to transfer simple mail. Either way, you have mail, it’ll deliver it. If you are using a 3rd party email software (gmail, yahoo, etc.) they do all this work for you, but if you want to set up your own email server, you need to configure it as an SMTP server. Then you need to get into the nitty gritty with IMAP and POP3, but that is out of the scope of this blog, we are just doing a quick run down on the ports.

We are getting close to the end of this blog, so it looks like we will be having to split up this topic, but for the final one on here, let’s look at DNS or Domain Name Service. It lies on port 53 and might be the most useful of all the ports. Without DNS, you wouldn’t be able to go to google.com, you would have to google’s IP address directly. See the way DNS works is it takes the domain name provided by you, and does a look up for the ip address associated with it. And depending on where you are in the world, it might be a different IP, as Google is not stored on one single IP, but on many all over the place, so knowing exactly which IP to go to wherever you are would be very confusing.