Hi,
I set up a bridge between my existing firewall and my hub in order to avoid
that whole tun mess (I use ADSL, PPPoE). I was hoping to improve my DSL
performance by using the article at http://www.benzedrine.cx/ackpri.html,
but download speeds still suffer whenever there are uploads.
I'm not sure which device I'm supposed to queue, but since I'm using a bridge,
it shouldn't matter, right?
Here's my pf.conf:
ext_if="de1"
altq on $ext_if priq bandwidth 100Kb queue { q_pri, q_def }
queue q_pri priority 7
queue q_def priority 1 priq(default)
pass out on $ext_if proto tcp from any to any flags S/SAFR keep state \
queue (q_def, q_pri)
pass in on $ext_if proto tcp from any to any flags S/SAFR keep state \
queue (q_def, q_pri)
Thanks a lot.
-Ray-