Displaying 2 results from an estimated 2 matches for "2200kbit".
Did you mean:
200kbit
2004 Feb 08
1
HTB - got mesage "invalid parent ID" is wrong: 1:1
...works also fine, but in both of
cases I use only one class of traffic.
Now I want to divide traffic to 3 classes on other interface (egress to
ineternal network). I try this command sequense
tc qdisc add dev eth1 root handle 1: htb default 12
tc class add dev eth1 parent 1: classid 1:1 htb rate 2200kbit ceil 2200kbit
tc class add dev eth1 parent 1:1: classid 1:10 htb rate 1816kbit ceil
2200kbit
but here I got message
Error: argument "invalid parent ID" is wrong: 1:1:
Whats wrong?
Kernel 2.4.23, tc patched (from HTB tarball).
Thanx in advance
regards
Patrick Spousta
_______________...
2004 Dec 28
1
Newb question: tc shedulers on 2 interfaces
...1: protocol ip prio 10 u32 \
match ip protocol 6 0xff \
match u8 0x50 0x0f at 0 \
match u16 0x0000 0xffc0 at 2 \
match u8 0x10 0xff at 33 \
flowid 1:10
tc qdisc add dev dev eth0 handle ffff: ingress
tc filter add dev eth0 parent ffff: protocol ip prio 50 u32 \
match ip src 0.0.0.0/0 police rate 2200kbit burst 10k drop flowid :1
# My eth1 schedule:
tc qdisc add dev eth1 root tbf rate 512kbit latency 50ms burst 10000
The long eth0 tc-script is fetched externally as you may see...but:
This have worked well for me (no, really) but...since I am a newbee, I
have read the lartc doc, and understood som...