ansible-aci icon indicating copy to clipboard operation
ansible-aci copied to clipboard

Add support for associating ospfIfP profiles to L3out interface profiles

Open jasonjuenger opened this issue 2 years ago • 0 comments

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

  • When configuring an L3out interface profile I would like to also associate an OSPF interface profile to it in order to enable OSPF on the l3extLIfP member interfaces. The ospfIfP object is a child of the l3extLIfP object as seen below.
{
  "l3extLIfP": {
	"attributes": {
	  "dn": "uni/tn-Test_Tenant/out-l3out_Test_public/lnodep-test/lifp-ospf-test",
	  "name": "ospf-test",
	  "rn": "lifp-ospf-test",
	  "status": "created"
	},
	"children": [
	  {
	    "ospfIfP": {
	      "attributes": {
	        "dn": "uni/tn-Test_Tenant/out-l3out_Test_public/lnodep-test/lifp-ospf-test/ospfIfP",
	        "rn": "ospfIfP",
	        "status": "created"
            },
	    "children": [
	      {
	        "ospfRsIfPol": {
	          "attributes": {
	            "tnOspfIfPolName": "default",
	            "status": "created,modified"
	          },
	          "children": []
	      }
            }	
          ]
        }
      }
    ]
  }
}

New or Affected Module(s):

  • aci_l3out_logical_interface_profile + fv:ospfIfP

APIC version and APIC Platform

  • V 4.2(7r) on-prem.

Collection versions

  • cisco.aci 2.2.0 (latest)

jasonjuenger avatar Apr 20 '22 17:04 jasonjuenger