LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 09-25-2019, 07:47 AM   #1
peterdim
LQ Newbie
 
Registered: Sep 2019
Posts: 4

Rep: Reputation: Disabled
IPv6 routing issues from VM to Host and Internet using ULAs


[UPDATE] Save yourself some time. Look at the 3rd reply to see the current issue.

Hello, I have a host with a VM, connected to one IPv6 forwarding PC in the lab and a Firewall to the Internet.

I'm using a macvlan bridge. Here is what the setup script looks like:

Code:
set -x
HWLINK=eno1
MACVLN=macvlan0
TESTHOST=www.google.com

# get network config

IP=$(ip address show dev $HWLINK | grep "inet " | awk '{print $2}')
IP6=$(ip address show dev $HWLINK | grep "inet6 " | head -n1 | awk '{print $2}')
NETWORK=$(ip -o route | grep $HWLINK | grep -v default | awk '{print $1}')
GATEWAY=$(ip -o route | grep default | awk '{print $3}')
NETWORK6=$(ip -6  -o route | grep $HWLINK | grep -v default | awk '{print $1}' | head -n1)
GATEWAY6=$(ip -6 -o route | grep default | awk '{print $3}')

# setting up $MACVLN interface

ip link add link $HWLINK $MACVLN type macvlan mode bridge
ip address add $IP  dev $MACVLN
ip address add $IP6 dev $MACVLN
ip link set dev $MACVLN up

# routing table

# empty routes
ip route flush dev $HWLINK
ip route flush dev $MACVLN
ip -6 route flush dev $HWLINK
ip -6 route flush dev $MACVLN

# add routes
ip route add $NETWORK dev $MACVLN metric 0
ip -6 route add $NETWORK6 dev $MACVLN metric 0
# add the default gateway
ip route add default via $GATEWAY
ip -6  route add default via $GATEWAY6 dev $MACVLN metric 90
These are the working (ping) and not working (no ping) routes using Unique Local Addresses:

Route.......IPv4....IPv6
VM-Lab.......yes....yes (disappears after a while, VM reboot fixes it somehow)
VM-Host......yes....no
VM-WWW.......yes....no

Host-Lab.....yes....yes
Host-WWW.....yes....yes


However there is VM-Lab and Host-VM connectivity with Local-Link Addresses (fe80::/64)

Here are the Host Routing Tables:

Code:
$route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.3.127.1      0.0.0.0         UG    0      0        0 macvlan0
0.0.0.0         10.3.127.1      0.0.0.0         UG    100    0        0 eno1
10.3.0.0        0.0.0.0         255.255.0.0     U     0      0        0 macvlan0
10.3.0.0        0.0.0.0         255.255.0.0     U     100    0        0 eno1
172.17.0.0      0.0.0.0         255.255.0.0     U     0      0        0 docker0
192.168.122.0   0.0.0.0         255.255.255.0   U     0      0        0 virbr0
$ route -n -6
Kernel IPv6 routing table
Destination                    Next Hop                   Flag Met Ref Use If
::1/128                        ::                         U    256 1     0 lo
fdc8:c2cb:4586:cb11::f88a:1e90/128 ::                         U    100 1     0 eno1
fdc8:c2cb:4586:cb11::f88a:1e90/128 ::                         U    1024 1     0 macvlan0
fdc8:c2cb:4586:cb11::/64       ::                         U    100 17     0 eno1
fdc8:c2cb:4586:cb11::/64       ::                         UAe  256 2     0 macvlan0
fe80::/64                      ::                         U    100 1     0 eno1
fe80::/64                      ::                         U    256 1     0 macvtap0
::/0                           fe80::6efd:b9ff:fe02:8223  UG   90  17     0 macvlan0
::/0                           fe80::6efd:b9ff:fe02:8223  UG   100 1     0 eno1
::/0                           fe80::6efd:b9ff:fe02:8223  UGDAe 1024 1     0 macvlan0
::1/128                        ::                         UAn  0   11     0 lo
fdc8:c2cb:4586:cb11::f88a:1e90/128 ::                         UAn  0   18     0 eno1
fdc8:c2cb:4586:cb11::f88a:1e90/128 ::                         UAn  0   18     0 macvlan0
fe80::2453:9ff:fe3e:3f7a/128   ::                         UAn  0   11     0 macvlan0
fe80::5054:ff:fe65:2ae4/128    ::                         UAn  0   2     0 macvtap0
fe80::9670:2373:b9c8:c83/128   ::                         UAn  0   5     0 eno1
ff00::/8                       ::                         U    256 18     0 eno1
ff00::/8                       ::                         U    256 17     0 macvlan0
ff00::/8                       ::                         U    256 12     0 macvtap0
::/0                           ::                         !n   -1  1     0 lo
VM routing tables:

