Search String: Display: Description: Sort:

Results:

References: [ +subject:/^(?:^\s*(re|sv|fwd|fw)[\[\]\d]*[:>-]+\s*)*filtering\s+packtes\s+before\s+OS\s+takes\s+care\s+about\s+them\s*$/: 28 ]

Total 28 documents matching your query.

1. Re: filtering packtes before OS takes care about them (score: 1)
Author: rzik@xxxxxxxxx>
Date: Tue, 1 Mar 2005 16:33:49 +0000
This subject is rather new to me. Is there some literature about linux kernel networking API that you would recommend? thanks, -Pedro Fortuna
/archives/netdev/2005-03/msg00017.html (10,457 bytes)

2. Re: filtering packtes before OS takes care about them (score: 1)
Author: roen@xxxxxxxxx>
Date: Tue, 1 Mar 2005 09:20:58 -0800
If you need this as a "one off" type project, then another possibility is to hook onto netif_rx with jprobe (part of the kprobe) to redirect traffic to a local function first. It wouldn't useable for
/archives/netdev/2005-03/msg00020.html (9,184 bytes)

3. Re: filtering packtes before OS takes care about them (score: 1)
Author: rdy <kaber@xxxxxxxxx>
Date: Sat, 5 Mar 2005 14:08:56 +0000
I wasnt able to compile your packet_type_test.c :( I even tried your scripts (i.e. make-native.sh and make-uml.sh), which seem to me that proceeded to compile the example against the kernel source (
/archives/netdev/2005-03/msg00263.html (10,736 bytes)

4. Re: filtering packtes before OS takes care about them (score: 1)
Author: xxxxxxxxxxxxxx>
Date: Sat, 5 Mar 2005 12:58:23 -0600
Can you send the specific errors you got? And is the kernel sources present in /lib/modules/`uname -r`/build? Regards, -- Asim
/archives/netdev/2005-03/msg00284.html (9,219 bytes)

5. Re: filtering packtes before OS takes care about them (score: 1)
Author: @xxxxxxxxx>
Date: Sat, 5 Mar 2005 19:36:38 +0000
Hello Asim, I tried again but this time in Fedora Core 3 (kernel 2.6.10-1.760_FC3) and it went flawlessly. I have a look into your example and also into the Phrack article you mentioned and now I'm r
/archives/netdev/2005-03/msg00286.html (10,175 bytes)

6. Re: filtering packtes before OS takes care about them (score: 1)
Author: att Mackall <mpm@xxxxxxxxxxx>
Date: Sun, 6 Mar 2005 02:04:57 +0000
Thanks for you help Asim :)
/archives/netdev/2005-03/msg00303.html (11,608 bytes)

7. Re: filtering packtes before OS takes care about them (score: 1)
Author: dy <kaber@xxxxxxxxx>
Date: Mon, 7 Mar 2005 02:46:00 +0000
Hello Asim, Sorry to bother you again, but I run into some problems doing the tunneling stuff and maybe you or somebody else can give some clues. Based on your code I've coded two small kernel module
/archives/netdev/2005-03/msg00391.html (14,388 bytes)

8. filtering packtes before OS takes care about them (score: 1)
Author: osatti <marcelo.tosatti@xxxxxxxxxxxx>
Date: Mon, 28 Feb 2005 17:16:57 +0100
i need a possibility to catch IP4 packets (from ethernet devices) before OS' netmodules (IP, UDP, TCP, ICMP, ARP, ROUTE, NETFILTER ...) takes care about them and * to delete them from input buffer s
/archives/netdev/2005-02/msg00990.html (8,430 bytes)

9. Re: filtering packtes before OS takes care about them (score: 1)
Author: xxxxxxxxx>
Date: Mon, 28 Feb 2005 18:38:00 +0100
Why? It helps if you tell us what you really want, or is this a research project? The earliest place I know of is with tc filter, but that is a netfilter hook. So part of netfilter will "see" your co
/archives/netdev/2005-02/msg00995.html (9,178 bytes)

10. Re: filtering packtes before OS takes care about them (score: 1)
Author: Mason <jdmason@xxxxxxxxxx>
Date: Mon, 28 Feb 2005 14:09:56 -0600
You can process packets even before ip_rcv() gets them by registering your own packet handler (struct packet_type) using dev_add_pack(). I have a small sample at: http://limnos.csrd.uiuc.edu/notes/c
/archives/netdev/2005-02/msg01001.html (9,594 bytes)

11. Re: filtering packtes before OS takes care about them (score: 1)
Author: dmason@xxxxxxxxxx>
Date: Tue, 1 Mar 2005 01:26:26 +0100
I won't comment on the way you are about to solve your problem even if I do think that it could be solved in a simpler way. In recent 2.6 kernels the earliest filtering possibility is via the ingres
/archives/netdev/2005-02/msg01012.html (8,592 bytes)

12. Re: filtering packtes before OS takes care about them (score: 1)
Author: Chan" <mchan@xxxxxxxxxxxx>
Date: Tue, 1 Mar 2005 00:30:51 +0000
I was searching for something like this also. In my case, I'll need to intercept all outgoing IP packets and change them (including L2 frame) before they are passed to the network interface driver.
/archives/netdev/2005-02/msg01013.html (10,545 bytes)

13. Re: filtering packtes before OS takes care about them (score: 1)
Author: arnsworth" <dale@xxxxxxxxxxxxxx>
Date: Mon, 28 Feb 2005 21:35:09 -0600
If the type field of the struct packet_type you register == htons(ETH_P_ALL), then your packet handling function will be added to the head of the ptype_all list. As a result, it will see all incomin
/archives/netdev/2005-02/msg01018.html (9,922 bytes)

14. Re: filtering packtes before OS takes care about them (score: 1)
Author: as Graf <tgraf@xxxxxxx>
Date: 28 Feb 2005 20:53:08 -0500
As Thomas was mentioning in other email; write an action to do this. Attach on ingress qdisc filter/classifier like u32 to map the DIX and then tell it to pass the packets to the action. cheers, jama
/archives/netdev/2005-02/msg01019.html (10,827 bytes)

15. Re: filtering packtes before OS takes care about them (score: 1)
Author: Pedro Fortuna <pedro.fortuna@xxxxxxxxx>
Date: Tue, 1 Mar 2005 16:33:49 +0000
This subject is rather new to me. Is there some literature about linux kernel networking API that you would recommend? thanks, -Pedro Fortuna
/archives/netdev/2005-03/msg01940.html (10,779 bytes)

16. Re: filtering packtes before OS takes care about them (score: 1)
Author: Stephen Hemminger <shemminger@xxxxxxxx>
Date: Tue, 1 Mar 2005 09:20:58 -0800
If you need this as a "one off" type project, then another possibility is to hook onto netif_rx with jprobe (part of the kprobe) to redirect traffic to a local function first. It wouldn't useable for
/archives/netdev/2005-03/msg01943.html (9,332 bytes)

17. Re: filtering packtes before OS takes care about them (score: 1)
Author: Pedro Fortuna <pedro.fortuna@xxxxxxxxx>
Date: Sat, 5 Mar 2005 14:08:56 +0000
Asim, I wasnt able to compile your packet_type_test.c :( I even tried your scripts (i.e. make-native.sh and make-uml.sh), which seem to me that proceeded to compile the example against the kernel sou
/archives/netdev/2005-03/msg02186.html (10,964 bytes)

18. Re: filtering packtes before OS takes care about them (score: 1)
Author: Asim Shankar <asimshankar@xxxxxxxxx>
Date: Sat, 5 Mar 2005 12:58:23 -0600
Can you send the specific errors you got? And is the kernel sources present in /lib/modules/`uname -r`/build? Regards, -- Asim
/archives/netdev/2005-03/msg02207.html (9,421 bytes)

19. Re: filtering packtes before OS takes care about them (score: 1)
Author: Pedro Fortuna <pedro.fortuna@xxxxxxxxx>
Date: Sat, 5 Mar 2005 19:36:38 +0000
Hello Asim, I tried again but this time in Fedora Core 3 (kernel 2.6.10-1.760_FC3) and it went flawlessly. I have a look into your example and also into the Phrack article you mentioned and now I'm r
/archives/netdev/2005-03/msg02209.html (10,412 bytes)

20. Re: filtering packtes before OS takes care about them (score: 1)
Author: Pedro Fortuna <pedro.fortuna@xxxxxxxxx>
Date: Sun, 6 Mar 2005 02:04:57 +0000
Thanks for you help Asim :)
/archives/netdev/2005-03/msg02226.html (11,967 bytes)


This search system is powered by Namazu