Electrical-Forenics Home ray@RayFranco.com                       601.529.7473
   © Dr. Ray Franco, PhD, PE  -  208 Fairways Dr., Vicksburg, MS 39183

Updated on 1/2999999999/2025

Linux (Debian) Router

To turn a Raspberry Pi 5B into a router, I followed the excellent article: Setting up a Linux Server as a Router [1] . Also, helpful was Set Static IP Address [2]



                                      Internet                
                                         |
                                       __|__                
                               WAN     |   |            ISP Router         
                    ----------------------------------------------------
                   |              104.97.193.169                        |
                   |                                                    |
                   |                                  DHCP Server       |
                   |                    _____________/          \____   |
                   |                    Ethernet Switch          WiFi   |   
                    ----------------------------------------------------
                               LAN     |   |   |   |   |         |    
                                        ________________    _____
                                                     192.168.1.1                                        
          
                          Figure 1. Typical Compbinational Router. 
          

Figure 1 depicts a typical combinational router that included Wifi.

It has one wide area network (WAN), ethernet (RJ45), interface that faces the internet. Its ip address is controlled by your ISP.

It has three or more downstream ethernet (RJ45) interfaces and a wireless interface. These are your local area network (LAN). All of the LAN interfaces are connected to an ethernet switch. They all share a single default ip address that can be changed by the user. However, the address should be in one of the three ranges that are reserved for private LAN use.

  1. 192.168.0.0 - 192.168.255.255
  2. 172.16.0.0 - 172.31.255.255
  3. 10.0.0.0 - 10.255.255.255

The router may also include a modulater/demodulater (MODEM) for converting fiber, cable or other electrical signals to ethernet.

Coming Soon - Dynamic Host Configuration Protocol (DHCP) - Dynamic and Static Addresses

Coming Soon - Network Address Translation NAT

The article assumes that the Linux computer has 3 Ethernet interfaces, eth0, eth1, and eth2. It also assumes that eth0 has already been assigned an ip address from an upstream router. The author assigns ip address 192.168.200.254 to eth1 and ip address 192.168.100.254 to eth2. To the downstream interfaces, he attaches two host, and he assigns the ip addresses 192.168.100.10 and 192.168.200.15.


                  Internet
                     |
              ----------------
             | 104.97.193.169 |
             |   ISP Router   |
             |  192.168.37.1  |
              ----------------                                   
                     |                                         
              ---------------                                  
              | Ether Switch |                                    
               --------------                                
                     |                        Linux Router     
             ----------------------------------------------------------
            |  192.168.37.58                                           |
            |                            DHCP Server                   |
            |                                                WiFi      |
            |      192.168.100.254    192.168.200.254    192.168.37.59 | 
             ----------------------------------------------------------
                          |                    |
                   --------------       --------------
                  | Ether Switch |     | Ether Switch |
                   --------------       --------------
                          |                    |
                   ----------------     ----------------
                  | 192.168.100.10 |   | 192.168.200.15 |
                   ----------------     ----------------

          

This router is different than the typical home router. It does not have a built-in ethernet switch. Each of the three downstream interfaces has its own ip address. This allows you to have up to three subnets.

The disadvantage is that if you have more than one host connected to an ethernet subnet then you will have to add an eternal ethernet swtich.

Implementational View with Raspberry Pi's

The computer that I wanted to turn into a router was a Raspberry Pi 5B. The Rasoberry Pi 5B only has one built-in ethernet interface. For the 2nd and 3th interfaces, I used Plugable USB/Ethernet Adapters. To avoid the problem of which was assigned eth2 and eth3, I enabled predictable interface naming. "eth0" became "end0" and the other two interfaces became "enx" followed by their 12-digit mac addresses.

I used the built-in ethernet interface for the upstream interface to the ISP router and the two USB/Ethernet adapters for the downstream interfaces.


                Internet
                   |
              ------------
             | ISP Router |  
              ------------
                   |                     Raspberry Pi 5B
             ----------------------------------------------------------
            |    end0                                                  |
            |                                                          |
            |                   USB 3.0              USB 3.0           |
             ----------------------------------------------------------
                                   |                    |
                             --------------       --------------
                            | USB/Ethernet |     | USB Ethernet |
                            | Adapter      |     | Adpter       |
                             --------------       --------------
                                   |                    |
                            ----------------     ----------------
                           | 1st Downstream |   | 2nd Downstream |
                           |     Host       |   |     Host       |
                            ----------------     ----------------

          

