Re: IPsec work and question about Linux routing?
Markku Savela <[email protected]>
| Newsgroups | gmane.network.routing.click |
|---|---|
| Message-ID | <[email protected]> |
Hi, More questions, trying iterate best way to interface this thing (in usermode). For inbound I need to take a look at ALL incoming packets, so I can do in :: FromDevice(eth1, SNIFFER false); If the decision is, that packet is not for me, I would like to return it simply as is to linux kernel for processing. I tried... out :: Queue(200) -> ToDevice(eth1) in -> .... -> out; ...but, this puts packets back to eth1 going outward, and not to local stack, where they would end up without my "in" grab. How do I get them to go in as if my "grab" didn't happen at all?