mirror of
https://github.com/ben-grande/qusal.git
synced 2024-12-16 03:14:26 -05:00
26 lines
964 B
Plaintext
Executable File
26 lines
964 B
Plaintext
Executable File
#!/usr/sbin/nft -f
|
|
# vim: ft=nftables
|
|
|
|
# SPDX-FileCopyrightText: 2022 unman <unman@thirdeyesecurity.org>
|
|
# SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
flush chain ip qubes custom-forward
|
|
flush chain ip6 qubes custom-forward
|
|
insert rule ip qubes custom-forward oifgroup 1 drop
|
|
insert rule ip qubes custom-forward iifgroup 1 drop
|
|
insert rule ip6 qubes custom-forward oifgroup 1 drop
|
|
insert rule ip6 qubes custom-forward iifgroup 1 drop
|
|
|
|
add chain ip6 qubes dnat-dns { type nat hook prerouting priority dstnat; policy accept; }
|
|
add chain ip qubes custom-dnat { type nat hook prerouting priority dstnat; policy accept; }
|
|
add chain ip6 qubes custom-dnat { type nat hook prerouting priority dstnat; policy accept; }
|
|
|
|
flush chain ip qubes dnat-dns
|
|
flush chain ip6 qubes dnat-dns
|
|
flush chain ip qubes custom-dnat
|
|
flush chain ip6 qubes custom-dnat
|
|
|
|
include "/var/run/wireguard/dnat.nft"
|