Hi,
 
I want to let dsmark at the root mark all packets with classid 0xb8 as EF.
So, I filter to select all TCP packets to the test destination and mark them with
classid 0xb8.
 
[root@ my host] tc qdisc add dev eth0 root handle 1:0 dsmark indices 256 set_tc_index
[root@ my host] tc class change dev eth0 classid 1:b8 dsmark mask 0x3 value 0xb8
[root@ my host] tc filter add dev eth0 parent 1:0 protocol ip rsvp \
  ipproto tcp session 143.248.148.77 flowid 1:b8
 
it's OK...
 
I want to do same thing for IPv6, too.
So, I change 3th line...
 
[root@ my host] tc filter add dev eth0 parent 1:0 protocol ip rsvp \
  ipproto tcp session 3ffe:2e01:9:1::25 flowid 1:b8
 
But, Following error is...
 
Illegal "session"   <----error message
 
Can't "tc" support IPv6 ?
 
If not, please let me know how to do.
 
Sincerely,
jhkim

Reply via email to