Blame bootstrap_ver/extensions/libxt_dccp.txlate

Packit Service fa126c
iptables-translate -A INPUT -p dccp -m dccp --sport 100
Packit Service fa126c
nft add rule ip filter INPUT dccp sport 100 counter
Packit Service fa126c
Packit Service fa126c
iptables-translate -A INPUT -p dccp -m dccp --dport 100:200
Packit Service fa126c
nft add rule ip filter INPUT dccp dport 100-200 counter
Packit Service fa126c
Packit Service fa126c
iptables-translate -A INPUT -p dccp -m dccp ! --dport 100
Packit Service fa126c
nft add rule ip filter INPUT dccp dport != 100 counter
Packit Service fa126c
Packit Service fa126c
iptables-translate -A INPUT -p dccp -m dccp --dport 100 --dccp-types REQUEST,RESPONSE,DATA,ACK,DATAACK,CLOSEREQ,CLOSE,SYNC,SYNCACK
Packit Service fa126c
nft add rule ip filter INPUT dccp dport 100 dccp type {request, response, data, ack, dataack, closereq, close, sync, syncack} counter
Packit Service fa126c
Packit Service fa126c
iptables-translate -A INPUT -p dccp -m dccp --sport 200 --dport 100
Packit Service fa126c
nft add rule ip filter INPUT dccp sport 200 dport 100 counter