blob: c1cdad0b99c0079f8e2e6f31481f641892c5e159 [file] [log] [blame]
Zack Williams6dc2d452017-12-20 17:50:49 -07001---
Matteo Scandolo3896c472017-08-01 13:31:42 -07002# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
Zack Williams6dc2d452017-12-20 17:50:49 -070015#
Zack Williamsba5549c2017-03-25 15:04:45 -070016# interface-config/defaults/main.yml
17
Zack Williams6dc2d452017-12-20 17:50:49 -070018# list of physical nodes in the scenario
Zack Williamsba5549c2017-03-25 15:04:45 -070019physical_node_list: []
20
Zack Williams2f5f2bd2017-12-01 15:04:22 -070021# headnode internet-facing interface to NAT traffic out of
Zack Williams6dc2d452017-12-20 17:50:49 -070022headnode_nat_interface: eth0
23
Zack Williams2f5f2bd2017-12-01 15:04:22 -070024# physical network interfaces on physical nodes, added to bond interfaces
Zack Williams6dc2d452017-12-20 17:50:49 -070025management_net_interfaces: []
26fabric_net_interfaces: []
27
28# management network configuration
Zack Williams2f5f2bd2017-12-01 15:04:22 -070029management_net_cidr: "10.1.0.0/24"
30management_net_bridge: "mgmtbr"
31
Zack Williams6dc2d452017-12-20 17:50:49 -070032dns_servers:
33 - "{{ management_net_cidr | ipaddr('1') | ipaddr('address') }}"
34
35# VTN MANAGEMENT_HOST network
36use_vtn_net_management_host: False
37vtn_net_management_host_cidr: "{{ management_net_cidr }}"
38vtn_net_management_host_hwaddr_prefix: "06A6"
39
40# VTN PUBLIC network, used with fabric
41use_vtn_net_fabric: False
Zack Williams6dc2d452017-12-20 17:50:49 -070042vtn_net_public_cidr: "10.6.1.0/24"
43vtn_net_public_hwaddr_prefix: "0242"
44
45# VSG and public address pools
46use_addresspool_vsg: False
47addresspool_vsg_cidr: "10.7.1.0/24"
48addresspool_vsg_hwaddr_prefix: "0ACA"
49
50use_addresspool_public: False
51addresspool_public_cidr: "10.8.1.0/24"
52addresspool_public_hwaddr_prefix: "0EFE"
53