Firewall: Difference between revisions
imported>Skylark State that iptables is the default |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
NixOS provides an interface to configure the firewall through the option <code>networking.firewall</code>. | NixOS provides an interface to configure the firewall through the option <code>networking.firewall</code>. | ||
The default firewall uses [https://www.netfilter.org/ iptables]. To use the newer [https://www.nftables.org/ nftables] instead, set <code>networking.nftables.enable = true;</code> | The default firewall uses [https://www.netfilter.org/ iptables]. To use the newer [https://www.nftables.org/ nftables] instead, additionally set <code>networking.nftables.enable = true;</code> | ||
== Enable == | == Enable == | ||
To enable | The firewall is enabled when not set. To explicitly enable it add the following into your system configuration: | ||
{{file|/etc/nixos/configuration.nix|nix|<nowiki> | {{file|/etc/nixos/configuration.nix|nix|<nowiki> | ||
Line 41: | Line 41: | ||
Firewall rules may be overwritten by Docker, as per https://github.com/NixOS/nixpkgs/issues/111852 | Firewall rules may be overwritten by Docker, as per https://github.com/NixOS/nixpkgs/issues/111852 | ||
[[Category:Server]] | |||
[[Category:Applications]] |
Latest revision as of 17:43, 19 April 2024
NixOS provides an interface to configure the firewall through the option networking.firewall
.
The default firewall uses iptables. To use the newer nftables instead, additionally set networking.nftables.enable = true;
Enable
The firewall is enabled when not set. To explicitly enable it add the following into your system configuration:
/etc/nixos/configuration.nix
networking.firewall.enable = true;
This will make all local ports and services unreachable from external connections.
Configuration
To allow specific TCP/UDP ports or port ranges on all interfaces, use following syntax:
networking.firewall = {
enable = true;
allowedTCPPorts = [ 80 443 ];
allowedUDPPortRanges = [
{ from = 4000; to = 4007; }
{ from = 8000; to = 8010; }
];
};
Interface-specific firewall rules can be applied like this:
networking.firewall.interfaces."eth0".allowedTCPPorts = [ 80 443 ];
In this case, ports 80
and 443
will be allowed for the interface eth0
.
Warning
Firewall rules may be overwritten by Docker, as per https://github.com/NixOS/nixpkgs/issues/111852