[Tutoriall 4.2] DomU in 4.2 firewalls have completely switched to nftables - a modern firewall for advanced users

Original forum link
https://forum.qubes-os.org/t/21612
Original poster
Paweł
Editors
Pawelek85
Created at
2023-10-20 08:29:12
Last wiki edit
2023-10-20 09:21:44
Revisions
5 revisions
Posts count
3
Likes count
11



Hi, I'd like to point out right away that this tutorial is not mine - I received it in the mail and thought it would also be useful for members of the Qubes community.

Summary: nfttables w Qubes 4.2:
* [[4.2 changelog]:](https://www.qubes-os.org/doc/releases/4.2/release-notes/) **DomU firewalls have completely switched to nftables.** ([#5031](https://github.com/QubesOS/qubes-issues/issues/5031), [#6062](https://github.com/QubesOS/qubes-issues/issues/6062)) * > @Sven : [Firewall works differently in R4.2. You are using a pre-release version. Instructions that worked with R4.1 will no longer work with R4.2.](https://forum.qubes-os.org/t/4-2-leakage-of-network-traffic-from-vm-any-joke/21125/20) * [Qubes OS 4.2 nftables / nft firewall guide](https://forum.qubes-os.org/t/qubes-os-4-2-nftables-nft-firewall-guide/20933)

1. Introduction

The article comes from this site.

Nftables appeared in version 3.13 of the Linux kernel, which was released in January 2014. Like UFW and firewalld, nftables is used to configure a firewall. It is the most difficult to configure firewall of all the previously mentioned, so using it is recommended for those with Linux experience (and angelic patience).

2. Installing

Nftables should be installed by default in most Linux distributions. However, if it is not installed, you can use the command:

sudo apt install nftables nft install|441x186

Nftables are managed via the nft command. To view the instruction associated with this command, type man nft in the console. It is worth noting that the provided instruction is quite extensive - it has almost 4000 lines. nft man|682x108

3. Why choose nftables?

Nftables is based primarily on configuration files (*.conf), which can be created through commands using nft. You can define many rules described in tables, which are based on protocols.

The possible families (protocol-related options) are as follows:

Nftables also has three types of chain. They are:


We can also specify the range of packets to which the rules apply as follows:

From @solene:

Pro tip: When experimenting with firewall rules, here is a practical method:

(if you do that on a remote server using ssh, make sure to not lock you out, you may want to run sleep 3600 && nft flush ruleset to disable all rules after 1h if you don’t stop the timer, or load the original ruleset 😉 instead of flushing everything temporarily)

4. Relatedness and differences with iptables - syntax

Nftables has a different syntax from iptables, but the commands can be translated from iptables to nftables quite simply. If we want to use a command from iptables in nftables, we can use the iptables-nft command. For example - we want to block traffic on port 80 for packets that come from the address 192.168.25.150.

The command in iptables will look as follows:

sudo iptables -A INPUT -p tcp --source 192.168.25.150 --dport 80 -j DROP nft comm|605x77


To add them to nftables, use the command:

sudo iptables-nft -A INPUT -p tcp --source 192.168.25.150 --dport 80 -j DROP nft comm2|605x108

5. [4.2] configuring nftables in Qubes

Qubes OS 4.2 nftables / nft firewall guide by @solene

6. Useful commands - quick sheet

ArchLinux Wiki has a fairly simple and easy-to-read guide related to the nftables command, which is available here

nft list ruleset - Displays the current set of rules nft flush ruleset - Removing rules, may leave device without working firewall nft list tables - Displays the currently defined tables in the system nft add table [family name] [table name] - Creates a table for a given family (options - ip, arp, etc.) with a given name

7. Summary

Nftables is quite a complex tool and it is no mean feat to describe its functionalities in a short article. That's why I encourage you to test different nftables configurations in a controlled environment in order to get most familiar with the tool. The fact that it is quite easy to translate rules from iptables may help many people to "switch" to nftables.

Additional valuable learning resource nftables