8 lines
181 B
Text
8 lines
181 B
Text
|
|
#!/usr/sbin/nft -f
|
||
|
|
|
||
|
|
table inet filter {
|
||
|
|
chain input {
|
||
|
|
udp dport 53317 accept comment "localsend device discovery"
|
||
|
|
tcp dport 53317 accept comment "localsend file transfer"
|
||
|
|
}
|
||
|
|
}
|