至少有一下配置
options IPFIREWALL
options
例子:
1、icmp最大带宽100Kbit/s :
add pipe 1 icmp from any to any
ipfw pipe 1 config bw 100Kbit/s 20
2、内网(192.168.1.0/24)每一个ip地址的最大速度为500KBytes/s :
ipfw add pipe 1 ip from any to 192.168.1.0/24
ipfw pipe 1 config bw 500KBytes/s queue 50 mask dst-ip 0x000000ff
3、 内网(192.168.1.0/24)所有ip地址共享的下载最大速度为2MBit/s :
ipfw add queue 1 ip from any to 192.168.1.0/24
ipfw queue 1 config weight 5 pipe 2 mask dst-ip 0x000000ff
ipfw pipe 2 config bw 2Mbit/s
detail see dummynet(4) and ipfw(8).
阅读(480) | 评论(0) | 转发(0) |