fix: cleanup
This commit is contained in:
parent
3198c6c6cb
commit
92f562a03e
11 changed files with 23 additions and 23 deletions
|
|
@ -1,3 +1,3 @@
|
|||
ALL_kver="/boot/vmlinuz-linux"
|
||||
ALL_kver='/boot/vmlinuz-linux'
|
||||
PRESETS=('default')
|
||||
default_uki="/efi/EFI/Linux/arch-linux.efi"
|
||||
default_uki='/efi/EFI/Linux/arch-linux.efi'
|
||||
|
|
|
|||
|
|
@ -1,26 +1,30 @@
|
|||
#!/usr/bin/nft -f
|
||||
# vim:set ts=2 sw=2 et:
|
||||
|
||||
flush ruleset
|
||||
|
||||
destroy table inet filter;
|
||||
table inet filter {
|
||||
chain input {
|
||||
type filter hook input priority filter; policy drop;
|
||||
|
||||
#tcp dport 32768-65535 counter meta nftrace set 1 accept comment "WoW VoiceError:17"
|
||||
|
||||
ct state invalid counter drop
|
||||
ct state {established,related} counter accept
|
||||
ct state invalid counter drop
|
||||
ct state {established, related} counter accept
|
||||
|
||||
iif "lo" counter accept
|
||||
ip protocol {icmp,icmpv6} counter accept
|
||||
|
||||
iifname "waydroid0" meta l4proto {tcp, udp} th dport {53, 67} counter accept
|
||||
|
||||
counter meta nftrace set 1 comment "dropped"
|
||||
}
|
||||
|
||||
chain forward {
|
||||
type filter hook forward priority filter; policy drop;
|
||||
|
||||
iifname "waydroid0" counter accept
|
||||
oifname "waydroid0" counter accept
|
||||
|
||||
counter meta nftrace set 1 comment "dropped"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
--save /etc/pacman.d/mirrorlist
|
||||
--protocol https
|
||||
--latest 5
|
||||
--sort rate
|
||||
--sort score
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue