16 releases
0.5.1 | Feb 12, 2022 |
---|---|
0.5.0 | Feb 10, 2022 |
0.4.5 | Feb 10, 2022 |
0.4.1 | Jan 23, 2022 |
0.2.9 |
|
#8 in #network-manager
95 downloads per month
160KB
3.5K
SLoC
Wireguard network manager
Motivation / Problem
Situation is a couple of vps, some IoT devices in the home network and couple of roaming laptops/iPads/smartphones. Till now a quite complex setup involving wireguard, openvpn, ssh'ing from box to box was in use.
Using wireguard all the time is not an option, because then the Laptop in the home network would route traffic to the box one meter away via the long route (the vps somewhere in the Internet), instead of using the short path within the home network.
An alternative could have been tinc, but tinc - licensed under GPL v2 - may never hit iOs/iPadOS AppStore. So not a solution.
Solution / Idea
Use wireguard and add the missing management part. This shall:
- bring up and configure wireguard devices
- perform the key management/exchange
- set up routes automagically
- identify shorter routes
Instead of manually creating keys (which is still the case in gui versions) the network uses one file to be distributed to all participants. Here a work in progress example (filename net.yaml):
network:
sharedKey: YDUBM6FhERePZ4gPlxzAbCN7K61BPjy7HApWYL+P128=
subnet: 10.1.1.0/8
peers:
- endPoint: 192.168.1.70:50000
adminPort: 55555
wgIp: 10.1.1.1
- endPoint: 192.168.1.212:50000
adminPort: 55555
wgIp: 10.1.1.2
The sharedKey can be created with wg genkey
.
Unfortunately there is still the need to define at least ONE static peer.
Bring up e.g. alice, bob and charlie would be just:
ALICE'S BOX> wg_netmanager -c net.yaml -i wg0 -a 10.1.1.1 -n alice
BOB'S BOX> wg_netmanager -c net.yaml -i wg0 -a 10.1.1.16 -n bob
CHARLIE'S BOX> wg_netmanager -c net.yaml -i wg0 -a 10.1.1.21 -n charlie
with alice being reachable on 192.168.1.70
Definitions/Nomenclatura
- Node: Participant in the network
- Peer: Node reachable directly via wireguard interface
- Dynamic peer: synonym for peer
- Static server: Fixed address/port either in internet or in intranet
- Dynamic server: Any node (24/7) behind a firewall
- Roaming client: Any node, which is switching IP-address
- Mobile client: Roaming client with data volume limitation
Status
Node support:
- Static server in config file
- Static server per dynamic dns
- Static server per command line parameter
- Dynamic server
- Roaming client
- Mobile client
OS-Support
- Linux
- MacOS
- Windows
- iOS/iPadOS
- Android
- FreeBSD
- OpenBSD
- Openwrt Linux
Wireguard-Interface
- Kernel-driver + Command ip/wg
- wiregard-go + Command ip/wg
- boringtun + Command ip/wg
- boringtun (embedded) + ip
Network
- Connection established between two static servers (fixed address)
- Connection established between dynamic node and static server
- Connection established between two dynamic nodes in same subnet
- Connection established between two dynamic nodes using their visible outside connections aka NAT traversal
Routing
- Sets up routes to reach all network participants
- Gateway feature of nodes
System integration
- systemd
- rc-based system
Admin
- TUI interface
- REST API
- Web UI frontend
As it works on my setup, the development will now slow down and will focus more on bugfixing.
Working Example
My test setup is:
Alpha-VPS Internet Beta-VPS
behind firewall ---------+--------- public IP
|
|
|
Router
|
192.168.x.x |
Charlie ------------------------ Delta
Alpha-VPA and Beta-VPS use old linux version without wireguard kernel driver. So wireguard-go is in use.
-
After start of wg_manager on all four machines, three wireguard connections are setup quickly:
- Alpha-VPS <=> Beta-VPS
- Charlie <=> Beta-VPS
- Delta <=> Beta-VPS
In addition the following gateway rules are added:
- Alpha-VPS ==> Charlie/Delta via Gateway Beta-VPS
- Charlie ==> Alpha-VPS/Delta via Gateway Beta-VPS
- Delta ==> Alpha-VPS/Charlie via Gateway Beta-VPS
-
Shortly afterwards Charlie/Delta discover the local connection possibility. So the wireguard connections/routes change to:
-
Alpha-VPS <=> Beta-VPS
-
Charlie <=> Beta-VPS
-
Delta <=> Beta-VPS
-
Charlie <=> Delta
-
Alpha-VPS ==> Charlie/Delta via Gateway Beta-VPS
-
Charlie ==> Alpha-VPS via Gateway Beta-VPS
-
Delta ==> Alpha-VPS via Gateway Beta-VPS
-
-
After the one or other minute, NAT traversal is set up. And only wireguard connections exist without any gateway:
- Alpha-VPS <=> Beta-VPS
- Alpha-VPS <=> Charlie
- Alpha-VPS <=> Delta
- Charlie <=> Beta-VPS
- Charlie <=> Delta
- Delta <=> Beta-VPS
Actually, the tendency to go to one-to-one connections causes a new problem. The required amount of keep alive packages (to keep firewall ports persistent) between nodes increases nearly quadratically with the number of nodes in the net....
Not so much a problem in my setup, but still something to be addressed in the long run.
Another working Example
A second setup is:
Alpha-VPS Internet Beta-VPS
behind firewall ---------+--------- public IP
|
|
|
=====Router 1====Masquerade+Firewall
|
192.168.1.x |
Charlie -------------+---------- Delta
|
|
=====Router 2====Masquerade+Firewall
192.168.2.x |
Installation
With rust installed, just issue
cargo install wg_netmanager
Linux
The packages wireguard-tools and iproute/iproute2 need to be installed.
If kernel driver does not exist (e.g. VPS), then either wireguard-go
or boringtun
should be installed and in the path (using sudo
).
Macos
The packages wireguard-tools and wireguard-go need to be installed e.g. via brew.
Openwrt
The package wireguard-tools and kmod-wireguard need to be installed:
opkg install wireguard-tools kmod-wireguard
Usage
Generally, a shared key needs to be created and stored under sharedKey in your local copy of network.yaml. This can be done by:
wg genkey
and copy the result in the network.yaml
Then modify the peers list to accommodate your setup. At least one peer with a static address is needed. For dyndns-reachable servers, use the hostname instead of an ip.
If the subnet 10.1.1.0/8 does not suit your needs, then change it. All wireguard IPs need to be included in the chosen subnet.
Then copy the final yaml file to all your nodes and start the wg_netmanager with:
wg_netmanager -c network.yaml <wireguard-interface> <wireguard-ip> <name>
or - in case your sudo requires password:
sudo wg_netmanager -c network.yaml <wireguard-interface> <wireguard-ip> <name>
Eventually use further -v
or a -t
.
For vps, which do not support wireguard as network interface, either boringtun or wireguard-go can be used. wg_netmanager will try to run first wireguard-go and then boringtun. If this fails, but wireguard interface can be created by other means, then inform wg_netmanager about the existing wireguard interface with the -e
commandline switch.
For a list of commandline options, just use --help
as usual.
The required command line options for wireguard interface (-i), address (-a) and name (-n), can be stored in a peer.yaml file like this:
name: alice
wgIp: 10.1.1.1
wgInterface: wg0
existingInterface: false
The last one is actually only needed, if set to true.
Testing
Using namespaces several boxes can be simulated on one linux machine. See as example
Technical Background
wg_manager will add and delete routes on demand on two levels:
- As routing policy of the kernel using
ip route add <ip>/32 dev <wg_dev>
- If a node is directly reachable, by adding a peer entry in the wireguard configuration with a list of allowed ip's. This list includes the peer and all further nodes, for which this peer can forward traffic to.
Security Consideration
In case one node of this wireguard network is compromised, then the implications are severe. The symmetric key can be distributed and any attacker's node can join the network.
With the current implementation an attacker could even issue this command:
ATTACKER'S BOX> wg_netmanager -c net.yaml wg0 8.8.8.8 alice
And ALL network participants will start to route any DNS request addressed to 8.8.8.8 to the ATTACKER's box.
This is actually a very cool feature and on the other hand quite frightening.
Update
Depending on the linux version, ip route add
wants to find an interface with the corresponding subnet. If not successful, then it will throw a "no such process error".
Remedy is, that the wireguard interface is associated with IP and resp. netmask. without adding a route:
ip addr add 10.1.1.1/24 dev wg0 noprefixroute
Consequently, in the config-file the subnet has to specified. If the subnet does not include 8.8.8.8, then other nodes will not accept it - unless the defined subnet includes 8.8.8.8
License
The code of this crate is licensed according to MIT. To learn about the licenses of included crates, please check cargo license
.
Lessons Learned
- Spent half a day figuring out, why udp socket connection has been working, tunnel in wireguard configuration on both peers have been properly setup, but tunnel was not working. At some point I have recognized, that the working nodes were in the internet and the failing ones in the local subnet. Rebooting the internet router solved this issue
- Update: Apparently the router does not like the usage of the same udp-ports aka the need for translation in the router firewall.
- Update 2: If one client in local subnet reuses the same wireguard port, the communication cannot be established. If the wireguard port is changed, it starts working again.
Dependencies
~20–30MB
~331K SLoC