Odhiambo WASHINGTON wrote:
> Here is my network definition, with two IP blocks.
> 
>         my_ip_blocks = "62.8.64.0/19 196.200.32.0/20"
> 
> I'd like to do something like below:
> 
>         ipfw pipe 1 config bw 1024Kbit/s
>         ipfw add pipe 1 tcp from me to not $my_ip_blocks 25
> 
> 
> What I can't find is how to _correctly_ define my_ip_blocks
> in the rule in a way ipfw2 will accept.
> 

What release? I know the following will work in -CURRENT (Courtesy of
the manual pages for IPFW):

my_ip_blocks="62.8.64.0/19, 196.200.32.0/20"
ipfw pipe 1 config bw 1024Kbit/s
ipfw add pipe 1 tcp from me to not $my_ip_blocks 25

HTH
Joe

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to