1#!/usr/bin/env python3 2# 3# Copyright 2020 - Google 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16 17DEFAULT_PREFIX = 'fd00::/64' 18 19IGNORE_IF_MISSING_ON = 'on' 20IGNORE_IF_MISSING_OFF = 'off' 21 22ADV_SEND_ADVERT_ON = 'on' 23ADV_SEND_ADVERT_OFF = 'off' 24 25UNICAST_ONLY_ON = 'on' 26UNICAST_ONLY_OFF = 'off' 27 28ADV_MANAGED_FLAG_ON = 'on' 29ADV_MANAGED_FLAG_OFF = 'off' 30 31ADV_OTHER_CONFIG_FLAG_ON = 'on' 32ADV_OTHER_CONFIG_FLAG_OFF = 'off' 33 34ADV_DEFAULT_PREFERENCE_ON = 'on' 35ADV_DEFAULT_PREFERENCE_OFF = 'off' 36 37ADV_SOURCE_LL_ADDRESS_ON = 'on' 38ADV_SOURCE_LL_ADDRESS_OFF = 'off' 39 40ADV_HOME_AGENT_FLAG_ON = 'on' 41ADV_HOME_AGENT_FLAG_OFF = 'off' 42 43ADV_HOME_AGENT_INFO_ON = 'on' 44ADV_HOME_AGENT_INFO_OFF = 'off' 45 46ADV_MOB_RTR_SUPPORT_FLAG_ON = 'on' 47ADV_MOB_RTR_SUPPORT_FLAG_OFF = 'off' 48 49ADV_INTERVAL_OPT_ON = 'on' 50ADV_INTERVAL_OPT_OFF = 'off' 51 52ADV_ON_LINK_ON = 'on' 53ADV_ON_LINK_OFF = 'off' 54 55ADV_AUTONOMOUS_ON = 'on' 56ADV_AUTONOMOUS_OFF = 'off' 57 58ADV_ROUTER_ADDR_ON = 'on' 59ADV_ROUTER_ADDR_OFF = 'off' 60 61ADV_ROUTE_PREFERENCE_LOW = 'low' 62ADV_ROUTE_PREFERENCE_MED = 'medium' 63ADV_ROUTE_PREFERENCE_HIGH = 'high' 64 65ADV_RDNSS_OPEN_ON = 'on' 66ADV_RDNSS_OPEN_OFF = 'off' 67