Using the internet or local network has become very common in our day-to-day lives. We use a lot of software that requires a reliable network connection, whether that is an internet browser, remote software, or a streaming application, on occasion there can be instances where the strength of the network can cause performance or quality issues, like the buffering of a video. Nobody wants that or needs that, in this article, I will briefly demonstrate how you can check if your network is the cause of your woes and if it needs fixing.
Understanding an Unstable Network Connection
When connecting to a website, remote software, server, or anything else, your computer initiates a conversation between it and the end machine to start sending and receiving information. At times computers can fail to send and receive information for various reasons, this is known as a connection drop. If you are constantly experiencing loading screens when using an application that is communicating out through the network, it could well be that your computer is experiencing connection drops.
When a computer sends information across to another computer and receives information back, it takes a certain amount of time, which is measured in ms (milliseconds). The lower the ms the shorter the amount of time for your computer to load whatever it is being requested to load. If it takes a long time for a packet (A packet is a small amount of data sent through the network) to come back to your machine, you will likely experience some sort of quality, loading, or performance issues with your application.
Checking for Connection Drops Using Command Prompt
Windows machines have a built-in application called command prompt, which can be used to test your network connection. To access the command prompt search for 'CMD' or 'Command Prompt' in your Windows start search bar and open it. Once you are in the command prompt, to test the network you need to write and execute a command.
Let's say you are using YouTube and find that it is constantly buffering and slow, simply type in the command below within command prompt and hit enter to start sending the test packets of information to YouTube.
ping www.YouTube.com -t
The word ping is the command, the website is the destination of where we want to send the packets of information, and the -t is an addition to the ping command to make the packets of information continually send, without the -t, your computer would send the packets of information 4 times and stop.