1

Translating this iptables command to ipfw

view story
linux-howto

http://serverfault.com – I need to do the following (but I'm on Mac OS X):- iptables -A INPUT -p tcp -s 123.456.789.0 --sport 1234 --tcp-flags RST RST -j DROP So I need to use pfctl (I think? As ipfw is apparently deprecated?) I just need a direct translation of the iptables command to one I can use. Telling me to read the manpages or Google doesn't help, I've already done so and I can't make sense of it. If you must know WHY I want to do this, see here. Thank you! (HowTos)