-
Notifications
You must be signed in to change notification settings - Fork 77
Open
Description
Downstream bugtracker link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016129
I have a virtual machine on a host-only network. The configuration is thus:
host$ ip a show dev virbr1
23: virbr1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 52:54:00:76:0b:a6 brd ff:ff:ff:ff:ff:ff
inet 10.82.222.129/25 brd 10.82.222.255 scope global virbr1
valid_lft forever preferred_lft forever
inet6 fec0::1/64 scope site
valid_lft forever preferred_lft forever
inet6 fe80::5054:ff:fe76:ba6/64 scope link
valid_lft forever preferred_lft forever
guest$ ip a show dev eth1
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc jhtb state UP group default qlen 1000
link/ether 52:54:00:b7:47:b9 brd ff:ff:ff:ff:ff:ff
inet 10.82.222.130/25 brd 10.82.222.255 scope global eth1
valid_lft forever preferred_lft forever
inet6 fec0::2/64 scope site
valid_lft forever preferred_lft forever
inet6 fe80::5054:ff:feb7:47b9/64 scope link
valid_lft forever preferred_lft forever
I can do this:
guest$ sudo tcp6 -i eth1 -y 1000 -d fec0::1 -a 22 -P 1200
But I cannot send packets in the other direction:
host$ sudo tcp6 -i virbr1 -y 1000 -d fec0::2 -a 22 -P 1200
Error while performing Neighbor Discovery for the Destination Address
Error while learning Souce Address and Next Hop
host$ sudo tcp6 -i virbr1 -y 1000 -s fec0::1 -d fec0::2 -a 22 -P 1200 -S 52:54:00:76:0b:a6 -D 52:54:00:b7:47:b9
Error while performing Neighbor Discovery for the Destination Address
Error while learning Souce Address and Next Hop
host$ sudo tcp6 -i virbr1 -y 1000 -s fe80::5054:ff:fe76:ba6 -d fe80::5054:ff:feb7:47b9 -a 22 -P 1200 -S 52:54:00:76:0b:a6 -D 52:54:00:b7:47:b9
Error while performing Neighbor Discovery for the Destination Address
Error while learning Souce Address and Next Hop
Misspelt error messages aside, why is this, even if I pass the source address? Neighbour discovery should work because…
guest$ ping6 -c 1 fec0::1
PING fec0::1(fec0::1) 56 data bytes
64 bytes from fec0::1: icmp_seq=1 ttl=64 time=0.182 ms
--- fec0::1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.182/0.182/0.182/0.000 ms
host$ ping6 -c 1 fec0::2
PING fec0::2(fec0::2) 56 data bytes
64 bytes from fec0::2: icmp_seq=1 ttl=64 time=0.384 ms
--- fec0::2 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.384/0.384/0.384/0.000 ms
It also doesn’t work when using link-local addresses, see the last attempt above.
Metadata
Metadata
Assignees
Labels
No labels