Hy all,
This is my first post.
I have one cenario that run over Cisco.
This is a configuration :
access-list 120 deny tcp any any eq smtp
access-list 120 permit ip any any
access-list 121 permit tcp any any eq smtp
access-list 122 permit tcp host 2xx.xxx.xxx.xx1 any eq smtp
access-list 122 permit tcp host 2xx.xxx.xxx.xx2 any eq smtp
access-list 122 permit tcp host 2xx.xxx.xxx.xx3 any eq smtp
access-list 122 permit tcp host 2xx.xxx.xxx.xx4 any eq smtp
access-list 122 permit tcp host 2xx.xxx.xxx.xx5 any eq smtp
priority-list 1 protocol ip high list 120
priority-list 1 protocol ip normal list 121
priority-list 1 protocol ip high list 122
Now, I substitute this router and place OpenBSD with the following
configuration:
altq on $wif priq bandwidth 28Mb queue { altpri medaltpri medpri baxpri }
queue altpri priority 14 priq
queue medpri priority 5 priq(default)
queue baxpri priority 3 qlimit 15 priq(red)
pass out quick on fxp1 proto tcp from any to any port != smtp queue altpri
pass out quick on fxp1 proto tcp from 200.xxx.xxx.xx1 port smtp queue medpri
pass out quick on fxp1 proto tcp from 200.xxx.xxx.xx1 port smtp queue medpri
pass out quick on fxp1 proto tcp from 200.xxx.xxx.xx1 port smtp queue medpri
pass out quick on fxp1 proto tcp from 200.xxx.xxx.xx1 port smtp queue medpri
pass out quick on fxp1 proto tcp from 200.xxx.xxx.xx1 port smtp queue medpri
pass out quick on fxp1 proto tcp from any to any port smtp queue baxpri
When I send emails, and these mails came over baxpri, all traffic that came in
altpri don't has priorize and this packets go to destinatio with high delay and
packets in baxpri they are not discarded like cisco.
How I can equipare my configuration with Cisco to have the same cenario ?
Best Regards,
R2