gravatar

利用 ipfw 限制網路頻寬

使用網路時,避免某些程式或 FTP 把頻寬用光光,而一邊上網打 BBS、看網頁會相對反應速度變慢,可以使用 ipfw 防火牆程式來設定一下。例如針對某個 ip 限制頻寬,可以使用

ipfw add pipe 1 ip from 140.114.69.9 to any in
ipfw pipe 1 config bw 300kbit/s queue 50bytes
若是針對某些 port,可以使用
ipfw pipe 1 config bw 300kbit/s
ipfw add pipe 1 dst-port pop3
而若不想要這些 rules,使用 ipfw flush 就會把這些 rules 全部清光。詳細用法可以參考 man ipfw。