Table of Contents

Networks, VPNs & Firewalls

This page collects knowledge about home networking, routers, VPNs, and firewall setups that appeared in the group.

WireGuard vs OpenVPN

WireGuard is frequently recommended as the default VPN choice:

General pattern:

Example minimal WireGuard server configuration snippet:

[Interface]
Address = 10.0.0.1/24
ListenPort = 51820
PrivateKey = <server_private_key>

[Peer]
# laptop
PublicKey = <laptop_public_key>
AllowedIPs = 10.0.0.2/32

Home VPN Use Cases

Common scenarios discussed:

Typical recommendation:

Routers & OPNsense

Advanced home users often move from ISP-provided routers to something more capable:

Key ideas:

Network Security Basics

Guiding principles evident from discussions:

A recurring theme is that simpler network topologies are easier to secure. Extra complexity must justify itself.