* [LARTC] Writing rules direct to Kernel
@ 2005-01-19 10:12 Liviu Faciu
2005-01-19 10:21 ` Victor Julien
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Liviu Faciu @ 2005-01-19 10:12 UTC (permalink / raw)
To: lartc
Hi,
I'm interested to write rules direct in Kernel space memory and not to
execute the tc command. Have anyone done this before ? Any ideas ?
Sources ?
Thank you,
Liviu
--
This message was scanned for spam and viruses by BitDefender.
For more information please visit http://linux.bitdefender.com/
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] Writing rules direct to Kernel
2005-01-19 10:12 [LARTC] Writing rules direct to Kernel Liviu Faciu
@ 2005-01-19 10:21 ` Victor Julien
2005-01-19 10:27 ` Catalin(ux aka Dino) BOIE
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Victor Julien @ 2005-01-19 10:21 UTC (permalink / raw)
To: lartc
Liviu Faciu wrote:
> Hi,
>
> I'm interested to write rules direct in Kernel space memory and not to
> execute the tc command. Have anyone done this before ? Any ideas ?
> Sources ?
> Thank you,
> Liviu
>
>
>
Hi Liviu,
take a look at this:
http://www.coverfire.com/lql/
i have no experience with it, but it looks promising...
Regards,
Victor
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] Writing rules direct to Kernel
2005-01-19 10:12 [LARTC] Writing rules direct to Kernel Liviu Faciu
2005-01-19 10:21 ` Victor Julien
@ 2005-01-19 10:27 ` Catalin(ux aka Dino) BOIE
2005-01-19 10:53 ` George Alexandru Dragoi
2005-01-19 15:36 ` Liviu Faciu
3 siblings, 0 replies; 5+ messages in thread
From: Catalin(ux aka Dino) BOIE @ 2005-01-19 10:27 UTC (permalink / raw)
To: lartc
On Wed, 19 Jan 2005, Liviu Faciu wrote:
> Hi,
>
> I'm interested to write rules direct in Kernel space memory and not to
> execute the tc command. Have anyone done this before ? Any ideas ?
> Sources ?
> Thank you,
> Liviu
Take a look at iproute2 sources. There you have a lib that you can use to
what you want. Yes, is doable.
>
>
>
> --
> This message was scanned for spam and viruses by BitDefender.
> For more information please visit http://linux.bitdefender.com/
>
>
> _______________________________________________
> LARTC mailing list / LARTC@mailman.ds9a.nl
> http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
>
---
Catalin(ux aka Dino) BOIE
catab at deuroconsult.ro
http://kernel.umbrella.ro/
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] Writing rules direct to Kernel
2005-01-19 10:12 [LARTC] Writing rules direct to Kernel Liviu Faciu
2005-01-19 10:21 ` Victor Julien
2005-01-19 10:27 ` Catalin(ux aka Dino) BOIE
@ 2005-01-19 10:53 ` George Alexandru Dragoi
2005-01-19 15:36 ` Liviu Faciu
3 siblings, 0 replies; 5+ messages in thread
From: George Alexandru Dragoi @ 2005-01-19 10:53 UTC (permalink / raw)
To: lartc
I'm intersted too in a program that take an entire qos struncture tree
and filters and put them instantly in kernel, like iptables, i wonder
if there is such project
On Wed, 19 Jan 2005 12:27:40 +0200 (EET), Catalin(ux aka Dino) BOIE
<util@deuroconsult.ro> wrote:
> On Wed, 19 Jan 2005, Liviu Faciu wrote:
>
> > Hi,
> >
> > I'm interested to write rules direct in Kernel space memory and not to
> > execute the tc command. Have anyone done this before ? Any ideas ?
> > Sources ?
> > Thank you,
> > Liviu
>
> Take a look at iproute2 sources. There you have a lib that you can use to
> what you want. Yes, is doable.
>
> >
> >
> >
> > --
> > This message was scanned for spam and viruses by BitDefender.
> > For more information please visit http://linux.bitdefender.com/
> >
> >
> > _______________________________________________
> > LARTC mailing list / LARTC@mailman.ds9a.nl
> > http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
> >
>
> ---
> Catalin(ux aka Dino) BOIE
> catab at deuroconsult.ro
> http://kernel.umbrella.ro/
> _______________________________________________
> LARTC mailing list / LARTC@mailman.ds9a.nl
> http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
>
--
Bla bla
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] Writing rules direct to Kernel
2005-01-19 10:12 [LARTC] Writing rules direct to Kernel Liviu Faciu
` (2 preceding siblings ...)
2005-01-19 10:53 ` George Alexandru Dragoi
@ 2005-01-19 15:36 ` Liviu Faciu
3 siblings, 0 replies; 5+ messages in thread
From: Liviu Faciu @ 2005-01-19 15:36 UTC (permalink / raw)
To: lartc
Thank you,
Very good idea.
Liviu
On Wed, 2005-01-19 at 11:24 +0000, Victor Julien wrote:
> Liviu Faciu wrote:
> > Hi,
> >
> > I'm interested to write rules direct in Kernel space memory and not to
> > execute the tc command. Have anyone done this before ? Any ideas ?
> > Sources ?
> > Thank you,
> > Liviu
> >
> >
> >
>
> Hi Liviu,
>
> take a look at this:
> http://www.coverfire.com/lql/
>
> i have no experience with it, but it looks promising...
>
> Regards,
> Victor
>
>
--
This message was scanned for spam and viruses by BitDefender.
For more information please visit http://linux.bitdefender.com/
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-01-19 15:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-19 10:12 [LARTC] Writing rules direct to Kernel Liviu Faciu
2005-01-19 10:21 ` Victor Julien
2005-01-19 10:27 ` Catalin(ux aka Dino) BOIE
2005-01-19 10:53 ` George Alexandru Dragoi
2005-01-19 15:36 ` Liviu Faciu
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.