
NETCONF temaplates for NOS version greater than 4.1.0 are slightly different (argh). An init time check of the NOS version is done to enable selection of the correct NETCONF templates. Change-Id: I01e82ad402fbbb25d92a99a3325ca2608dd514cb Closes-bug: #1332719
253 lines
8.2 KiB
Python
253 lines
8.2 KiB
Python
# Copyright (c) 2014 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.
|
|
#
|
|
# Authors:
|
|
# Varma Bhupatiraju (vbhupati@#brocade.com)
|
|
# Shiv Haris (sharis@brocade.com)
|
|
|
|
|
|
"""NOS NETCONF XML Configuration Command Templates.
|
|
|
|
Interface Configuration Commands
|
|
"""
|
|
|
|
# Get NOS Version
|
|
SHOW_FIRMWARE_VERSION = (
|
|
"show-firmware-version xmlns:nc="
|
|
"'urn:brocade.com:mgmt:brocade-firmware-ext'"
|
|
)
|
|
GET_VCS_DETAILS = (
|
|
'get-vcs-details xmlns:nc="urn:brocade.com:mgmt:brocade-vcs"'
|
|
)
|
|
SHOW_VIRTUAL_FABRIC = (
|
|
'show-virtual-fabric xmlns:nc="urn:brocade.com:mgmt:brocade-vcs"'
|
|
)
|
|
GET_VIRTUAL_FABRIC_INFO = (
|
|
'interface xmlns:nc="urn:brocade.com:mgmt:brocade-firmware-ext"'
|
|
)
|
|
|
|
NOS_VERSION = "./*/{urn:brocade.com:mgmt:brocade-firmware-ext}os-version"
|
|
VFAB_ENABLE = "./*/*/*/{urn:brocade.com:mgmt:brocade-vcs}vfab-enable"
|
|
|
|
# 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_IN_DOMAIN = """
|
|
<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-basic>
|
|
<basic/>
|
|
</switchport-basic>
|
|
</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>
|
|
"""
|
|
|
|
#port-profile domain management commands
|
|
REMOVE_PORTPROFILE_FROM_DOMAIN = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile-domain xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<port-profile-domain-name>{domain_name}</port-profile-domain-name>
|
|
<profile operation="delete">
|
|
<profile-name>{name}</profile-name>
|
|
</profile>
|
|
</port-profile-domain>
|
|
</config>
|
|
"""
|
|
#put port profile in default domain
|
|
CONFIGURE_PORTPROFILE_IN_DOMAIN = """
|
|
<config xmlns:xc="urn:ietf:params:xml:ns:netconf:base:1.0">
|
|
<port-profile-domain xmlns="urn:brocade.com:mgmt:brocade-port-profile">
|
|
<port-profile-domain-name>{domain_name}</port-profile-domain-name>
|
|
<profile>
|
|
<profile-name>{name}</profile-name>
|
|
</profile>
|
|
</port-profile-domain>
|
|
</config>
|
|
"""
|
|
|
|
#
|
|
# 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}']"
|