Code:
Kernel IPv6 routing table
Destination                    Next Hop                   Flag Met Ref Use If
::/0                           ::                         !n   -1  1     0 lo
::1/128                        ::                         U    256 1     0 lo
fdc8:c2cb:4586:cb11::aa62:2eaa/128 ::                         U    256 1     0 br-data0
fdc8:c2cb:4586:cb11::/64       ::                         UAe  256 2     0 br-data0
fe80::/64                      ::                         U    256 2     0 mgmt0
fe80::/64                      ::                         U    256 1     0 br-data0
fe80::/64                      ::                         U    256 1     0 data0
::/0                           fe80::6efd:b9ff:fe02:8223  UGDAe 1024 2     0 br-data0
::1/128                        ::                         Un   0   3     0 lo
fdc8:c2cb:4586:cb11::aa62:2eaa/128 ::                         Un   0   3     0 br-data0
fe80::/128                     ::                         Un   0   3     0 mgmt0
fe80::/128                     ::                         Un   0   3     0 br-data0
fe80::/128                     ::                         Un   0   3     0 data0
fe80::5054:ff:fe65:2ae4/128    ::                         Un   0   3     0 br-data0
fe80::5054:ff:fe65:2ae4/128    ::                         Un   0   2     0 data0
fe80::6ca8:d2ff:fea6:d240/128  ::                         Un   0   4     0 mgmt0
ff00::/8                       ::                         U    256 3     0 mgmt0
ff00::/8                       ::                         U    256 2     0 br-data0
ff00::/8                       ::                         U    256 1     0 data0
::/0                           ::                         !n   -1  1     0 lo
...
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.3.127.1      0.0.0.0         UG    100    0        0 br-data0
10.3.0.0        0.0.0.0         255.255.0.0     U     0      0        0 br-data0

Both VM and Host get a DHCPv6 address from fdc8:c2cb:4586:cb11::1, which is also used for IPv6 routing. Its routing table looks like this:

Code:
Kernel IPv6 routing table
Destination                    Next Hop                   Flag Met Ref Use If
::1/128                        ::                         U    256 1     0 lo
fdc8:c2cb:4586:cb11::/64       ::                         U    100 3    33 enp4s0
fdc8:c2cb:4586:cb11::/64       ::                         U    256 2     1 enp4s0
fdc8:c2cb:4586:cb12::/64       ::                         U    256 1     0 enp4s1
fdc8:c2cb:4586:cb12::/64       ::                         U    1024 1     0 enp4s1
fe80::/64                      ::                         U    256 5 13876 enp4s1
fe80::/64                      ::                         U    256 5 16661 enp4s0
::/0                           fdc8:c2cb:4586:cb11::127:1 UG   1024 5176310 enp4s0
::1/128                        ::                         Un   0   5     6 lo
fdc8:c2cb:4586:cb11::/128      ::                         Un   0   2     0 enp4s0
fdc8:c2cb:4586:cb11::1/128     ::                         Un   0   3   810 enp4s0
fdc8:c2cb:4586:cb12::/128      ::                         Un   0   2     0 enp4s1
fdc8:c2cb:4586:cb12::1/128     ::                         Un   0   3    22 enp4s1
fe80::/128                     ::                         Un   0   2     0 enp4s0
fe80::/128                     ::                         Un   0   2     0 enp4s1
fe80::6efd:b9ff:fe02:738f/128  ::                         Un   0   5 26829 enp4s1
fe80::6efd:b9ff:fe02:8223/128  ::                         Un   0   6174994 enp4s0
ff00::/8                       ::                         U    256 5 31608 enp4s1
ff00::/8                       ::                         U    256 5182280 enp4s0
::/0                           ::                         !n   -1  1     1 lo
fdc8:c2cb:4586:cb11::127:1 is the main router and firewall between our lab and the Internet. It's the same as 10.3.127.1.

Last edited by peterdim; 10-02-2019 at 04:18 AM.
 
Old 09-27-2019, 09:48 AM   #2
peterdim
LQ Newbie
 
Registered: Sep 2019
Posts: 4

Original Poster
Rep: Reputation: Disabled
Note: Host is Fedora 30, VM is running Ubuntu 18.04

Update, I tcpdump-ed while pinging from VM to Host.

The macvlan bridge macvlan0 is getting ping requests and NDP solicitations from VM "who has <host_addr> and NDP advertisements from the host. The VM however does not add the host address to its list of neighbours and sends requests again.

Host's interface eno1 is getting ping requests and, of course, NDP solicitations.

