но как заставить сначала ходить на dns…
# table 1 = enabled clients..
ipfw add 5000 allow all from 'table(1)' to any
ipfw add 5000 allow all from any to 'table(1)'
# local port 81 = "no money" http microserver..
lan_nic="em0"
ipfw add 5100 fwd 127.0.0.1,81 tcp from any to any 80 via "$lan_nic" in
ipfw add 5100 allow tcp from any 80 to any via "$lan_nic" out
# disable all remaining forwarding..
ipfw add 9999 deny all from any to any