เป็นไปได้ไหมที่จะใช้ nftables และ iptables ร่วมกัน? ฉันจะให้กฎ iptables มีความสำคัญสูงกว่า nftables ได้อย่างไร ในขณะที่ฉันใช้ nftables สำหรับ nat และ iptables เพื่อลดทราฟฟิกโดยการจับคู่ hex & string
นี่คือกฎ iptables ที่ฉันต้องการใช้ หากมีคนสามารถแปลเป็น nftable ได้ก็จะทำงานเนื่องจากยูทิลิตี้ iptable-translate ล้มเหลวในกรณีนี้เช่นกัน
sudo iptables -t mangle -A PREROUTING -s 45.62.140.0/24 -p udp -m udp --dport 11011 -m string --hex-string '|ffffffff54|' --algo bm --to 65535 -j DROP
sudo iptables -t mangle -A PREROUTING -s 45.62.140.0/24 -p udp -m udp --dport 11011 -m string --hex-string '|ffffffff41|' --algo bm --to 65535 -j DROP
sudo iptables -t mangle -A PREROUTING -s 45.62.140.0/24 -p udp -m udp --dport 11011 -m string --hex-string '|ffffffff55|' --algo bm --to 65535 -j DROP
sudo iptables -t mangle -A PREROUTING -s 45.62.140.0/24 -p udp -m udp --dport 11011 -m string --string 'TSource Engine Query' --algo kmp --to 65535 -j DROP
ที.ไอ.เอ