Source code for faucet.router

"""Configure routing between VLANs."""

# Copyright (C) 2015 Brad Cowie, Christopher Lorier and Joe Stringer.
# Copyright (C) 2015 Research and Education Advanced Network New Zealand Ltd.
# Copyright (C) 2015--2017 The Contributors
#
# 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.

from faucet.conf import Conf


[docs]class Router(Conf): """Implement FAUCET configuration for a router.""" vlans = None defaults = { 'vlans': None, } defaults_types = { 'vlans': list, } def __str__(self): return self._id
[docs] def check_config(self): super(Router, self).check_config() assert isinstance(self.vlans, list) and len(self.vlans) > 1, ( 'router %s must have at least 2 VLANs configured' % self)