KVM访客和IPv6,连接在一段时间后中断

目标:
将公共可用的IPv6地址分配给每个来宾

问题:
工作IPv6连接突然停止工作。 启动一切后(networking主机,客人)一切正常。 我可以通过SSH从外部连接到客人。 我可以通过ipv6连接到外部,如此等等。 但几分钟后连接断开。 ping6说

目的地不可达:地址不可达

我可以ping桥,但不是客人了

我的设置:
KVM over libvirt的Ubuntu 12.04。
我有多个客户端通过networking桥接通过IPv4连接。
这工作正常。
KVM主机具有可靠的IPv6连接。
我通过VIRSH分配了一个IPv6地址给网桥。
我使用radvd向客人宣传IPv6地址。

我在/etc/sysctl.conf中设置了以下内容

net.ipv6.conf.all.forwarding = 1
net.ipv6.conf.all.autoconf = 0
net.ipv6.conf.all.accept_ra = 0

编辑:

主机/ etc / network / interfaces

汽车
iface lo inet loopback

auto eth0
iface eth0 inet dhcp
iface eth0 inet6 static
地址2a01:dead:beef:a:x:x:x:x
networking掩码64
网关fe80 :: 1

guest / etc / network / interfaces

汽车
iface lo inet loopback

auto eth0
iface eth0 inet dhcp
iface eth0 inet6 static
地址2a01:dead:beef:a :: 3
networking掩码64
网关2a01:dead:beef:a :: 1 < – 这是我分配给网桥的ip

EDIT2:

现在它的工作原理应该如此。 我不知道问题是什么。 我从头开始设置它。 奇迹般有效。 也许我在干扰的方式上错误地configuration了一些东西。 但我不能想象会是什么。