Re: [LARTC] more questions.

2004-06-28 Thread Catalin BOIE
tc filter add dev eth1 parent 1:0 prio 10 handle 3: protocol ip u32 divisor 256 tc filter add dev eth1 protocol ip parent 1:0 prio 10 u32 ht 800:: match ip src 10.2.0.0/16 hashkey mask 0xff00 at 12 link 3: So I have something like this. the first command is saying handle 3 does this mean it

Re: [LARTC] more questions.

2004-06-25 Thread Catalin BOIE
Is there a relation between the hashtable ID /(parent,handle) so that if I used 2: for a hash table I could or couldn't use 2: for a (parent,handle)ID? No relation. You can use the same id for both. I also noticed that you type the hashtables like 2:2: can you have more levels with this? like

Re: [LARTC] more questions.

2004-06-25 Thread zoop
tc filter add dev eth0 parent 1:0 prio 10 handle 3: protocol ip u32 divisor 256 tc filter add dev eth0 protocol ip parent 1:0 prio 10 u32 ht 800:: match ip dst 10.2.0.0/16 hashkey mask 0xff00 at 16 link 3: tc filter add dev eth1 parent 1:0 prio 10 handle 3: protocol ip u32 divisor 256 tc

[LARTC] more questions.

2004-06-24 Thread zoop
I forgot to ask a few more. Is there a relation between the hashtable ID /(parent,handle) so that if I used 2: for a hash table I could or couldn't use 2: for a (parent,handle)ID? I also noticed that you type the hashtables like 2:2: can you have more levels with this? like 2:2:2:1: ? and I