blob: 8dcbf0e12b719399df61218177dd55b0e3ecefb9 [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 Williams6dc2d452017-12-20 17:50:49 -070021# headnode internet-facing interface to NAT mgmtbridge traffic out of
22headnode_nat_interface: eth0
23
24# network interfaces on physical nodes
25management_net_interfaces: []
26fabric_net_interfaces: []
27
28# management network configuration
29management_net_cidr: "192.168.200.0/24"
30dns_servers:
31 - "{{ management_net_cidr | ipaddr('1') | ipaddr('address') }}"
32
33# VTN MANAGEMENT_HOST network
34use_vtn_net_management_host: False
35vtn_net_management_host_cidr: "{{ management_net_cidr }}"
36vtn_net_management_host_hwaddr_prefix: "06A6"
37
38# VTN PUBLIC network, used with fabric
39use_vtn_net_fabric: False
40vtn_data_plane_interface: "vethfabric1"
41vtn_net_public_cidr: "10.6.1.0/24"
42vtn_net_public_hwaddr_prefix: "0242"
43
44# VSG and public address pools
45use_addresspool_vsg: False
46addresspool_vsg_cidr: "10.7.1.0/24"
47addresspool_vsg_hwaddr_prefix: "0ACA"
48
49use_addresspool_public: False
50addresspool_public_cidr: "10.8.1.0/24"
51addresspool_public_hwaddr_prefix: "0EFE"
52