Clarifies ip ranges in network settings
[apex.git] / config / network / network_settings.yaml
1 # This configuration file defines Network Environment for a
2 # Baremetal Deployment of OPNFV. It contains default values
3 # for 4 following networks:
4 #
5 # - admin
6 # - private*
7 # - public
8 # - storage*
9 #
10 # *) optional networks
11 #
12 # Any values missing from this configuration file will be
13 # auto-detected by deployment script from the existing network
14 # configuration of the jumphost.
15 #
16 # Optional networks will be consolidated with the admin network
17 # if not explicitely configured.
18 #
19 # See short description of the networks in the comments below.
20 #
21
22 # DNS Servers for all nodes, comma delimited list
23 dns_servers: ["8.8.8.8", "8.8.4.4"]
24
25 # Domain name to use for undercloud/overcloud nodes
26 domain_name: 'opnfvapex.com'
27
28 # "admin" is the short name for Control Plane Network.
29 # During OPNFV deployment it is used for node provisioning so
30 # PXE boot should be enabled for the related interfaces on all
31 # the nodes in the OPNFV cluster. After the deployment this
32 # network is used as the OpenStack management network which
33 # carries e.g. communication between its internal components.
34 #
35 admin_network:
36   enabled: true
37   network_type: bridged
38   bridged_interface: ''
39   bond_interfaces: ''
40   compute_interface: nic1
41   controller_interface: nic1
42   usable_ip_range: 192.0.2.11,192.0.2.99
43   gateway: 192.0.2.1
44   provisioner_ip: 192.0.2.1
45   cidr: 192.0.2.0/24
46   dhcp_range: 192.0.2.2,192.0.2.10
47   introspection_range: 192.0.2.100,192.0.2.120
48
49 # "private" is an optional network used as underlying physical
50 # network for virtual provider and tenant networks created by
51 # users. Traffic between virtual machines is carried by this
52 # network.
53 #
54 private_network:
55   enabled: true
56   vlan: native
57   cidr: 11.0.0.0/24
58   compute_interface: nic2
59   controller_interface: nic2
60
61 # "public" network is used for external connectivity.
62 # The external network provides Internet access for virtual
63 # machines. If floating IP range is defined for this network,
64 # floating IP addresses can be used for accessing virtual
65 # machines from outside of OPNFV cluster. Also external REST
66 # API calls use this network.
67 #
68 public_network:
69   enabled: true
70   network_type: ''
71   bridged_interface: ''
72   compute_interface: nic3
73   controller_interface: nic3
74   vlan: native
75   cidr: 192.168.37.0/24
76   gateway: 192.168.37.1
77   floating_ip_range: 192.168.37.200,192.168.37.220
78   usable_ip_range: 192.168.37.10,192.168.37.199
79   provisioner_ip: 192.168.37.1
80
81 # "storage" is an optional network used by storage backends.
82 # You can configure this network in order to reduce load on
83 # Control Plane Network.
84 #
85 storage_network:
86   enabled: true
87   vlan: native
88   cidr: 12.0.0.0/24
89   compute_interface: nic4
90   controller_interface: nic4
91
92 #admin_network:
93 #  enabled: true
94 #  network_type: bridged                             #Indicates if this network will be bridged to an interface, or to a bond
95 #  bridged_interface: ''                             #Interface to bridge to for installer VM on the jumphost
96 #  bond_interfaces: ''                               #Interfaces to create bond with for installer VM
97 #  compute_interface: nic4                           #Interface used for this network on the compute node.  Can either be logical
98                                                      #nic name like "nic1" or real name like "eth1"
99 #  controller_interface: nic4                        #Interface used for this network on the controller node.  Can either be logical
100                                                      #nic name like "nic1" or real name like "eth1"
101 #  vlan: native                                      #VLAN tag to use, native means none
102 #  usable_ip_range: 192.0.2.11,192.0.2.99            #Usable ip range for the overcloud node IPs (including VIPs) and last IP will be
103                                                      #used for host bridge (i.e. br-admin), if empty entire range is usable.
104                                                      #Cannot overlap with dhcp_range or introspection_range.
105 #  gateway: 192.0.2.1                                #Gateway (only needed when public_network is disabled), if empty it is auto-detected
106 #  provisioner_ip: 192.0.2.1                         #installer VM IP, if empty it is the next available IP in the admin subnet
107 #  cidr: 192.0.2.0/24                                #subnet in CIDR format 192.168.1.0/24, if empty it will be auto-detected
108 #  dhcp_range: 192.0.2.2,192.0.2.10                  #dhcp range for the admin network for PXE booting during deployment, if empty it will
109                                                      #be automatically provisioned.  This cannot overlap with introspection_range or usable_ip_range.
110 #  introspection_range: 192.0.2.100,192.0.2.120      #Range used for introspection phase (examining nodes).  This cannot overlap with dhcp_range
111                                                      #or usable_ip_range.
112 #private_network:
113 #  enabled: false                                    #If disabled, internal api traffic will collapse to admin_network
114 #public_network:
115 #  enabled: true                                     #If disabled, public_network traffic will collapse to admin network
116 #  network_type: ''
117 #  bridged_interface: ''
118 #  cidr: 192.168.37.0/24
119 #  gateway: 192.168.37.1                             #Public network gateway to reach the internet.  Note this value may be the same as
120                                                      #provisioner_ip for virtual deployments, but should be the real gateway in baremetal deployments.
121 #  floating_ip_range: 192.168.37.200,192.168.37.220  #Range to allocate to floating IPs for the public network with Neutron (External IPs to be NAT'ed
122                                                      #to Tenant Instance IP)
123 #  usable_ip_range: 192.168.37.10,192.168.37.199     #Usable ip range for the overcloud node IPs (including VIPs) and last IP will be used for host
124                                                      #bridge (i.e. br-public), if empty entire range is usable.  Cannot overlap with dhcp_range
125                                                      #or introspection_range.
126 #  provisioner_ip: 192.168.37.1                      #installer VM IP for public network, if emptry it will be the next available IP in public subnet.
127 #storage_network:
128 #  enabled: false                                    #If disabled, storage_network traffic will collapse to admin network