Hardening a small network, and the defaults that must not survive first boot

Objective 2.1 · Security · 28% of the exam

Why this matters

The small network is where a support technician has the most unilateral security influence and the least supervision. There is no policy, no architecture review and usually no one else who will ever look at the configuration. What you set up is what stands.

It is also the configuration most often left entirely at defaults, and defaults are published. The manufacturer's default administrator password for any given model is one search away, remote management is on by default on more devices than it should be, and the result is a router that can be reconfigured by anyone who finds it. This lesson is a short list of things to change and the reason each one matters.

The lesson

The administrator password, the firmware version, and remote management

Three changes before anything else, in this order.

The administrator password. Default credentials are published per model, and attacks against them are automated. Change it to something long and unique, and store it in the password manager — not on a sticker, because the sticker is readable by whoever is in the room, which for a business is the whole point of having a lock.

The firmware. Consumer routers receive updates irregularly and users never apply them. Check the version, apply what is available, and — the part that gets skipped — check whether the model is still supported at all. A router whose vendor stopped issuing firmware is permanently vulnerable and the honest recommendation is replacement. Saying so is not upselling; the device is a gateway with known unpatched flaws.

Remote management. Administration from the internet side should be off, and on many devices it is not. This is the single largest exposure on a small network: a management interface reachable from anywhere, protected by one password, on a device that may not have been patched in three years. Turn it off. If remote administration is genuinely needed, the answer is a VPN into the network, exactly as it was for remote desktop access.

While in there: turn off WPS, turn off UPnP unless something needs it, and disable any cloud management account that is not being used.

Changing the default subnet, DHCP scope, and why that is worth ten minutes

Two smaller changes with real value, and one that sounds clever and is not.

Changing the default subnet. Most consumer routers use 192.168.0.0/24 or 192.168.1.0/24, and so does almost everything else. Moving to something less common — anywhere in the private ranges — helps in two specific ways: it reduces collisions when a VPN connects two networks that turn out to be identical, which is a genuine and common headache, and it breaks the lazier class of cross-site attack that guesses the router's address from a web page. It is ten minutes and it is worth doing at setup, when nothing has to be renumbered.

Tightening the DHCP scope. Give out fewer addresses than the subnet holds, and reserve a block for devices with fixed addresses — the router, printers, servers, access points. This is administrative hygiene rather than security, and the security benefit is indirect: you can tell at a glance which addresses are in use by things you chose and which are leases.

What is not worth doing: disabling DHCP to keep people off the network. An attacker who has joined the wireless network sets a static address in thirty seconds, having watched the traffic to learn the subnet. Meanwhile every legitimate device needs manual configuration. It is the same shape as MAC filtering — real cost, no benefit.

Firewall rules, port forwarding, and UPnP as the hole nobody opened on purpose

The firewall on a small router does one thing well by default and can be undermined in three ways.

What it does by default: blocks unsolicited inbound connections, while allowing anything initiated from inside. That is the single most valuable property of a small network, and it means that by default nothing inside is reachable from outside.

Port forwarding deliberately opens a hole: traffic arriving on a port is sent to a specific internal machine. Every forward is an internal service published to the entire internet. Before creating one, the questions are: does this service need to be reachable from anywhere, is it patched, does it authenticate properly, and is there a VPN alternative? For remote desktop and file sharing the answer is essentially always the VPN.

DMZ host forwards everything to one internal machine. It is port forwarding with no restraint at all, it is offered as a troubleshooting convenience, and it should be treated as never appropriate on a small network.

UPnP lets applications open their own port forwards without asking anyone. That is the hole nobody opened on purpose: a game, a media server or a piece of software you did not know was installed can publish itself to the internet, and the administrator has no record of it. Turn it off, accept that one or two applications will need a manual forward, and gain the property that the firewall's configuration is what you set.

The audit worth doing on any small network you inherit: list every forward, and for each one find out what it points at and whether anyone still needs it. Forwards outlive the reason they were created.