After assigning ip addresses and combining the USB and Ethernet blocks:


                Internet
                   |
             --------------
            | ISP Router   |
            | 192.168.37.1 |
             --------------
                   |                     Raspberry Pi 5B
             ----------------------------------------------------------
            |     end0                                                 |
            |  192.168.37.58                                           |
            |                                                          |
            |                192.168.100.254      192.168.200.254      |
            |                enx8cae4cddf0f1      enx8cae4cdddeec      |
             ----------------------------------------------------------
                                   |                    |
                             ----------------     ----------------
                            |     Host       |   |     Host       |
                            | 192.168.100.10 |   | 192.168.200.15 |
                             ----------------     ----------------
          

How the addresses and routes are assigned depends on which network manager you are using.

On Oct 11,2023, the NetworkManager became the new default network manager for the Raspberry Pi OS. It's major advance is that it has a built-in DHCP Server. It also has a GUI. However, in this case, you will probably spend more time trying to get the GUI to do what you want to than it is worth. My advice is to the NetworkManager command line interface, nmcli.

You can also use the older systemd-networkd network manager, but since Nov 2024 the Raspberry Pi OS has quit installing by default two the packages it requires.

Another alternative is to use the built-in ip commands and to place them in a script file that is called by crontab at boot. Conceptionally, this or the nmcli are the most straight forward.

In this article, all four methods will be used:

  1. systemd-networkd network manager
  2. script ip commands
  3. NetworkManager GUI
  4. NetworkManager comand line (cli)

The disadvantage of the systemd-networkd and the script ip commands is that you will need to install a separate DHCP server. However, if there are only a few downstream hosts, you can just assign them static ip addresses. Only the latter will be done in this article.

To use the non-NetworkManger methods, you either have to disable the NetworkManger or keep it from managing the ethernet interfaces that will be managed by other means. You can have more than one network manager running at the same time as long as they do not try to manage the same interface.

Disabling the NetworkManager has the disadvantage of removing the following icons and their functionality from the top-right task bar.

Keep the NetworkManager from Managing Specific Ports [ ]

To keep the NetworkManager from managing the three ehternet interfaces, add the following to
/etc/NetworkManager/NetworkManager.conf:

[main]
plugins=keyfile
 
[keyfile]
unmanaged-devices=interface-name:end0, interface-name:enx8cae4cddf0f1, interface-name:enx8cae4cdddeec

In lieu of interface-name, you can also use mac addresses:

unmanaged-devices=interface-name:end0, mac:8c:ae:4c:dd:f0:f1, mac:8c:ae:4c:dd:de:ec

In my case, under [main] plugins, there was already a keyfile entry so I only had to add the last two lines.

This leaves the NetworkManager managing on the wireless interface.

Enable Packet Forwarding

Another thing that is necessary with the non-NetworkManager methods is to enable packet forwarding; otherwise, if the packet is not addressed to the host, it will simply drop it. Also, since this is a LAN, you don't need the complications associated with IPv6 address. To do both, add the following to the end of /etc/sysctrl.conf:

net.ipv4.ip_forward = 1
net.ipv6.conf.end0.disable_ipv6 = 1
net.ipv6.conf.enx8cae4cddf0f1.disable_ipv6 = 1 net.ipv6.conf.enx8cae4cdddeec.disable_ipv6 = 1

References:

  1. Router vs Switch vs Hub vs Modem vs Access Point vs Gateway
  2. Red Hat - Chapter 14. Configuring NetworkManager to ignore certain devices

Systemd-Networkd Implementation

Install and Enable Systemd-Networkd

To reinstall the two packages for systemd-networkd that the Raspberry Pi OS no longer installs by default:

sudo apt install ifupdown, resolvconf

To enable it at boot:

sudo systemctl enable systemd-networkd

Assigning IP addresses

The ISP router can automatically assign an ip address, gateway, and dns server to end0, or you can manually assign a static ip address, gateway and dns server. For this article, I decided to assign them manually.

Systemd-networkd allows you to specify them for multiple interfaces in the configuration file /etc/network/interfaces or you can specify them in multiple files at: /etc/network/interface.d. I chose to put everything in /etc/network/interfaces:

cd /etc/network

sudo vi interfaces

