This article will be broken down into multiple parts to keep things simple. You can technically stop right after setting up the router in the first section, but I will also include some extra, personal quality of life improvements.
These sections will be as follows:
The WiFi will also be handled entirely by the Eero AP (nothing direct on the router itself).
Good? Now let’s get started.
Your devices may vary, but my own setup is as follows:
Now, before you try to figure out why the heck I would turn a 2012 Mac Mini into a router (when there are so many better options available) understand this: it was sitting in a drawer in my office collecting dust. Waste not, want not - right?
Since the Mac Mini is only equipped with a single ethernet port (which we need for the external WAN), I’m using some TP-Link USB adapters to mimic multiple ethernet LAN ports for any wired devices, like my Eero gateway and Xbox. These adapters are fully compatible with OpenBSD but other after-market dongles exist that should work just as well.
With all of the hardware on-hand, do the following:
Diagram for reference:
[ISP Modem]
|
|
(WAN Ethernet cable)
|
|
[Mac Mini]
|
|
(USB to Ethernet adapter)
|
|
[Eero]
Note: If you’re using a Eero device for your main gateway/AP device, make sure it is configured to operate in Bridge Mode before moving on to the next steps.
This guide is based on the assumption that you have already installed OpenBSD and configured your main user
and preferences to your liking. We don’t need to install anything extra on top of base. All the software we need comes packaged with OpenBSD by default. Yet another reason this operating system is so incredible.
All of these edits take place on your router device (ie. Mac Mini). You can do this directly on the device itself with an external monitor and keyboard setup, or connect a secondary device through ethernet and simply ssh
into the machine. The choice is yours!
Before doing anything else, we need to ensure forwarding is enabled. Create (or edit if it already exists) your /etc/sysctl.conf
file:
net.inet.ip.forwarding=1
You can reboot for the changes to be applied, or run it immediately:
doas sysctl net.inet.ip.forwarding=1
The meat and potatoes of this setup comes from within /etc/pf.conf
. Make sure you have the following content inside:
ext_if = "bge0"
int_if = "axen0"
set skip on lo
# Block everything by default
block all
# Normalize incoming packets
match in all scrub (no-df random-id max-mss 1440)
# Protect against spoofing
antispoof quick for { lo $int_if }
# NAT for LAN to WAN
match out on $ext_if from 192.168.1.0/24 to any nat-to ($ext_if)
# Allow all outbound traffic (router + LAN)
pass out on $ext_if keep state
# Allow LAN clients to initiate connections to router
pass in on $int_if
I’ve included some basic comments inline, but let’s go through each item line-by-line for extra clarity.
ext_if = "bge0"
int_if = "axen0"
bge0
is the built in ethernet port, while the axen0
is the USB to ethernet dongle connected to my Eero Gateway. You can check your own interfaces by running ifconfig
(also be sure that the targeted device is up: ifconfig <interface-name> up
).set skip on lo
block all
match in all scrub (no-df random-id max-mss 1440)
antispoof quick for { lo $int_if }
match out on $ext_if from 192.168.1.0/24 to any nat-to ($ext_if)
pass out on $ext_if keep state
pass in on $int_if
With that completed, simply reload your pf.conf
:
doas pfctl -f /etc/pf.conf
That’s it. Technically you can stop right here and have working internet funneling through your OpenBSD router. But maybe you want to setup a WiFi access point, enable DNS routing, or include some network-wide ad blocking? If so, continue reading!
Before editing anything else, we need to configure our /etc/hostname.axen0
file:
inet 192.168.1.1 255.255.255.0
Then reload the network:
doas sh /etc/netstart
If you wish to include network-wide ad-block, I suggest using the StevenBlack host list. Before we get into that though, we need to create our blacklist zone file:
doas mkdir -p /var/unbound/etc/adblock
cd /var/unbound/etc/adblock
Then pull down the latest set of blocked hosts:
doas ftp https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
We can’t use this hosts
file directly, since it needs to be converted for unbound
. The following script will help us with this (you might wish to set this up as a cronjob to stay up-to-date):
doas sh -c "grep '^0\.0\.0\.0' hosts | awk '{print \"local-zone: \\\"\"\$2\"\\\" static\"}' > adblock.conf"
Your ad-block configuration file will now be located at: /var/unbound/etc/adblock/adblock.conf
. We will be using this in the next step.
For this example, we will piggyback off the DNS of both Cloudflare and Quad9 (feel free to change these!). Edit the /var/unbound/etc/unbound.conf
file with the following:
server:
interface: 192.168.1.1
access-control: 192.168.1.0/24 allow
do-ip6: no
verbosity: 1
hide-identity: yes
hide-version: yes
harden-glue: yes
harden-dnssec-stripped: yes
use-caps-for-id: yes
prefetch: yes
include: "/var/unbound/etc/adblock/adblock.conf"
forward-zone:
name: "."
forward-addr: 1.1.1.1
forward-addr: 9.9.9.9
Notice the include
that pulls in our generated ad-block file? Make sure unbound
is enabled and start it:
doas rcctl enable unbound
doas rcctl start unbound
Now we can configure our main DHCP. Update your /etc/dhcpd.conf
with the following in order to play nicely with the newly setup unbound
and ad-block services:
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.199;
option routers 192.168.1.1;
option domain-name-servers 192.168.1.1;
}
Then be sure to enable and start it:
doas rcctl enable dhcpd
doas rcctl start dhcpd
Congrats! We have DNS setup through Cloudflare and Quad9, pesky ads are being blocked at the network level, and our “dumb” AP device is handling all of our WiFi needs. Everything is coming up Milhouse!
But oh no! When I try to play some online games my Xbox complains about having a Strict NAT type. This will make playing with others extremely difficult… Lucky for us, there is a solution!
Connect another TP-Link USB-to-ethernet adapter directly to the Xbox. This will be discoverable under ifconfig
(just like before) and will be named something like axen1
. We need to update this specific LAN (and it’s associated console) with the proper port forwarding to enable an Open NAT when gaming.
A diagram of the updated hardware setup:
[ISP Modem]
|
|
(WAN Ethernet cable)
|
|
[Mac Mini]
/ \
/ \
(LAN Ethernet) (LAN Ethernet)
/ \
[Eero] [Xbox]
Just like with our initial axen0
hostname, we need to configure our /etc/hostname.axen1
file now that the Xbox is wired:
inet 192.168.2.1 255.255.255.0
Then reload the network:
doas sh /etc/netstart
Update the /etc/pf.conf
file with the following:
ext_if = "bge0"
int_if = "axen0"
int2_if= "axen1"
xbox_live_tcp_ports = "{ 53, 80, 3074 }"
xbox_live_udp_ports = "{ 53, 88, 500, 3074, 3544, 4500, 8083, 1780, 49164 }"
xbox = "192.168.2.100"
set skip on lo
# Block everything by default
block all
# Perform source-port randomization for all hosts which are not the xbox
match out log on egress from !$xbox to any nat-to ($ext_if:0) port 1024:65535
# Do not perform source-port randomization for the xbox - IMPORTANT
match out log on egress from $xbox to any nat-to ($ext_if:0) static-port
# Normalize incoming packets with scrub options
match in all scrub (no-df random-id max-mss 1440)
# Protect against spoofing
antispoof quick for { lo $int_if $int2_if }
# Allow LAN clients to connect through router
pass in on $int_if
pass in on $int2_if
# Xbox port forwarding
pass in quick on egress proto tcp from any to (egress) port $xbox_live_tcp_ports rdr-to $xbox
pass in quick on egress proto udp from any to (egress) port $xbox_live_udp_ports rdr-to $xbox
# Allow outgoing traffic from router and LAN
pass out on $ext_if keep state
This might look daunting but fear not! It is actually quite straight foward.
int2_if= "axen1"
xbox_live_tcp_ports = "{ 53, 80, 3074 }"
xbox_live_udp_ports = "{ 53, 88, 500, 3074, 3544, 4500, 8083, 1780, 49164 }"
xbox = "192.168.2.100"
int2_if
is the USB-to-ethernet adapter connected to the Xboxxbox_live_tcp_ports
and xbox_live_udp_ports
are the tcp/udp ports we need to forward for Xbox online functionality to work properly (as per Microsoft’s documentation)xbox = "192.168.2.100"
hardcodes our Xbox’s IP (we will set this statically in our dhcpd.conf
in the next steps)match out log on egress from !$xbox to any nat-to ($ext_if:0) port 1024:65535
match out log on egress from $xbox to any nat-to ($ext_if:0) static-port
antispoof quick for { lo $int_if $int2_if }
pass in on $int2_if
$int2_if
)pass in quick on egress proto tcp from any to (egress) port $xbox_live_tcp_ports rdr-to $xbox
pass in quick on egress proto udp from any to (egress) port $xbox_live_udp_ports rdr-to $xbox
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.199;
option routers 192.168.1.1;
option domain-name-servers 192.168.1.1;
}
subnet 192.168.2.0 netmask 255.255.255.0 {
option routers 192.168.2.1;
option domain-name-servers 192.168.2.1;
range 192.168.2.100 192.168.2.150;
}
host xbox {
hardware ethernet 11:22:33:44:55:66;
fixed-address 192.168.2.100;
}
192.168.2.0
which covers our adapter connected to our Xbox. We then hardset the console’s IP with fixed-address
(this will match what we previously set in pf.conf
). Make sure you edit the hardware ethernet
MAC address to match your own. This can be found in the Xbox UI under Settings > Network > Advanced.server:
interface: 192.168.1.1
interface: 192.168.2.1
access-control: 192.168.1.0/24 allow
access-control: 192.168.2.0/24 allow
do-ip6: no
verbosity: 1
hide-identity: yes
hide-version: yes
harden-glue: yes
harden-dnssec-stripped: yes
use-caps-for-id: yes
prefetch: yes
include: "/var/unbound/etc/adblock/adblock.conf"
forward-zone:
name: "."
forward-addr: 1.1.1.1
forward-addr: 9.9.9.9
dhcpd.conf
, we need to include the new interface 192.168.2.1
for both the interface
and access-control
.Now just reload all the services and everything should be solid!
doas rcctl restart dhcpd
doas rcctl restart unbound
doas pfctl -f /etc/pf.conf
Enjoy your router, working internet, and Open NAT on your Xbox!
I like to keep things fairly minimal, so I have intentionally kept the setup fairly bare-bones. Therefore, this setup does not have working IPv6 or any other fancy services running in the background (ie. local servers, media storage etc.). But don’t let that stop you - feel free to add on and expand as you see fit!
(This article was published to the internet through an OpenBSD router!) :D