firewall og båndbreddebegrænsning
jeg har dette firewall script :--------------------------
#!/bin/sh
ipfw -f flush
ipfw add 50 divert natd all from any to any from sis0
ipfw add 65000 pass all from any to any
ipfw pipe 10 config bw 768Kbit/s # Upload speed 768 kbit/s
ipfw pipe 20 config bw 6Mbit/s # Download speed 6144 kbit/s
ipfw queue 1 config pipe 10 weight 1
ipfw queue 2 config pipe 10 weight 100
ipfw queue 3 config pipe 20 weight 1
ipfw queue 4 config pipe 20 weight 100
ipfw add 100 allow ip from 192.168.1.100/24 to 192.168.1.100/24
ipfw add 300 queue 2 ip from 192.168.1.123 to any
ipfw add 500 queue 4 ip from any to 192.168.1.123
ipfw add 64000 deny log udp from any to any 137-139 via rl0
--------------------------
har en ip telefon på 192.168.1.123 som hvis der bliver kaldt op på den, skal den have al speed tilrådighed.
min gateway (10.0.0.100 (adresse på det eksterne kort) 192.168.1.100 intern kort).
jeg bruger nogengang en bittorrent klient på min freebsd box til at hente forskellige tvudsendelser, hvordan sætter jeg den til at have laveste prioritet, dvs al andet skal vægtes højere end det ?