On macvlan0:
Code:
[peterd@localhost ome.ubuntu]$ sudo tcpdump -nvv -i macvlan0  icmp6 | grep -E ":2eaa|:2ae4"
tcpdump: listening on macvlan0, link-type EN10MB (Ethernet), capture size 262144 bytes
17:31:48.936304 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::aa62:2eaa > ff02::1:ff8a:1e90: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::f88a:1e90
17:31:48.936377 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::f88a:1e90 > fdc8:c2cb:4586:cb11::aa62:2eaa: [icmp6 sum ok] ICMP6, neighbor advertisement, length 32, tgt is fdc8:c2cb:4586:cb11::f88a:1e90, Flags [solicited, override]
17:31:48.937016 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 1
17:31:49.942984 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 2
17:31:50.966939 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 3
17:31:51.990936 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 4
17:31:53.014938 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 5
17:31:54.038900 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 6
17:31:54.280816 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fe80::899:bfff:fec3:f65d > fdc8:c2cb:4586:cb11::aa62:2eaa: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::aa62:2eaa
17:31:54.280932 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fdc8:c2cb:4586:cb11::aa62:2eaa > fe80::899:bfff:fec3:f65d: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fdc8:c2cb:4586:cb11::aa62:2eaa, Flags [router, solicited]
On eno1:
Code:
[peterd@localhost ome.ubuntu]$ sudo tcpdump -nvv -i eno1  icmp6 | grep -E ":2eaa|:2ae4"
tcpdump: listening on eno1, link-type EN10MB (Ethernet), capture size 262144 bytes
17:32:16.552782 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::f88a:1e90 > ff02::1:ff62:2eaa: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::aa62:2eaa
17:32:16.566897 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 28
17:32:17.591400 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 29
17:32:17.591465 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::f88a:1e90 > ff02::1:ff62:2eaa: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::aa62:2eaa
17:32:18.600734 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::f88a:1e90 > ff02::1:ff62:2eaa: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::aa62:2eaa
17:32:18.614783 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 30
17:32:19.624791 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::f88a:1e90 > ff02::1:ff62:2eaa: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::aa62:2eaa
17:32:19.638905 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 31
17:32:20.662891 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 32
17:32:20.662951 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::f88a:1e90 > ff02::1:ff62:2eaa: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::aa62:2eaa
17:32:21.672792 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fdc8:c2cb:4586:cb11::f88a:1e90 > ff02::1:ff62:2eaa: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::aa62:2eaa
Now the VM is getting the NDP advertisements:

Code:
root@standardpcq35ich92009525400652ae4:~# tcpdump -nvv -i br-data0  icmp6 | grep -E ":2eaa|:2ae4"
tcpdump: listening on br-data0, link-type EN10MB (Ethernet), capture size 262144 bytes
17:51:02.964210 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 1128
17:51:03.988213 IP6 (flowlabel 0x4cc8a, hlim 64, next-header ICMPv6 (58) payload length: 64) fdc8:c2cb:4586:cb11::aa62:2eaa > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, echo request, seq 1129
...
17:51:12.212150 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 32) fe80::5054:ff:fe65:2ae4 > fdc8:c2cb:4586:cb11::f88a:1e90: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has fdc8:c2cb:4586:cb11::f88a:1e90
17:51:12.212797 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fdc8:c2cb:4586:cb11::f88a:1e90 > fe80::5054:ff:fe65:2ae4: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fdc8:c2cb:4586:cb11::f88a:1e90, Flags [solicited]
Here are neighbour advertisements the host receives (not sure how to interpret this data):

Code:
[peterd@localhost ome.ubuntu]$ sudo tcpdump -nvv -i eno1 | grep -E ":2eaa|:2ae4" | grep advert
tcpdump: listening on eno1, link-type EN10MB (Ethernet), capture size 262144 bytes
18:09:54.516615 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fdc8:c2cb:4586:cb11::f88a:1e90 > fe80::5054:ff:fe65:2ae4: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fdc8:c2cb:4586:cb11::f88a:1e90, Flags [solicited]
18:10:31.380366 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fdc8:c2cb:4586:cb11::f88a:1e90 > fe80::5054:ff:fe65:2ae4: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fdc8:c2cb:4586:cb11::f88a:1e90, Flags [solicited]
18:10:36.713226 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fe80::5054:ff:fe65:2ae4 > fe80::899:bfff:fec3:f65d: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fe80::5054:ff:fe65:2ae4, Flags [router, solicited]
18:10:41.876449 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fe80::899:bfff:fec3:f65d > fe80::5054:ff:fe65:2ae4: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fe80::899:bfff:fec3:f65d, Flags [solicited]
18:11:08.244285 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fdc8:c2cb:4586:cb11::f88a:1e90 > fe80::5054:ff:fe65:2ae4: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fdc8:c2cb:4586:cb11::f88a:1e90, Flags [solicited]
18:11:45.108200 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fdc8:c2cb:4586:cb11::f88a:1e90 > fe80::5054:ff:fe65:2ae4: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fdc8:c2cb:4586:cb11::f88a:1e90, Flags [solicited]
18:11:50.441328 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fe80::5054:ff:fe65:2ae4 > fe80::899:bfff:fec3:f65d: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fe80::5054:ff:fe65:2ae4, Flags [router, solicited]
18:11:55.604091 IP6 (hlim 255, next-header ICMPv6 (58) payload length: 24) fe80::899:bfff:fec3:f65d > fe80::5054:ff:fe65:2ae4: [icmp6 sum ok] ICMP6, neighbor advertisement, length 24, tgt is fe80::899:bfff:fec3:f65d, Flags [solicited]

