26707bdbe7
We have git to track authorship, so let's not pad source files with it as well. A hacking check has been added for this. The value is N322. Change-Id: Iab0b64d417e0bb41a6b455e2ac377deee64ec3ee
198 lines
6.2 KiB
Python
198 lines
6.2 KiB
Python
# Copyright (c) 2013 Brocade Communications Systems, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""NOS NETCONF XML Configuration Command Templates.
|
|
|
|
Interface Configuration Commands
|
|
"""
|
|
|
|
# Create VLAN (vlan_id)
|
|
CREATE_VLAN_INTERFACE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<interface-vlan xmlns="urn:brocade.com:mgmt:brocade-interface">
|
|
<interface>
|
|
<vlan>
|
|
<name>{vlan_id}</name>
|
|
</vlan>
|
|
</interface>
|
|
</interface-vlan>
|
|
</config>
|
|
"""
|
|
|
|
# Delete VLAN (vlan_id)
|
|
DELETE_VLAN_INTERFACE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<interface-vlan xmlns="urn:brocade.com:mgmt:brocade-interface">
|
|
<interface>
|
|
<vlan operation="delete">
|
|
<name>{vlan_id}</name>
|
|
</vlan>
|
|
</interface>
|
|
</interface-vlan>
|
|
</config>
|
|
"""
|
|
|
|
#
|
|
# AMPP Life-cycle Management Configuration Commands
|
|
#
|
|
|
|
# Create AMPP port-profile (port_profile_name)
|
|
CREATE_PORT_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<name>{name}</name>
|
|
</port-profile>
|
|
</config>
|
|
"""
|
|
|
|
# Create VLAN sub-profile for port-profile (port_profile_name)
|
|
CREATE_VLAN_PROFILE_FOR_PORT_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<name>{name}</name>
|
|
<vlan-profile/>
|
|
</port-profile>
|
|
</config>
|
|
"""
|
|
|
|
# Configure L2 mode for VLAN sub-profile (port_profile_name)
|
|
CONFIGURE_L2_MODE_FOR_VLAN_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<name>{name}</name>
|
|
<vlan-profile>
|
|
<switchport/>
|
|
</vlan-profile>
|
|
</port-profile>
|
|
</config>
|
|
"""
|
|
|
|
# Configure trunk mode for VLAN sub-profile (port_profile_name)
|
|
CONFIGURE_TRUNK_MODE_FOR_VLAN_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<name>{name}</name>
|
|
<vlan-profile>
|
|
<switchport>
|
|
<mode>
|
|
<vlan-mode>trunk</vlan-mode>
|
|
</mode>
|
|
</switchport>
|
|
</vlan-profile>
|
|
</port-profile>
|
|
</config>
|
|
"""
|
|
|
|
# Configure allowed VLANs for VLAN sub-profile
|
|
# (port_profile_name, allowed_vlan, native_vlan)
|
|
CONFIGURE_ALLOWED_VLANS_FOR_VLAN_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<name>{name}</name>
|
|
<vlan-profile>
|
|
<switchport>
|
|
<trunk>
|
|
<allowed>
|
|
<vlan>
|
|
<add>{vlan_id}</add>
|
|
</vlan>
|
|
</allowed>
|
|
</trunk>
|
|
</switchport>
|
|
</vlan-profile>
|
|
</port-profile>
|
|
</config>
|
|
"""
|
|
|
|
# Delete port-profile (port_profile_name)
|
|
DELETE_PORT_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile
|
|
xmlns="urn:brocade.com:mgmt:brocade-port-profile" operation="delete">
|
|
<name>{name}</name>
|
|
</port-profile>
|
|
</config>
|
|
"""
|
|
|
|
# Activate port-profile (port_profile_name)
|
|
ACTIVATE_PORT_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile-global xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<port-profile>
|
|
<name>{name}</name>
|
|
<activate/>
|
|
</port-profile>
|
|
</port-profile-global>
|
|
</config>
|
|
"""
|
|
|
|
# Deactivate port-profile (port_profile_name)
|
|
DEACTIVATE_PORT_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile-global xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<port-profile>
|
|
<name>{name}</name>
|
|
<activate
|
|
xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" nc:operation="delete" />
|
|
</port-profile>
|
|
</port-profile-global>
|
|
</config>
|
|
"""
|
|
|
|
# Associate MAC address to port-profile (port_profile_name, mac_address)
|
|
ASSOCIATE_MAC_TO_PORT_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile-global xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<port-profile>
|
|
<name>{name}</name>
|
|
<static>
|
|
<mac-address>{mac_address}</mac-address>
|
|
</static>
|
|
</port-profile>
|
|
</port-profile-global>
|
|
</config>
|
|
"""
|
|
|
|
# Dissociate MAC address from port-profile (port_profile_name, mac_address)
|
|
DISSOCIATE_MAC_FROM_PORT_PROFILE = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile-global xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<port-profile>
|
|
<name>{name}</name>
|
|
<static
|
|
xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" nc:operation="delete">
|
|
<mac-address>{mac_address}</mac-address>
|
|
</static>
|
|
</port-profile>
|
|
</port-profile-global>
|
|
</config>
|
|
"""
|
|
|
|
#
|
|
# Custom RPC Commands
|
|
#
|
|
|
|
|
|
#
|
|
# Constants
|
|
#
|
|
|
|
# Port profile naming convention for Neutron networks
|
|
OS_PORT_PROFILE_NAME = "openstack-profile-{id}"
|
|
|
|
# Port profile filter expressions
|
|
PORT_PROFILE_XPATH_FILTER = "/port-profile"
|
|
PORT_PROFILE_NAME_XPATH_FILTER = "/port-profile[name='{name}']"
|