python-iptables
python-iptables copied to clipboard
How to set match LOCAL
Hi, Is it possible to set 'ADDRTYPE match dst-type LOCAL' for with iptx?
I don't have an access to a Linux box at the moment, but could you try adding the rule via the CLI with the iptables command and then use the library to iptc.easy.dump_chain() and share the output ? 🙏
>>>pprint(iptc.easy.dump_chain('nat', 'OUTPUT'))
[{'addrtype': {'dst-type': 'LOCAL'},
'counters':(3242, 301756),
'target': 'CNI-HOSTPORT-DNAT'}]
Does that answer your question ? :)
I do not see those props in Rule object. So i do not think so.