Firewall: Difference between revisions
Appearance
No edit summary |
m fill in "default rules" and "checking if running" sections |
||
Line 1: | Line 1: | ||
{{note|Firewall is currently being implemented in {{MR|2042|pmbootstrap}} and {{MR|2060|pmaports}}. This wiki page explains how it will be once both MRs are merged.}} | {{note|Firewall is currently being implemented in {{MR|2042|pmbootstrap}} and {{MR|2060|pmaports}}. This wiki page explains how it will be once both MRs are merged.}} | ||
New postmarketOS installations have {{wikipedia|nftables}} configured if the device's kernel has support for it. | New and existing postmarketOS installations have {{wikipedia|nftables}} configured if the device's kernel has support for it. | ||
== Default rules == | == Default rules == | ||
( | The following rules are enabled by default: | ||
* Allow incoming SSH on USB networking and WiFi interfaces | |||
* Allow incoming DHCP requests on USB networking interface | |||
** Without this, USB networking requires assigning a static IP address manually on the host, so this is included for convenience. | |||
* Deny all incoming connections on wwan (cell data network) | |||
** The assumption is no incoming connection on this network, which is owned/managed by cell carriers, should be trusted. Users aren't able to connect to their devices on this interface over the cell network. | |||
* Allow all outgoing connections on all interfaces | |||
== Check if it is running == | == Check if it is running == | ||
Firewall service status can be viewed by querying openrc: | |||
<syntaxhighlight lang="shell-session"> | |||
$ sudo rc-service nftables status | |||
* status: started | |||
</syntaxhighlight> | |||
If the status is not <code>started</code>, the kernel may not have support for nftables (see [[#Flash Mode]]). | |||
The currently loaded set of rules can be viewed with: | |||
<syntaxhighlight lang="shell-session"> | |||
$ sudo nft list ruleset | |||
table inet filter { | |||
chain input { | |||
type filter hook input priority filter; policy drop; | |||
..... | |||
</syntaxhighlight> | |||
== Usage == | == Usage == |
Revision as of 01:29, 11 June 2021
Firewall is currently being implemented in pmbootstrap!2042 and pmaports!2060. This wiki page explains how it will be once both MRs are merged. |
New and existing postmarketOS installations have nftables configured if the device's kernel has support for it.
Default rules
The following rules are enabled by default:
- Allow incoming SSH on USB networking and WiFi interfaces
- Allow incoming DHCP requests on USB networking interface
- Without this, USB networking requires assigning a static IP address manually on the host, so this is included for convenience.
- Deny all incoming connections on wwan (cell data network)
- The assumption is no incoming connection on this network, which is owned/managed by cell carriers, should be trusted. Users aren't able to connect to their devices on this interface over the cell network.
- Allow all outgoing connections on all interfaces
Check if it is running
Firewall service status can be viewed by querying openrc:
$ sudo rc-service nftables status
* status: started
If the status is not started
, the kernel may not have support for nftables (see #Flash Mode).
The currently loaded set of rules can be viewed with:
$ sudo nft list ruleset
table inet filter {
chain input {
type filter hook input priority filter; policy drop;
.....
Usage
(explain how to enable / disable it, explain -openusb)
Configuring the kernel to support nftables
- Run
pmbootstrap kconfig check --nftables kernel-name
to get a list of kernel config options that need to be changed - Fix them up with
pmbootstrap kconfig edit
- Add
pmb:kconfigcheck-nftables
tooptions=
in your kernel's APKBUILD - Create a test install with
pmbootstrap install
- Boot it and verify that the firewall works
- Create a merge request to pmaports.git with your changes
See also
- pmbootstrap!2042: add support for firewall
- pmaports!2060: postmarketos-firewall: add package for installing/configuring default fw
- build.postmarketos.org#100: build all main and community devices with firewall enabled