search for: to_first

Displaying 1 result from an estimated 1 matches for "to_first".

Did you mean: _first
2007 Sep 18
1
htb on Gigabit Interfaces
...8000kbit quantum 30000 # first customer download /sbin/tc class add dev eth0 parent 1:0 classid 1:3 htb rate 34mbit ceil 34mbit quantum 30000 # first customer upload /sbin/tc class add dev eth1 parent 1:0 classid 1:3 htb rate 34mbit ceil 34mbit quantum 30000 #then iptable classify rules #TO_FIRST CUSTOMER /opt/sbin/iptables -t mangle -I POSTROUTING -o eth0 -d $DESTINATIONIP -j CLASSIFY --set-class 1:2 #FROM_FIRST CUSTOMER /opt/sbin/iptables -t mangle -I POSTROUTING -o eth1 -s $SOURCEIP -j CLASSIFY --set-class 1:2 #TO_SECOND CUSTOMER /opt/sbin/iptables -t mangle -I POSTROUTING -o...