
This is step 1 implementation of OFAgent l2-population. OFAgent partially uses codes in OVS agent on implementation of l2-population. We share these codes adding mixin class for OVS to l2-population rpc. We use a ryu library instead of executing a ovs-vsctl command and on OFAgent l2-population is no longer optional. Also a function of local arp responder will be implemented on step 2. related commit: b6133c35dd587f6b01e8ec12757347b2767713a6 Partially implements: blueprint ofagent-l2pop Change-Id: I99a2adfd380a9fefe34c53e0dabc21d8cf5936cc
25 lines
952 B
Python
25 lines
952 B
Python
# Copyright (c) 2013 OpenStack Foundation.
|
|
# 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.
|
|
#
|
|
# @author: Sylvain Afchain, eNovance SAS
|
|
# @author: Francois Eleouet, Orange
|
|
# @author: Mathieu Rohon, Orange
|
|
|
|
from neutron.common import constants
|
|
|
|
SUPPORTED_AGENT_TYPES = [constants.AGENT_TYPE_OVS,
|
|
constants.AGENT_TYPE_LINUXBRIDGE,
|
|
constants.AGENT_TYPE_OFA]
|