# end0 auto end0
iface end0 inet static
address 192.168.37.58/24
gateway 192.168.37.1
dns 192.168.37.1
# --------------------------------
# enx8cae4cddf0f1
auto enx8cae4cddf0f1
iface enx8cae4cddf0f1 inet static
address 192.168.100.254/24
# --------------------------------
# enx8cae4cdddeec
auto enx8cae4cdddeec
iface enx8cae4cdddeec inet static
address 192.168.200.254/24

Note that the two downstream interfaces are not assigned a gateway or dns server.

Diagram with Code


                  |
            --------------
           | 192.168.37.1 |
           | ISP  Router  |
            --------------
                  |
       -----------------------------------------------------------------------------
      |         end0                                                                |     
      |      192.168.37.58                                                          |
      |                                                                             |
      | auto end0                 auto  enx8cae4cddf0f1     auto  enx8cae4cdddeec   |
      | iface endo inet static    iface enx8cae4cddf0f1\    iface enx8cae4cdddeec\  |  
      | address 192.168.37.59               inet static               inet static   |
      | netmask 255.255.255.0     address 192.168.100.254   address 192.168.200.254 |
      | gateway 192.168.37.1      netmask 255.255.255.0     netmask 255.255.255.0   |
      | dns 192.168.37.1                                                            |     
      |                              192.168.100.254           192.168.200.254      |
      |                              enx8cae4cddf0f1           enx8cae4cdddeec      |
       -----------------------------------------------------------------------------
                                          |                          |
                                          |                          |
                                ---------------------      ---------------------
                               |      Host 1         |    |     Host 2          |
                               |   192.168.100.10    |    |  192.168.200.15     |
                                ---------------------      ---------------------
          

The outout of the "route" command was:

Whether it is a router or not, all hosts have a routing table. When you assign ip address, gateways, and dns servers, those entries are put into the host's routing table.

There are two ways to display the routing table: the command "route", which is nicely formatted, and "ip route", which includes more information.

The output of the command "route" was:


Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.37.1    0.0.0.0         UG    0      0        0 end0
192.168.37.0    0.0.0.0         255.255.255.0   U     0      0        0 end0
192.168.100.0   0.0.0.0         255.255.255.0   U     0      0        0 enx8cae4cddf0f1
192.168.200.0   0.0.0.0         255.255.255.0   U     0      0        0 enx8cae4cdddeec

          

The output of the "ip route" command was:


default via 192.168.37.1 dev end0 onlink 
192.168.37.0/24 dev end0 proto kernel scope link src 192.168.37.56 
192.168.100.0/24 dev enx8cae4cddf0f1 proto kernel scope link src 192.168.100.254 
192.168.200.0/24 dev enx8cae4cdddeec proto kernel scope link src 192.168.200.254 
          

If the downstream interfaces had been assigned a gateway, there would be a second default route in the table for the Linux Router. If the metric of the second default route was less than the first then the default path would be one of the downstream interfaces. This would result in no access to a dns server and/or the internet.

I did not assign a metric to any of the routes. To add the line metric follow by a number. The smaller the number the higher the prioroity. As shown in the table above if you do not specify a matric it uses 0.

Masquerade - Network Filter Tables (nft) Code

When a packet passed from behind the router through end0, its local address is removed from the packet and replaced with the router's address (in this case 192.168.37.58). This is known as masquerading and Network Address Translation (NAT). Using Network Filter Table (nft), all it takes is one instruction. Place the followng in a file and call it from Crontab @reboot:


#!/usr/bin/nft -f
 
table inet router {
   chain postrouting {
      type nat  hook postrouting priority filter; policy accept;
      masquerade
   }
}
          

I named my file /etc/router.nft and placed it in the etc directory.

All nft commands require root privilege so it needs to be called from the root's crontab. To do this:

sudo crontab -e

If this is your first time to use crontab, you will be prompted to select an editor.

Add the following line at the end followed by a newline:

@reboot /usr/bin/nft -f /etc/rounter.nft

You must use he full path, /usr/bin/nft, to call nft, and you have to use the full path for /etc/router.nft.

If you are using a distro other than the Raspberry Pi OS or Debian, you may need to use the whichis command to find the location of nft.

Finally, there needs to be a newline character at the end of crontab.

This is a mininum nft table. If the router were directly facing the Internet, for security purposes, you would need to filter or block all incoming packages except those that were responses or related to requests from hosts behind the router.

As you will see in the the NetworkManager section, it will automatically produce a more sophisticated nft table. you can substitute it for my minimal table.

References:

  1. Why crontab scripts are not working?
  2. Why is my crontab not working, and how can I troubleshoot it?

