# Warning: table ip filter is managed by iptables-nft, do not touch!
table ip filter { # handle 3
	chain INPUT { # handle 1
		type filter hook input priority filter; policy accept;
		tcp dport 22 counter packets 4979 bytes 20395180 accept # handle 4
		ip protocol tcp ct state new tcp dport 19885 counter packets 25 bytes 1500 accept # handle 5
	}

	chain FORWARD { # handle 2
		type filter hook forward priority filter; policy accept;
	}

	chain OUTPUT { # handle 3
		type filter hook output priority filter; policy accept;
	}
}
