Displaying 1 result from an estimated 1 matches for "33600bps".
Did you mean:
31200bps
2002 May 14
1
what''s the meaning of xchg()?
...ied to configure a simple script like this:
>
>*************************************************
>#!/bin/bash
>
>SORG=10.0.0.33
>DEST=10.0.0.34
>
>ipchains -F
>ipchains -A output -s $SORG -d $DEST -j ACCEPT -m 1
>
>tc qdisc del dev eth0 root handle 1:0 cbq bandwidth 33600bps avpkt 1000
>tc qdisc add dev eth0 root handle 1:0 cbq bandwidth 33600bps avpkt 1000
>
>tc class add dev eth0 parent 1:0 classid 1:1 cbq bandwidth 33600bps rate
>10000bps allot 1514 maxburst 20 avpkt 1000 prio 3
>
>tc filter add dev eth0 protocol ip parent 1:0 prio 1 handle 1 fw c...