Downstream IP Address Assignments

To the 1st downstream host, I added:

cd /etc/network/interfaces.d/

sudo vi end0

auto end0
iface end0 inet static
address 192.168.100.10/24
gateway 192.168.100.254
dns 192.168.37.1

To the 2nd downstream host, I added:

cd /etc/network/interfaces.d/

sudo vi end0

auto end0
iface end0 inet static
address 192.168.200.15/24
gateway 192.168.200.254
dns 192.168.37.1


                  |
            --------------
           | 192.168.37.1 |
           | ISP  Router  |
            --------------
                  |
       -----------------------------------------------------------------------------
      |         end0                                                                |     
      |      192.168.37.58                                                          |
      |                                                                             |
      | auto end0                 auto  enx8cae4cddf0f1     auto  enx8cae4cdddeec   |
      | iface endo inet static    iface enx8cae4cddf0f1\    iface enx8cae4cdddeec\  |  
      | address 192.168.37.59               inet static               inet static   |
      | netmask 255.255.255.0     address 192.168.100.254   address 192.168.200.254 |
      | gateway 192.168.37.1      netmask 255.255.255.0     netmask 255.255.255.0   |
      | dns 192.168.37.1                                                            |     
      |                              192.168.100.254           192.168.200.254      |
      |                              enx8cae4cddf0f1           enx8cae4cdddeec      |
       -----------------------------------------------------------------------------
                                          |                          |
                                          |                          |
                              -------------------------    -------------------------
                             |          end0           |  |         end0            |
                             |     192.168.100.10      |  |    192.168.200.15       |
                             |                         |  |                         |
                             | auto end0               |  | audo end0               |
                             | iface end0 inet static  |  | iface end0 inet static  |
                             | address 192.168.100.10  |  | address 192.168.200.15  |
                             | netmask 255.255.255.0   |  | netmask 255.255.255.0   |
                             | gateway 192.168.100.254 |  | gateway 192.168.200.254 |
                             | dns 192.168.37.1        |  | dns 192.168.37.1        |
                              -------------------------    -------------------------
          

You should now be able to access the Internet from one of the hosts behind the new router.

References:

  1. How do I set up networking/WiFi/static IP address on Raspbian/Raspberry Pi OS?
  2. Configuring Networking on The Raspberry Pi
  3. Use systemd-networkd for general networking
  4. Am I running NetworkManager or networkd?
  5. Determine current networking manager being used on linux

IP Commands Implementation

Before assigning ip addresses, you need to keep the NetworkManager from managing these interfaces, and you need to enable forwarding and disable IPv6 addresses. See the previous section.

Assigning IP Addresses and Routes

Put the following code in a script file (/etc/ip_static.sh), and call it from crontab @reboot:

#!/bin/bash
sleep 2s
ip link set dev end0 up
ip address add 192.168.37.58/24 brd + dev end0
ip route add 192.168.37.0/24 dev end0
ip route add default via 192.168.37.1 dev end0
#
ip link set dev enx8cae4cddf0f1 up
ip address add 192.168.100.254/24 brd + dev enx8cae4cddf0f1
ip route add 192.168.100.0/24 dev enx8cae4cddf0f1
#
ip link set dev enx8cae4cdddeec up
ip address add 192.168.200.254/24 brd + dev enx8cae4cdddeec
ip route add 192.168.200.0/24 dev enx8cae4cdddeec
          

The output of the "route" command was:


Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.37.1    0.0.0.0         UG    0      0        0 end0
192.168.37.0    0.0.0.0         255.255.255.0   U     0      0        0 end0
192.168.100.0   0.0.0.0         255.255.255.0   U     0      0        0 enx8cae4cddf0f1
192.168.200.0   0.0.0.0         255.255.255.0   U     0      0        0 enx8cae4cdddeec
          

Note that the metric is 0 for all routes.

The output of the "ip route" command was:


default via 192.168.37.1 dev end0 
192.168.37.0/24 dev end0 proto kernel scope link src 192.168.37.58 
192.168.100.0/24 dev enx8cae4cddf0f1 proto kernel scope link src 192.168.100.254 
192.168.200.0/24 dev enx8cae4cdddeec proto kernel scope link src 192.168.200.254 
          

Note the "ip route" command does not list the metrics.

To add metric just add it to the end of your ip route add statement. for example:

ip route add default via 192.168.37.1 dev end0 metric 201

