From mboxrd@z Thu Jan 1 00:00:00 1970 From: Franck BALAZOT Date: Mon, 16 Jul 2001 08:01:54 +0000 Subject: Re: [LARTC] CBQ: U32 selector question : filtering all the port > a Message-Id: List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable To: lartc@vger.kernel.org Finaly I tried to filter port > 32768 (bit 15=3D1 : 0x8000) with : tc filter add dev eth0 parent 10;10 protocol ip prio 100 u32 match ip sport 0x8000 0x8000 flowid 10:100 It seems to work fine, but I need to do more tests. Nikolai Vladychevski wrote: > Franck BALAZOT wrote: > > > > Hi all, > > > > I saw that the u32 selector can match a PATTERN so I can use it to > > filter on a port value like : > > > > tc filter add dev eth0 parent 10;10 protocol ip prio 100 u32 match ip > > sport 0x0014 0xffff flowid 10:100 > > > > (filter on the ftp-data (20) source port) > > > > But is there a method to filter all the source ports > 40000 for example > > ? > > > > 40,000 into HEX will be 0x9c40 > converting into binary it will be 1001110001000000 > > you have to use the mask to match only the highest 10 bits, so in binary > it will be 1111111111000000 wich in HEX will be 0x03ff , that's your > mask. > > finaly it will be: > tc filter add dev eth0 parent 10;10 protocol ip prio 100 u32 match ip > sport 0x0000 0x03ff flowid 10:100 > > well, but that's the theory, i never tried it, can you test it and reply > me back if it did work or not? > > thanks > nikolai -- ------------------------------------------------ Franck BALAZOT (fbalazot@aeta.fr) AETA.COM 361, Avenue du G=E9n=E9ral De Gaulle 92140 CLAMART FRANCE T=E9l:01.41.36.12.93 ------------------------------------------------ _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/2.4Rout= ing/