So something prevents NDP from working.
1, Why is the VM not accepting the neighbour advertisement from the host. Are there any policies or something else that affect this?
2. The host seems to have the VM in its neighbour list:

Code:
[peterd@localhost ~]$ ip -6 neigh
fdc8:c2cb:4586:cb11::aa62:2eaa dev macvlan0 lladdr 52:54:00:65:2a:e4 router STALE
fdc8:c2cb:4586:cb11::aa62:2eaa dev eno1  INCOMPLETE #INCOMPLETE?
fe80::899:bfff:fec3:f65d dev eno1  FAILED
fdc8:c2cb:4586:cb11::1 dev eno1 lladdr 6c:fd:b9:02:82:23 router STALE
fe80::6efd:b9ff:fe02:8223 dev macvlan0 lladdr 6c:fd:b9:02:82:23 router REACHABLE
fe80::6efd:b9ff:fe02:8223 dev eno1 lladdr 6c:fd:b9:02:82:23 router STALE
fe80::5054:ff:fe65:2ae4 dev macvlan0 lladdr 52:54:00:65:2a:e4 router STALE
fe80::209:fff:fe7d:da11 dev eno1 lladdr 00:09:0f:7d:da:11 router STALE
Why is it sending solicitations for the VM's address instead of replying to the echo requests?

Last edited by peterdim; 09-27-2019 at 10:20 AM. Reason: Add the VM tcpdump
 
Old 09-30-2019, 10:48 AM   #3
peterdim
LQ Newbie
 
Registered: Sep 2019
Posts: 4

Original Poster
Rep: Reputation: Disabled
Lightbulb Progress

Achieved:
Host.->.VM...ping.YES.(ping6 -I macvlan1)
VM...->.Host.ping.YES

By running this on the host:
Code:
#sudo /sbin/ip -6 route add fdc8:c2cb:4586:cb11::/64 dev macvlan1 metric 1
Still, VM -> Internet connectivity is shady at best. Here are the new obstacles I'm facing:

1. I tried pinging Google's IPv6 address 2a00:1450:4017:808::200e and my gateway just sent neighbour solicitations for the VM's addr. The VM didn't receive replies.
2. I tried again 5 minutes later and it worked!
3. The VM couldn't resolve ipv6.google.com at all.
4. Tried pinging 2001:4860:4860::8888 (Google's DNS) - didn't work.
5. Pinged 2a00:1450:4017:808::200e again - didn't work.
 
Old 10-01-2019, 08:13 AM   #4
peterdim
LQ Newbie
 
Registered: Sep 2019
Posts: 4

Original Poster
Rep: Reputation: Disabled
Exclamation NDP strikes again

Quote:
Originally Posted by peterdim View Post
Achieved:
Host.->.VM...ping.YES.(ping6 -I macvlan1)
VM...->.Host.ping.YES
Turns out it works only in part.

If I try connecting Host -> VM first the host sends neighbour solicitations in the network and the VM does not get them.

If I ping VM -> Host, then the host adds it to its neighbour list for tha macvlan0 interface.

Why does this happen, how can we fix it?

Edit: I tried to route multicasts reach the VM by setting this on the host:
Code:
ip -6 route add ff00::/8 dev macvlan0 metric 1 table local
Didn't work.

Last edited by peterdim; 10-03-2019 at 09:01 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] IPv6 Routing issues with subnets stekahelo Linux - Networking 1 06-18-2017 05:14 AM
DNS/ipv6 issues? New network, only server has internet issues. higgins909 Linux - Server 4 01-02-2017 03:43 PM
LXer: Paul Vixie on IPv6 NAT, IPv6 security and Internet of Things LXer Syndicated Linux News 0 05-25-2016 08:03 PM
LXer: Another IPv6 Crash Course For Linux: Real IPv6 Addresses, Routing, Name Services LXer Syndicated Linux News 0 04-21-2011 07:40 AM
Routing between host and vmware host-only network astbis Linux - Networking 2 12-27-2007 08:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 06:37 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration