| --- |
| # Copyright 2017-present Open Networking Foundation |
| # |
| # 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. |
| # |
| # interface-config/defaults/main.yml |
| |
| # list of physical nodes in the scenario |
| physical_node_list: [] |
| |
| # headnode internet-facing interface to NAT traffic out of |
| headnode_nat_interface: eth0 |
| |
| # physical network interfaces on physical nodes, added to bond interfaces |
| management_net_interfaces: [] |
| fabric_net_interfaces: [] |
| |
| # The following value is hardcoded and should be identical to here: |
| # https://github.com/opencord/maas/blob/master/config-generator/netconfig.tpl#L29 |
| fabric_gateway_hwaddr: "a4:23:05:06:01:01" |
| |
| # management network configuration |
| management_net_cidr: "10.1.0.0/24" |
| management_net_bridge: "mgmtbridge" |
| |
| dns_servers: |
| - "{{ management_net_cidr | ipaddr('1') | ipaddr('address') }}" |
| |
| # VTN MANAGEMENT_HOST network |
| use_vtn_net_management_host: False |
| vtn_net_management_host_cidr: "{{ management_net_cidr }}" |
| vtn_net_management_host_hwaddr_prefix: "06A6" |
| |
| # VTN PUBLIC network, used with fabric |
| use_vtn_net_fabric: False |
| vtn_net_public_cidr: "10.6.1.0/24" |
| vtn_net_public_hwaddr_prefix: "0242" |
| |
| # VSG and public address pools |
| use_addresspool_vsg: False |
| addresspool_vsg_cidr: "10.7.1.0/24" |
| addresspool_vsg_hwaddr_prefix: "0ACA" |
| |
| use_addresspool_public: False |
| addresspool_public_cidr: "10.8.1.0/24" |
| addresspool_public_hwaddr_prefix: "0EFE" |
| |