File tree Expand file tree Collapse file tree 5 files changed +21
-1
lines changed
python/neutron-understack/neutron_understack/l3_router Expand file tree Collapse file tree 5 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 83
83
# add 50 to the max MTU we want of 9000 to handle Neutron's -50 for VXLAN type
84
84
global_physnet_mtu : 9050
85
85
service_providers :
86
- service_provider : " L3_ROUTER_NAT:cisco-asa:neutron_understack.l3_service_cisco_asa.CiscoAsa"
86
+ service_provider :
87
+ type : multistring
88
+ values :
89
+ - " L3_ROUTER_NAT:cisco-asa:neutron_understack.l3_router.cisco_asa.CiscoAsa"
90
+ - " L3_ROUTER_NAT:palo-alto:neutron_understack.l3_router.palo_alto.PaloAlto"
91
+ - " L3_ROUTER_NAT:vrf:neutron_understack.l3_router.vrf.Vrf"
87
92
ovn :
88
93
# the ovn-metadata-agent utilizes 'localport' on each hypervisor in OVS to work, since
89
94
# we don't have an OVS that the baremetal nodes are plugged into we can't have this
Original file line number Diff line number Diff line change
1
+ from neutron .services .ovn_l3 .service_providers .user_defined import UserDefined
2
+
3
+
4
+ class CiscoAsa (UserDefined ):
5
+ pass
Original file line number Diff line number Diff line change
1
+ from neutron .services .ovn_l3 .service_providers .user_defined import UserDefined
2
+
3
+
4
+ class PaloAlto (UserDefined ):
5
+ pass
Original file line number Diff line number Diff line change
1
+ from neutron .services .ovn_l3 .service_providers .user_defined import UserDefined
2
+
3
+
4
+ class Vrf (UserDefined ):
5
+ pass
You can’t perform that action at this time.
0 commit comments