Page MenuHomeVyOS Platform

Docs / BGP: Document address-family <afi> route-map vrf import <route-map> / FRR ipv4-unicast import vrf route-map
Open, NormalPublicFEATURE REQUEST

Description

Update February 3rd, 2026
I noticed that this config path DOES exist, but is also not documented in VyOS!

protocols {
    bgp {
        address-family {
            ipv4-unicast {
                route-map {
                    vrf {
                        import myRouteMap
                    }
                }
            }

Converting this into a docs issue.

Summary

In FRR, it's possible to configure the following:

router bgp AS
 address-family ipv4 unicast
  import vrf route-map foobar
  import vrf myVRF
 exit-address-family

The import vrf route-map foobar currently cannot be configured in VyOS.

protocols {
     bgp {
         address-family {
             ipv4-unicast {
                 import {
                     /* Currently cannot specify import vrf route-map <Route-Map> in VyOS... */
                     vrf myVRF
                 }
             }
....

This command is currently undocumented in FRR, but appears to work just fine, relevant FRR docs issue https://github.com/FRRouting/frr/issues/20646

Use case

Filtering routes during direct VRF-to-VRF route leaking

Additional information

N/A

Details

Version
-
Is it a breaking change?
Perfectly compatible
Issue type
Feature (new functionality)

Event Timeline

Viacheslav triaged this task as Normal priority.Feb 2 2026, 1:08 PM
rchrist renamed this task from BGP: Allow configuring ipv4-unicast import vrf route-map to Docs / BGP: Document address-family <afi> route-map vrf import <route-map> / FRR ipv4-unicast import vrf route-map.Feb 3 2026, 10:15 AM
rchrist updated the task description. (Show Details)
rchrist updated the task description. (Show Details)

Update February 3rd, 2026
I noticed that this config path DOES exist, but is also not documented in VyOS!

protocols {
    bgp {
        address-family {
            ipv4-unicast {
                route-map {
                    vrf {
                        import myRouteMap
                    }
                }
            }

Converting this into a docs issue.