If you forgot to add a metric, you pretty have to retype everything:

ip route replace default via 192.168.37.1 dev end0 metric 201

DNS Servers

The NetworkManger normally overwrites what is in /etc/resolv.conf. To get to get around this:

sudo apt install resolvconf

then add your name server at the end of /etc/resolvconf/resolv.conf.d/head.

In my case, I added:

nameserver 192.168.37.1

upon rebooting, everything that is in head file will be written to /etc/resolv.conf. The message in the comments of the head file about do not modify this file by hand - it will be overwritten, is actually for the /etc/resolv.conf file.

Add Masquerade and Firewall Nftable

Add the same one instruction nft table that we did in the last section and called it the same way.

Downstream IP Address Assignments

Again, I used a script file (ip_static_host.sh) and called it from crontab @reboot. My script file for 192.168.100.10 is:

#!/bin/bash
sleep 5s
ip link set dev eth0 up
ip address add 192.168.100.10/24 brd + dev eth0
ip route add 192.168.100.254 dev eth0
ip route add default via 192.168.37.1 dev eth0

My script file for 192.168.200.15 is:

#!/bin/bash
sleep 5s
ip link set dev eth0 up
ip address add 192.168.200.15/24 brd + dev eth0
ip route add 192.168.200.254 dev eth0
ip route add default via 192.168.37.1 dev eth0

References:

  1. Stackoverflow - Disable network manager for a particular interface
  2. Pi My Life Up - How to Enable or Disable IP Forwarding on Linux
  3. How to disable IPv6 on Linux
  4. Master ip route command to Conquer Network Challenges
  5. noxCraft - ip route add network command for Linux explained
  6. CommandMasters - Mastering the 'ip route' Command (with examples)
  7. Tecmint - How To Set Permanent DNS Nameservers in Ubuntu and Debian

NetworkManager Implementation

From the time that I implement the above with systemd-networkd and the time I decided to implement it with NetworkManager, I changed my policy on letting my Apple router assign static ip addresses for my Raspberry Pi 5's. I am currently doing this manually, which results in code for setting up all the static ip addresses. Well, I am not really writing code, I am using the NetworkManager's GUI.

Also for this implementation, I decided to enable predictable names for the network interfaces. Eth0 is now end0, and eth1 is now enx8cae4cdddeec, where "8cae4cdddeec" is the mac address of the USB/Ethernet adapter.

                      Upstream Rounter
                             | 
                             | 
                   ------------------------------------------------------------------------------                   
                  |        end0                                                                  |
                  |    192.168.37.58                                                             |
                  |                                                                              |     
                  | Medthod: Manual          Method: Manual             Method: Sharing          |     
                  | Address: 192.168.37.58   Address: 192.168.37.254    Address: 192.168.200.254 |     
                  | Netmask: 255.255.255.0   Netmask: 255.255.255.0     Netmask: 255.255.255.0   |    
                  | Gateway: 192.168.37.1    Gateway: Leave Blank !!!   Gateway: Leave Blank !!! |    
                  | DNS: 192.168.37.1        Grayed Out                 DNS: Grayed Out          |    
                  |                                                                              |
                  |                          192.168.100.254                192.168.200.254      |
                  |                          enx8cae4cddf0f1                enx8cae4cdddeec      |
                   ------------------------------------------------------------------------------ 
                                                    | USB/Ethernet                 | USB/Ethernet
                                                    |                              |
                                        --------------------------     --------------------------
                                       |          end0            |   |           end0           | 
                                       |      192.168.100.10      |   |      192.168.200.15      |
                                       |                          |   |                          |
                                       | Method: Manual           |   | Method: Manual           |
                                       | Address: 192.168.100.10  |   | Address: 192.168.200.15  |
                                       | Netmask: 255.255.255.0   |   | Netmask: 255.255.255.0   |
                                       | Gateway: 192.168.100.254 |   | Gateway: 192.168.200.254 |
                                       | DNS    : 192.168.37.1    |   | DNS    : 192.168.37.1    | 
                                        ---------------------------    --------------------------
          

If you manually set the ip address of end0 and/or eth0 (which I did here), you have to make a manual dns entry when you set up the interface. Either a dns server or an upstream rounter. I chose the next upstream router.

