* [LARTC] IPCLASSIFY - patch based on IPMARK
@ 2007-05-17 10:56 VladSun
2007-05-20 23:07 ` Luciano Ruete
2007-05-20 23:13 ` VladSun
0 siblings, 2 replies; 3+ messages in thread
From: VladSun @ 2007-05-17 10:56 UTC (permalink / raw)
To: lartc
Hello everybody!
Some time ago I've decided that using the MARK property of the Linux IP
packet structure for the needs of traffic control is not very useful. So
I wrote an iptables patch called IPCLASSIFY. It is fully based on IPMARK
but it uses the PRIORITY field instead of MARK.
The relation between IPCLASSIFY<->CLASSIFY is the same as IPMARK<->MARK.
By using IPCLASSIFY not a single TC filter is needed any more!
Additionally, the MARK field can be used for something else, more useful.
You can find it here :
http://openfmi.net/frs/download.php/385/IPCLASSIFY.tar.gz .
Fell free to report any bugs. :)
Have a nice day!
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [LARTC] IPCLASSIFY - patch based on IPMARK
2007-05-17 10:56 [LARTC] IPCLASSIFY - patch based on IPMARK VladSun
@ 2007-05-20 23:07 ` Luciano Ruete
2007-05-20 23:13 ` VladSun
1 sibling, 0 replies; 3+ messages in thread
From: Luciano Ruete @ 2007-05-20 23:07 UTC (permalink / raw)
To: lartc
On Thursday 17 May 2007 07:56, VladSun wrote:
> Hello everybody!
>
> Some time ago I've decided that using the MARK property of the Linux IP
> packet structure for the needs of traffic control is not very useful. So
> I wrote an iptables patch called IPCLASSIFY. It is fully based on IPMARK
> but it uses the PRIORITY field instead of MARK.
>
> The relation between IPCLASSIFY<->CLASSIFY is the same as IPMARK<->MARK.
> By using IPCLASSIFY not a single TC filter is needed any more!
> Additionally, the MARK field can be used for something else, more useful.
>
> You can find it here :
> http://openfmi.net/frs/download.php/385/IPCLASSIFY.tar.gz .
>
> Fell free to report any bugs. :)
Ok, here is the first, 0bytes in the tar.gz of the above url :)
luciano@sarasvati:~/downloads/apps$ wget
http://openfmi.net/frs/download.php/385/IPCLASSIFY.tar.gz
--20:05:43-- http://openfmi.net/frs/download.php/385/IPCLASSIFY.tar.gz
=> `IPCLASSIFY.tar.gz'
Resolving openfmi.net... 62.44.101.15
Connecting to openfmi.net|62.44.101.15|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
[
<=> ]
0 --.--K/s
20:05:50 (0.00 B/s) - `IPCLASSIFY.tar.gz' saved [0]
luciano@sarasvati:~/downloads/apps$ ls -lh IPCLASSIFY.tar.gz
-rw-r--r-- 1 luciano luciano 0 2007-05-20 20:05 IPCLASSIFY.tar.gz
luciano@sarasvati:~/downloads/apps$
:-)
--
Luciano
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [LARTC] IPCLASSIFY - patch based on IPMARK
2007-05-17 10:56 [LARTC] IPCLASSIFY - patch based on IPMARK VladSun
2007-05-20 23:07 ` Luciano Ruete
@ 2007-05-20 23:13 ` VladSun
1 sibling, 0 replies; 3+ messages in thread
From: VladSun @ 2007-05-20 23:13 UTC (permalink / raw)
To: lartc
Sorry!
The packet has been modified since I wrote this message. The new URL is:
http://openfmi.net/frs/download.php/410/IPCLASSIFY.zip
Luciano Ruete написа:
> On Thursday 17 May 2007 07:56, VladSun wrote:
>
>> Hello everybody!
>>
>> Some time ago I've decided that using the MARK property of the Linux IP
>> packet structure for the needs of traffic control is not very useful. So
>> I wrote an iptables patch called IPCLASSIFY. It is fully based on IPMARK
>> but it uses the PRIORITY field instead of MARK.
>>
>> The relation between IPCLASSIFY<->CLASSIFY is the same as IPMARK<->MARK.
>> By using IPCLASSIFY not a single TC filter is needed any more!
>> Additionally, the MARK field can be used for something else, more useful.
>>
>> You can find it here :
>> http://openfmi.net/frs/download.php/385/IPCLASSIFY.tar.gz .
>>
>> Fell free to report any bugs. :)
>>
>
> Ok, here is the first, 0bytes in the tar.gz of the above url :)
> luciano@sarasvati:~/downloads/apps$ wget
> http://openfmi.net/frs/download.php/385/IPCLASSIFY.tar.gz
> --20:05:43-- http://openfmi.net/frs/download.php/385/IPCLASSIFY.tar.gz
> => `IPCLASSIFY.tar.gz'
> Resolving openfmi.net... 62.44.101.15
> Connecting to openfmi.net|62.44.101.15|:80... connected.
> HTTP request sent, awaiting response... 200 OK
> Length: unspecified [text/html]
>
> [
> <=> ]
> 0 --.--K/s
>
> 20:05:50 (0.00 B/s) - `IPCLASSIFY.tar.gz' saved [0]
>
> luciano@sarasvati:~/downloads/apps$ ls -lh IPCLASSIFY.tar.gz
> -rw-r--r-- 1 luciano luciano 0 2007-05-20 20:05 IPCLASSIFY.tar.gz
> luciano@sarasvati:~/downloads/apps$
>
> :-)
>
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-05-20 23:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-17 10:56 [LARTC] IPCLASSIFY - patch based on IPMARK VladSun
2007-05-20 23:07 ` Luciano Ruete
2007-05-20 23:13 ` VladSun
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.