Mikko Hyvarinen wrote:
>>could someone with more knowledge of the tun device please take a look
>>at the code around line 387 in net/if_tun.c? It looks like tunoutput()
>>drops all packets here that aren't of the AF_INET family - most notably,
>>it drops IPv6 packets.
>>
>>We hacked around this
On Tue, May 14, 2002 at 04:50:24PM -0700, Lars Eggert wrote:
> Hi,
>
> could someone with more knowledge of the tun device please take a look
> at the code around line 387 in net/if_tun.c? It looks like tunoutput()
> drops all packets here that aren't of the AF_INET family - most notably,
> it
Brian Somers wrote:
> The tun device, when given the TUNSIFHEAD ioctl, will prepend the
> address family. If TUNSIFHEAD is turned off, it will drop non IPv4
> packets.
>
> This was done for backwards compatibility. To use IPv6 with tun, you
> must use the TUNSIFHEAD ioctl and prepend/strip t
> Hi,
>
> could someone with more knowledge of the tun device please take a look
> at the code around line 387 in net/if_tun.c? It looks like tunoutput()
> drops all packets here that aren't of the AF_INET family - most notably,
> it drops IPv6 packets.
>
> We hacked around this with the simp
[EMAIL PROTECTED] wrote:
>>could someone with more knowledge of the tun device please take a look
>>at the code around line 387 in net/if_tun.c? It looks like tunoutput()
>>drops all packets here that aren't of the AF_INET family - most notably,
>>it drops IPv6 packets.
>
>
> just to ma
>could someone with more knowledge of the tun device please take a look
>at the code around line 387 in net/if_tun.c? It looks like tunoutput()
>drops all packets here that aren't of the AF_INET family - most notably,
>it drops IPv6 packets.
just to make sure, which platform? from cc
Hi,
could someone with more knowledge of the tun device please take a look
at the code around line 387 in net/if_tun.c? It looks like tunoutput()
drops all packets here that aren't of the AF_INET family - most notably,
it drops IPv6 packets.
We hacked around this with the simple fix below, bu