The output of the "route" comand was:

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.37.1    0.0.0.0         UG    102    0        0 end0
192.168.37.0    0.0.0.0         255.255.255.0   U     102    0        0 end0
192.168.100.0   0.0.0.0         255.255.255.0   U     100    0        0 enx8cae4cddf0f1
192.168.200.0   0.0.0.0         255.255.255.0   U     101    0        0 enx8cae4cdddeec
          

The output of the "ip route" command was:

default via 192.168.37.1 dev end0 proto static metric 102 
192.168.37.0/24 dev end0 proto kernel scope link src 192.168.37.58 metric 102 
192.168.100.0/24 dev enx8cae4cddf0f1 proto kernel scope link src 192.168.100.254 metric 100 
192.168.200.0/24 dev enx8cae4cdddeec proto kernel scope link src 192.168.200.254 metric 101 
          

Note that "default" has the highest metric, which means it has lowest priority. Therefore, you must leave the gateways for enx8cae4cddf0f1 and enx8cae4cdddeec blank. If you make an entry for either, a new "default" gateway that has a higher priority than end0 will be added to the routing table. This will result in the router not having access to the Internet. Needless to say, if the router does not have access to the internet neither do the downstream host. When I was first learning about networks, this cause me lots of problems.

The Network Manager automaticaly generated and inserted the following two nft tables:

table ip nm-shared-enx8cae4cdddeec {
	chain nat_postrouting {
		type nat hook postrouting priority srcnat; policy accept;
		ip saddr 192.168.200.0/24 ip daddr != 192.168.200.0/24 masquerade
	}

	chain filter_forward {
		type filter hook forward priority filter; policy accept;
		ip daddr 192.168.200.0/24 oifname "enx8cae4cdddeec" ct state { established, related } accept
		ip saddr 192.168.200.0/24 iifname "enx8cae4cdddeec" accept
		iifname "enx8cae4cdddeec" oifname "enx8cae4cdddeec" accept
		iifname "enx8cae4cdddeec" reject
		oifname "enx8cae4cdddeec" reject
	}
}
table ip nm-shared-enx8cae4cddf0f1 {
	chain nat_postrouting {
		type nat hook postrouting priority srcnat; policy accept;
		ip saddr 192.168.100.0/24 ip daddr != 192.168.100.0/24 masquerade
	}

	chain filter_forward {
		type filter hook forward priority filter; policy accept;
		ip daddr 192.168.100.0/24 oifname "enx8cae4cddf0f1" ct state { established, related } accept
		ip saddr 192.168.100.0/24 iifname "enx8cae4cddf0f1" accept
		iifname "enx8cae4cddf0f1" oifname "enx8cae4cddf0f1" accept
		iifname "enx8cae4cddf0f1" reject
		oifname "enx8cae4cddf0f1" reject
	}
}

         

The NetwokManager also has a built-in DHCP server that can assign ip addresses to downstream host. Thus, if you do not care what the ip addresses of the hosts behind the router are, the NetworkManager's DHCP server will assign one.

Real Time or Near Real Time

If you unplug one of the cables to the downstream host, it will remove that host's entry in the routing table. Similarly, it will remove that host's nft table from the nft ruleset.

If you plug the cable back in, a new entry in the routing table will be added, and it will be assigned a metric one number higher than the last metric that was assigned. Similarly, a new nft table will be added to the nft ruleset.

Rather than physically unplug a cable, you can accomplish the same thing with the command:

nmcli connection down "profile_name"

Change the word "down" to "up" to bring the interface back up.

Before, I understood that should leave the gateways blank for the sharing interfaces, I had a workaround that called a script from contab @reboot. The script brought the sharing interfaces down and back up. This would change the metrics of the sharing interfaces so that the end0 nterface had the lowest metric (highest priority).

Another workaround that I had, changed the metric of the end0 interface to 99:

nmcli connection modify 'Wired Connection 1' ipV4.route-metric 99

The NetworkManager starts ethernet interfaces at a metric of 100 and wireless interfaces at a metric of 600.

The above command adds a line, with the specifed metric, to the profile file, "/etc/NetworkManager/system-connections/Wired Connection 1", so the change is persitent after a reboot.

Back to subject at hand, if you specify a dns server, the NetworkManager will modify the /ect/resolv.conf file. It does this in real or near time. To see this, set up manually an ethernet interface without any dns server, then set up manually a wireless interface with a dns server. cat /etc/resolv.conf then cut off or disable the wireless radio.

Discussion

