Hello, I am looking for instructions on how to configure MP-BGP ipv6 over ipv4 through a vrf on VyOS 1.4. Can someone point me to the documentation to configure this? or a guide?
I found this guide. However I am not able to use all of the following command:
set protocols bgp 100 address-family ipv6-unicast network 2001:db8::/64
The syntax fails at network as it does not exist on my system.
I know there is a protocol called 6PE referenced in RFC4798 that can be used to accomplish what I need. Is there a way to enable this in VyOS? Note I am connecting to a Cisco IOS XR system on the other end, and we have been able to connect Cisco IOS XR to Juniper in our core using 6PE.
I cant seem to find where else to configure this. Note I am using route-maps. Here is my current configuration, I know its misconfigured. I just need guidance on how to set this up.
set interfaces ethernet eth2 vif 3677 address '10.36.77.1/31'
set interfaces ethernet eth2 vif 3677 address 'fdd1:10:36:77::2/64'
set interfaces ethernet eth2 vif 3677 vrf 'cust77'
set policy prefix-list cust77-network rule 1 action 'permit'
set policy prefix-list cust77-network rule 1 prefix '10.35.77.0/24'
set policy route-map cust77-import-bgp-routes rule 1 action 'permit'
set policy route-map cust77-import-bgp-routes rule 1 match ip route-source prefix-list '10.36.77.0/31'
set vrf name cust77 protocols bgp address-family ipv4-unicast network 10.35.77.0/24
set vrf name cust77 protocols bgp address-family ipv6-unicast network fdd1:10:35:77::0/64
set vrf name cust77 protocols bgp neighbor 10.36.77.0 address-family ipv4-unicast prefix-list export 'cust77-network'
set vrf name cust77 protocols bgp neighbor 10.36.77.0 remote-as '65250'
set vrf name cust77 protocols bgp neighbor fdd1:10:36:77::1 address-family ipv6-unicast
set vrf name cust77 protocols bgp neighbor fdd1:10:36:77::1 remote-as '65250'
set vrf name cust77 protocols bgp route-map 'cust77-import-bgp-routes'
set vrf name cust77 protocols bgp system-as '65077'
set vrf name cust77 table '3677'
Anyone hopefully someone can help, looking forward to replies.