GitHub user wido closed the discussion with a comment: EVPN-VXLAN - IPv6 via 
SLAAC

Update, I read the Juniper documentation again and again: 
https://www.juniper.net/documentation/us/en/software/junos/evpn/topics/concept/evpn-vxlan-ipv6-data-traffic-qfx.html

Configuring a virtual link-local gateway fixed it for me:

<pre>
wido@leaf03# show interfaces irb unit 3001 
proxy-macip-advertisement;
virtual-gateway-accept-data;
family inet {
    address 213.XX.0.1/28 {
        virtual-gateway-address 213.XX.0.3;
    }
}
family inet6 {
    address 2a01:XX:2:300::1/64 {
        virtual-gateway-address 2a01:XX:2:300::3;
    }
    address fe80::1/64 {
        virtual-gateway-address fe80::3;
    }
}

{master:0}[edit]
wido@leaf03# 
</pre>

And then configure the Router Advertisement:

<pre>
wido@leaf03# show protocols router-advertisement interface irb.3001 
solicit-router-advertisement-unicast;
virtual-router-only;
prefix 2a01:XXX:2:300::/64;

{master:0}[edit]
wido@leaf03# 
</pre>

I did not need the *tc* rules from above and now my VM shows this:

<pre>
root@network-debug:~# ip -6 r
2a01:XXX:2:300::/64 dev ens18 proto ra metric 1024 expires 2591563sec hoplimit 
64 pref medium
fe80::/64 dev ens18 proto kernel metric 256 pref medium
default via fe80::3 dev ens18 proto ra metric 1024 expires 1363sec hoplimit 64 
pref medium
root@network-debug:~# 
</pre>

Notice that *fe80::3* is now being selected as default gateway.

GitHub link: 
https://github.com/apache/cloudstack/discussions/8685#discussioncomment-15925040

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to