17.04.2012 18:16, Gert Doering wrote:
Hi,
On Tue, Apr 17, 2012 at 05:13:19PM +0400, Sergey Matveychuk wrote:
I see openvpn adds ipv6 routes always for interface not addresses. I
think it should be like in add_route(): something like is_on_link() to
determ if interface should be added or address.
IPv6 routes on TAP doesn't work yet, yes. This is a documented shortcoming
and I'll fix it as soon as possible (which might not be as soon as you
hope for). TUN works, or setting the routes manually from an "up" script.
Rough changing route command works for me:
argv_printf (&argv, "%s add -inet6 %s/%d %s",
ROUTE_PATH,
network,
r6->netbits,
gateway );
But I understand it should be done correctly.