7 lines
137 B
Text
7 lines
137 B
Text
|
|
#!/usr/sbin/nft -f
|
||
|
|
|
||
|
|
table inet filter {
|
||
|
|
chain input {
|
||
|
|
tcp dport 24727 accept comment "accept connections for BundID AusweisApp2"
|
||
|
|
}
|
||
|
|
}
|