Content filtering and DNS choices, and what each can and cannot enforce

Filtering is frequently requested, and being honest about its limits is part of doing it well.

DNS-based filtering points the network at a resolver that refuses to answer for categories of site. It is easy, it is cheap, it covers every device on the network without installing anything, and it is the usual answer for a small site.

What it cannot do:

  • Stop a device that uses its own resolver. Phones, browsers and applications increasingly use encrypted DNS to a provider of their choosing, which walks straight past the network's setting unless it is blocked as well.
  • Stop anything reached by address rather than by name.
  • Stop a VPN, which tunnels everything.
  • Distinguish content within a site.

Content filtering on the router inspects more and is limited by encryption: the overwhelming majority of traffic is encrypted end to end, so the device sees the destination and not the content. Products that claim otherwise either install a certificate on every device to intercept traffic — a significant decision with real privacy consequences — or are doing name-based filtering with a longer feature list.

What filtering is genuinely good for: preventing accidental access, blocking known-malicious domains (which is a real and worthwhile security benefit), and giving a household or a small office a default that matches its expectations.

What it is not: a control against someone who is trying. Saying that clearly to a customer who asks for filtering is more useful than installing something that will be bypassed and then trusted.

A written record of what was changed, because the next technician is you

The last step, and the one that makes every earlier step survivable.

Write down, and leave with the customer or in the ticket system:

  • The router model, firmware version, and the date you updated it.
  • The internal subnet, the DHCP range, and every reserved address with what it belongs to.
  • The wireless networks, their security mode, and where the passphrases are stored — not the passphrases themselves in an unprotected document.
  • Every port forward, what it points at, and why it exists.
  • Every setting you turned off, because "UPnP is disabled" is invisible and somebody will eventually turn it back on to fix a games console.
  • Where the administrator credentials are stored.

The reason is not bureaucratic. A small network is revisited months later, by someone who was not there, to fix something unrelated — and without a record, the safe choices are indistinguishable from accidents. A port forward with no explanation gets left in place because nobody dares remove it; UPnP gets re-enabled because nobody knew it was off deliberately.

The next technician is frequently you, eighteen months later, with no memory of any of it. The operational procedures objective at the end of this course makes this a formal requirement; on a small network with no policy behind it, it is simply the difference between a configuration and a pile of settings.

Practise what you just read

1. What is the largest single exposure on a typical small network?

Select one

  1. An old wireless protocol
  2. A shared passphrase known to former employees who no longer have any legitimate reason to be on the network
  3. Remote management reachable from the internet
  4. An unpatched workstation
Show answer

C. A management interface reachable from anywhere, protected by one password, on a device that may not have been patched in years. Turning it off is the single highest-value change available.

2. A router’s vendor has stopped issuing firmware. What is the honest recommendation?

Select one

  1. Apply the most recent firmware and monitor
  2. Disable its wireless radio
  3. Place it behind a second router so that the unpatched device is no longer directly exposed to the internet connection
  4. Replace it, because it is permanently vulnerable
Show answer

D. There is no configuration that repairs known unpatched flaws in a gateway. Saying so is not commercial; the device has reached the end of the period in which it could be secured.

3. Why is changing the default subnet worth ten minutes at setup?

Select one

  1. It avoids VPN collisions and defeats the laziest cross-site attacks
  2. It prevents devices on the network being enumerated by scanning, because the addresses fall outside the commonly probed ranges
  3. It improves performance
  4. It is required by the standard
Show answer

A. Two networks that turn out to be identical is a genuine and common headache when a VPN joins them. It is cheap at setup and expensive once everything has been numbered.

7 more questions on this objective are part of the full course.

Practise the full question bank in the exam simulator

Hands-on labs

All hands-on labs

This is an independent study companion for CompTIA A+ Core 2 220-1202 and is not produced by or endorsed by CompTIA.