我想检查这个配置是否为MX80或MX104 Junos17.3R3 (JTAC推荐版本)所接受?示例配置:
set routing-instances VPN100 instance-type vrf
set routing-instances VPN100 route-distinguisher 2.2.2.2:30100
set routing-instances VPN100 vrf-target target:123:30100
set routing-instances VPN100 vrf-table-label
set routing-instances VPN100 protocols evpn ip-prefix-routes advertise direct-nexthop
set routing-instances VPN100 protocols evpn ip-prefix-routes encapsulation vxlan
set routing-instances VPN100 protocols evpn ip-prefix-routes vni 30100我不能在VMX 17.3R3上检查这一点,因为它说不支持vxlan encap
[edit routing-instances VPN100 protocols evpn]
root@VMX# show
ip-prefix-routes {
advertise direct-nexthop;
##
## Warning: statement ignored: unsupported platform (vmx)
##
encapsulation vxlan;
##
## Warning: vni must be configured with encapsulation vxlan
##
vni 30100;
}也许有人可以尝试他的路由器上的旋钮(MX80或MX104与Junos17.3R3),并告诉我这是支持还是不支持。这个问题听起来像是“我是否需要在我的生产路由器上将junos升级到17.3R3以获得这个功能,还是不受支持,我只需要找到另一个解决方案?”
发布于 2020-11-10 14:22:45
看起来您正在使用VXLAN传输来配置EVPN Pure 5路由(即https://datatracker.ietf.org/doc/html/draft-ietf-bess-evpn-prefix-advertisement-11#section-4.4.1),这在It 80/104上直到18.2R1才被支持(参见相关的特征资源管理器条目)。
然而,MPLS传输从17.1R1开始就得到了支持。
https://networkengineering.stackexchange.com/questions/70901
复制相似问题