CiscoDevNet/terraform-provider-iosxe

BGP neighbour soft-reconfiguration inbound

Closed this issue · 2 comments

Description

The option to set soft-reconfiguration inbound for a BGP neighbour seems to be missing.
Can you please tell us how to configure or implement this feature?

show running-config | section router
This is part of an example running config:

router bgp 65000
 bgp log-neighbor-changes
 neighbor 192.168.1.2 remote-as 65001
 neighbor 192.168.1.2 fall-over bfd
 !
 address-family ipv4
  neighbor 192.168.1.2 activate
  neighbor 192.168.1.2 soft-reconfiguration inbound
  neighbor 192.168.1.2 route-map TEST-OUT out
 exit-address-family

json path: .data["Cisco-IOS-XE-native:native"].router
This is the restconf-json formatted running config:

{
  "Cisco-IOS-XE-bgp:bgp": [
    {
      "id": 65000,
      "bgp": {
        "log-neighbor-changes": true
      },
      "neighbor": [
        {
          "id": "192.168.1.2",
          "remote-as": 65001,
          "fall-over": {
            "bfd": {}
          }
        }
      ],
      "address-family": {
        "no-vrf": {
          "ipv4": [
            {
              "af-name": "unicast",
              "ipv4-unicast": {
                "neighbor": [
                  {
                    "id": "192.168.1.2",
                    "activate": [
                      null
                    ],
                    "route-map": [
                      {
                        "inout": "out",
                        "route-map-name": "TEST-OUT"
                      }
                    ],
                    "soft-reconfiguration": "inbound"
                  }
                ]
              }
            }
          ]
        }
      }
    }
  ]
}

Added in 0.5.2 release.