Displaying 1 result from an estimated 1 matches for "s0e0".
Did you mean:
s000
2003 Mar 16
0
Subject: [tcng] X:Y to tcng corespondence !
...et>
> To: lartc@mailman.ds9a.nl
> Subject: [LARTC] [tcng] X:Y to tcng corespondence !
>
> Is there a easy way that I to get class-id<----->tcng-class-path conversation.... and vs. versa..
>
> --__--__--
There are couple files can be created by tcc:
# cat a.tc
dev "s0e0" {
egress {
drop if ip_proto == 30;
class (<>)
if 1;
}
}
dev "s1e0" {
egress {
drop if vlan_id == 0;
class (<>)
if 1;
}
}
# cat tcc_map
device s0e0 - a.tc 1
qdisc s0e0:1 - a.tc 2
class s0e0:1:0 - a.t...