diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-06-01 19:12:52 +0100 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-06-01 19:12:52 +0100 |
commit | c593b0c5ed0395c4fe31d074cfaf2e2657ae0856 (patch) | |
tree | 45cf6648a650f5dfa4ea3cc425f52f60ee22277f /roles/netfwd/files | |
parent | cf2d182f0a384e4eb95b0645e45b4491634e0441 (diff) | |
download | infra-c593b0c5ed0395c4fe31d074cfaf2e2657ae0856.tar.gz infra-c593b0c5ed0395c4fe31d074cfaf2e2657ae0856.tar.bz2 infra-c593b0c5ed0395c4fe31d074cfaf2e2657ae0856.zip |
Migrate netfwd to systemd-sysctl
/etc/sysctl.conf doesn't work, see [1]. Intrestingly enough, I catched
it only with system upgrade and reboot. Just reboot didn't catch it for
some reason, or I didn't notice.
[1]: https://wiki.archlinux.org/title/sysctl
Diffstat (limited to 'roles/netfwd/files')
-rw-r--r-- | roles/netfwd/files/99-net-ipv4-forward.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/netfwd/files/99-net-ipv4-forward.conf b/roles/netfwd/files/99-net-ipv4-forward.conf new file mode 100644 index 0000000..be105e2 --- /dev/null +++ b/roles/netfwd/files/99-net-ipv4-forward.conf @@ -0,0 +1,2 @@ +net.ipv4.ip_forward = 1 +net.ipv4.conf.all.forwarding = 1 |