The NetworkManager does a lot of thing under the hood:

  1. It makes and removes entries into etc/resolv.conf.
  2. It overrides, the enable/disable ipv6 entries in /etc/sysctl.con.f
  3. It overrides ip_forward entries in /etc/sysctl.conf when an interface is shared (router).
  4. It makes and removes tables into the nft ruleset.
  5. The NetworkManger includes a DHCP server that assign ip addresses to downstream host.
  6. Other things I have not discovered.

Whether this is good or bad depends on your point of view. You are giving up control for supposedly easy of use.

I suspect that I wil want to modify the nft tables. The best way to do this may be to just use the manual mode instead of the shared mode, and call my modified nft tables from crontab @reboot.

References:

  1. Configure Network Settings Using Network Manager in Linux
  2. What does "proto kernel" and "proto static" means in Unix Routing Table?

mmcli Implementation

The NetworkManager command line (nmcli) can do eveyting the GUI can do and more.

nmcli code Comming Soon

The statements below are from the main article, and I need to investigate this further.

"IP aliasing in Linux allows assigning multiple IP addresses to a single network interface. To add these IP addresses, we can use the nmtui command-line tool. We can utilize it to host multiple services or network configurations on one physical interface."

"By creating virtual interfaces with unique IP addresses, our Linux systems can handle diverse network tasks efficiently, like providing different services over unique IP addresses. This flexibility optimizes resource utilization and streamlines network administration."

References

  1. nftables multi network (home) router primer
  2. Classic perimetral firewall example
  3. What Is a Demilitarized Zone (DMZ)? Definition, Examples, Working, and Importance in 2022
  4. DMZ (computing)

                         Internet
                           / \
                            |
                            |     
                            |              
      -----------------------------------------------
      |                    bond0                    |
      |                  nic_inet                   |
      |                                             |
      |              Linx Router/Firewall           |
      |                                             |
      |    nic_DMZ                        nic_LAN   |
      |     bond1                          bond2    |
       ----------------------------------------------    
              |                              |
              |                              |
 ============ | ===========      =========== | ============
 ||           |          ||      ||          |           ||
 ||       ----------     ||      ||      ----------      ||
 ||       | Swtich |     ||      ||      | Switch |      ||
 ||       ----------     ||      ||      ----------      ||
 ||           |          ||      ||          |           ||
 ||     --------------   ||      ||    --------------    ||    
 ||     |  Server    |   ||      ||    | Workstation |   ||  
 ||     |  10.0.1.2  |   ||      ||    |  10.0.2.2   |   || 
 ||     --------------   ||      ||    --------------    || 
 ||                      ||      ||                      ||
 || 10.0.1.x  DMZ Zone   ||      ||   10.0.2.x    LAN    ||
 ==========================      ==========================                         
                               
                             
          
      

Benchmarks - Linux Router - Raspberry Pi 5B

