I cannot ping6 the network interface "tun0" on the host computer from a virtual machine.
Using vmware, I installed a Ubuntu 12.04 virtual machine, that is connected to the host machine with NAT. Typing
Virtual Machine $ping6 aaaa::1
on the virtual machine results in
PING aaaa::1(aaaa::1) 56 data bytes
From aaaa::2 icmp_seq=1 Destination unreachable: Address unreachable
The "vmnet8" interface connecting the virtual machine and the host works(confirmed by typing "ping6 " in the virtual machine). To my understanding, the a request to the "tun0" interface from the "eth0" should be routed, but please correct me if I am wrong.
Both machines are not connected to the Internet, but should only form a LAN.
Setup virtual machine (Ubuntu 12.04):
eth0 Link encap:Ethernet HWaddr 00:0c:29:16:XX:d0
inet addr:172.16.136.130 Bcast:172.16.136.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe16:XXd0/64 Scope:Link
inet6 addr: aaaa::2/64 Scope:Global
Setup host machine (Ubuntu 12.04):
vmnet8 Link encap:Ethernet HWaddr 00:XX:xx:c0:00:08
inet addr:172.16.136.1 Bcast:172.16.136.255 Mask:255.255.255.0
inet6 addr: fe80::xx:xxxx:fec0:8/64 Scope:Link
tun0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00
inet addr:127.0.1.1 P-t-P:127.0.1.1 Mask:255.255.255.255
inet6 addr: fe80::1/64 Scope:Link
inet6 addr: aaaa::1/64 Scope:Global
Thank you for your time.