Skip to main content

5 Things To Consider When Buying Your Modem


We previously wrote about why renting a modem from your Internet Service Provider is a bad idea both financially and performance wise. Delving deeper into the topic, here are 5 things you should look out for when shopping around for your modem.

1. Compatibility with Internet Service Provider

We can't emphasize this enough. Assuming you're locked into a contract with your Internet provider, the most important consideration is whether your modem is compatible with your existing provider and subscription plan. How do you find that out? Most Internet providers would have a listing of the various modems that they support. We've extracted those for Comcast, Time Warner, Cox and AT&T below:

Comcast | Time Warner | COX | AT&T   

As an additional step, we also recommend that you call your Internet provider after narrowing down your choices, just to make sure.

2. Brand new / Refurbished

On the whole, buying your modem instead of renting will save you between $240 to $480 over the next 2 - 4 years. But you can save even more by buying a refurbished modem instead.

So what are refurbished electronics? Most refurbished products are virtually new equipment which were either defective or damaged by the vibration of shipment. They are then returned to the manufacturer to be fixed. The repaired units are then re-tested to verify that the repairs corrected the problem. These products are sold again as "refurbished."

If it's an older product which is refurbished, refurbishers replace the parts with a high failure rate, that are likely to cause problems.

The upside of refurbished products is that they have been tested even more than original products from the factory as part of the refurbishment process. On the downside, they may have minor scratches due to the extra handling.

Let's take the popular ARRIS SURFboard SB6141 DOCSIS 3.0 Cable Modem as an example. If you were to buy it brand new, it would cost you $89.99. But buying it refurbished would cost you only $69.99 instead.

3. Number of devices connecting to the Internet


If you have multiple devices connecting to the Internet over a wireless connection, in addition to a modem, you'll need a router which you can buy separately. While this has some performance advantages, we recommend getting a modem with a built-in wireless router so that you can avoid the worries of the devices being incompatible. One downside is that these 2-in-1 modems & routers tend to be a bit more pricey, retailing at around $120.

4.  DOCSIS

When searching for a modem, you're bound to come across DOCSIS. So what is DOCSIS? Short for Data Over Cable Service Interface Specification, it is an international telecommunications standard that  cable TV providers use to provide Internet access over their existing infrastructure.

There's DOCSIS 1.x, DOCSIS 2.0, DOCSIS 3.0 and beyond. In a nutshell, the higher the DOCSIS number, the better the performance. A DOCSIS 3.0 compatible modem supports 42 Mbit/s per downstream channel and 30 Mbit/s per upload channel. This means that a mid-range DOCSIS 3.0 modem with 8 downstream channels and 4 upstream channels will be able to support a download speed of around 343 Mbits/s.

Do note that no matter how "fast" your modem is, you will be limited by the speed of your Internet connection. If you have a 343 Mbit/s modem on a 100 Mbit/s Internet subscription, your download speed would still max out at 100 Mbit/s rather than 343 Mbit/s. Having said that, it doesn't hurt to have the extra horsepower, which can come in handy if you're offered free or promotional upgrades from time to time.     

5. Compatibility with devices

While this is very important and you should confirm that the router you intend to buy will work with your existing laptop, desktop and wireless devices, with industry standards this is becoming less of an issue these days. Do take a cursory look though.

So there you have it, our 5 most important things to consider when buying your own modem. We'd love to hear from you if there are any other factors we should consider.

Related Articles:
5 Features to consider when buying your router
[Buyer's Guide] Top 5 modems for 2016
[Buyer's Guide] Top 5 Routers for 2016 

Comments

Popular posts from this blog

How to View YouTube Shorts in the Regular YouTube Player

YouTube's "Shorts" is YouTube’s answer to TikTok and Instagram reels but let’s be honest, the YouTube Shorts player lacks some functionality, such as the ability to fast forward and go back in the video. However, you might be surprised to know that every video that loads in the "Shorts" player is actually a regular video, and by changing the URL slightly, you can load the same video in the regular player along with all the functionality of a traditional YouTube video. Changing the URL Changing the URL is the easiest way to switch the player from a technical standpoint. It’s so easy even your grandma can do it, as long as she knows how to type an address into the address bar of a browser.   Let’s use this super popular short video about AI taking over ping pong as an example. Look in the URL bar of a video playing in the "Shorts" player, where you should see the text Shorts/. Replace that text with watch?v= and load the new URL. So in this...

Create QR Codes in Excel With VBA

Need to automate the creation of QR Codes? Excel and VBA can help with that! Here's how to do it in less than 15 lines of code. What we're looking to do is have a URL in a cell and then we're going to use a function that we create in VBA call Google APIs to create the code. Here's a video that explains the whole process of creating a user defined function in VBA that will create QR Codes: Code to create QR Codes in Excel with VBA Open up your Visual Basic editor and insert the following code and then save. To call the function, type =GETQRCODES(Cell Address) where Cell Address is the address of the cell which contains a URL that you want to send your user to. Function GETQRCODES(QRCode As String)     Dim URL As String     URL = "https://chart.googleapis.com/chart?chs=100x100&&cht=qr&chl=" & QRCode     ActiveSheet.Pictures.Insert(URL).Select     With Selection.ShapeRange(1)         .Name = "QR_CODE_" & QRCode...

How To Turn Bluetooth On Windows 11

  Need to connect your Bluetooth device to a Windows 11 computer? You need to turn on Bluetooth on Windows 11 first. Here are all the ways to do so in Windows 11, including the Bluetooth Network Connections and Device Manager. 1. Quick Settings Menu Quick Settings menu usually found on the bottom right of the Windows Taskbar The easiest way to turn on Bluetooth on Windows 11 is to use the Quick Settings menu. The Quick Settings menu is the group of indicators that can be found on the bottom right of the screen, next to your date and time on the taskbar. Expanded Windows 11 Quick Settings menu that shows if Bluetooth is enabled Check whether the Bluetooth icon is colored. If it is, then Bluetooth is already turned on. If it is grey, click the Bluetooth icon to turn it on. Once you have clicked the Bluetooth icon, it will be colored, to indicate that Bluetooth has been enabled on Windows 11. By default, Bluetooth should already be listed in the Quick Settings list. If you...