There is only one Ethernet cable going from my desk into the floor. Hence, all of the hosts on my desk (HP EliteDesk and Raspberry Pi's) go through an Ethernet switch, and everything in my office goes to a second Ethernet Switch. Thus, traffic between any host on my desk and the Synology 220 (network attaches storage - nas) must pass through two Ethernet switches.

The diagram below depicts my test setup. The HP Elite Desk is running Windows 11. A Raspberry Pi 5B only has one native Ethernet port. For the second Ethernet Port, a Benfei USB 3.0 to Ethernet adapter was used ( Amazon #10 ).



               Internet
                  |
                  |  192.168.50.xxx
                  |
             /----------\
             | Ethernet |
             | Switch   |
             \----------/
               |     |
               |     |
         -------     ------
         |                |
         |                |
    /----------\     /----------\
    | Synology |     |   Desk   |
    | Network  |     | Ethernet |
    | Attached |     | Switch   |
    | Storage  |     \----------/
    \----------/      |       |                   192.168.200.xxx
        NAS           |       -------         ---------------------
                      |             |         |                   |
                      |       /--------------------\              |
                      |       | Ethernet   USB 3.0 |              |
                      |       |                    |      /-----------------\
                      |       |    Linux Router    |      |    USB 3.0      |
                      |       | Raspberry Pi 5B    |      | Benfie          |
                      |       | NVMe Gen 3 x 1     |      | USB to Ethernet |
                      |       \--------------------/      | Adapter         |
                      |                                   |   Ethernet      |
                      |                                   \-----------------/       
                      |                                           |
                      |                                           |
                      |                                  /-------------------\
                      |                                  | Ethernet  USB 3.0 |
             /----------------\                          |                   |
             | HP Elite Desk  |                          | Raspberry Pi 5B   |
             | Gen 6          |                          | NVMe Gen 2 x 1    |
             | NVME Gen 3 x 4 |                          | or SD Card        |
             \----------------/                          \-------------------/       
               Windows - Host                                Linux - Host
          

The table below is for transfer a single 7.5GB file, "Subject-Contactor-CT_Scan.zip" from and to the Synology NAT (network attached storage).

Ethernet Transfer Speed of a 7.5GB file.
From To Seconds  Router
HP Elite Desk Gen 6 Synology 220 69 none
Synology 220 HP Elite Desk G6 69 none
       
RPi-5 with NVMe Gen 2 Synology 220 74 RPi-5
Synology 220 RPi-5 with NVMe Gen 3 69 RPi-5
       
RPi-5 with SD Card Synology 220 84 RPi-5
Synology 220 RPi-5 with sd Card 94 Rpi-5

Thus, the Raspberry Pi 5B with a Benfie USB-to-Ethernet adapter is plenty fast enough for a 1 Gbps Ethernet network.

Closing Thoughts

It looks like most Linux distros are using or switching to the "Network Manager" as their default network manager. The above code does not use the "Network Manager" to assign static IP address or the default gateway. I need to learn how to do this with the "NetworkManager".

Nordvpn NFT

Nordvpn has its own nftables. Unfortunately, Nordvpn will flush the nft rules in /etc/nftables.conf and install its own rules. This occurs even if Nordvpn is not connected.

However, after booting, you can install your own nft rules: with the command:

sudo nft -f /etc/nftables.conf

If you now execute:

sudo nft list ruleset

It will only list your ruleset and not Nordvpn's. However, Nordvpn is still working. In fact, all host connected to this Linux router are going through Nordvpn.

If you want to have the list ruleset show both sets of rules, disconnect Nordvpn and then run your script or /etc/nftables.conf and afterwards reconnect to Nordvpn.

You can then disconnect and reconnect to Nordvpn, and both sets of rules will be active. Now all host connected to this Linux router, will go through Nordvpn. To the outside world, all host connected to this Linux router will all have the same IP address.

One way to accomplish this is to not enable autoconnect on Nordvpn, and to use an on reboot cron job to load your nft ruleset and then connect to Nordvpn

References:

  1. Setting up a Linux Server as a Router
  2. Set Static IP Address
  3. YouTube - Tall Paul Tech - NAT is Not a Firewall
  4. VLANs - Raspberry Pi as a Router Using a Single Network Interface
  5. Jeff Geerling - Set a static IP address with nmtui on Raspberry Pi OS 12 'Bookworm'
  6. How to use the command 'nmtui' (with examples)
  7. Raspberry Pi Forums - How to setup static IP address on Raspberry Pi OS 64bit bookworm

Extra Networking References:

  1. YouTube - Practical Networks - Networking Fundamentals - Lesson 1a
  2. YouTube - Practical Networks - Networking Fundamentals - Lesson 1b
  3. YouTube - Practical Networks - Networking Fundamentals - Lesson 2a
  4. YouTube - Practical Networks - Networking Fundamentals - Lesson 2b
  5. YouTube - Practical Networks - Lesson 3 - OSI Model Part 1
  6. YouTube - Practical Networks - Lesson 3 - OSI Model Part 2
  7. YouTube - Practical Networks - Networking Fundamentals - Lesson 4 Part 1 - Switches
  8. YouTube - Practical Networks - Networking Fundamentals - Lesson 4 Part 2 - Switches
  9. YouTube - Practical Networks - Everything Routers do - Part 1 - Networking Fundamentals - Lesson 5
  10. YouTube - Practical Networks - Everything Routers do - Part 2 - How Routers forward Packets - Networking Fundamentals - Lesson 5
  11. YouTube - Practical Networks - Lesson 5 - Part 3 - Router Hierarchies and Route Summarization
  12. YouTube - Practical Networks - Lesson 6 - Network Protocols
  13. YouTube - Practical Networks - Lesson 7 - How Data Moves Through the Internet
  14. YouTube - Practical Networks - Lesson 7 - How Data Moves Through the Internet
  15. YouTube - Practical Networks - Network Protocols - ARP, FTP, SMTP, HTTP, SSL, TLS, HTTPS, DNS, DHCP - Networking Fundamentals - L6
  16. YouTube - Cisco - What is LAN | What is VLAN - Difference Explained