Execution
Date
08 Dec 2025 13:40:18 +0000
Duration
00:10:06.79
Controller
aio1.openstack.local
User
root
Versions
Ansible
2.18.6
ara
1.7.4 / 1.7.4
Python
3.12.11
Summary
15
Hosts
608
Tasks
2412
Results
18
Plays
158
Files
0
Records
File: /home/zuul/src/opendev.org/openstack/ansible-role-systemd_networkd/defaults/main.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | --- # Copyright 2017, Rackspace US, Inc. # # 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. # Cleanup all known network interfaces. When this option is enabled the role # will search for and remove all network interface files that match the prefix. systemd_interface_cleanup: false # Prefix for all networkd files created by this role. This prefix allows # deployers to set specific file names reducing the chance of a collision # and simplifies the network interface file cleanup operation should it ever # be needed. By default, the prefix is "general" however this can be changed # to meet the needs of the deployer. systemd_networkd_prefix: "general" # Enable systemd-networkd and (re)start the service systemd_run_networkd: false # The `systemd_link_config_overrides` option can be used on the default link. # See the following link for all available options: # https://www.freedesktop.org/software/systemd/man/systemd.link.html # systemd_default_unit: # Match: # Driver=things other thing systemd_link_config_overrides: {} # All items listed in the `systemd_netdevs` array are craeted using the exact # networkd syntax found here: # https://www.freedesktop.org/software/systemd/man/systemd.netdev.html # At an absolute minimum, the items must have "NetDev" and "Name" defined. # Items generated will have an integer assigned to them so that they're loaded # in the order specified. # systemd_netdevs: # - NetDev: # Name: dummy0 # Kind: dummy # - NetDev: # Name: dummy1 # Kind: dummy # filename: "{{ item.1.NetDev.Name }}.netdev" # - NetDev: # Name: bond0 # Kind: bond # Bond: # Mode: 802.3ad # TransmitHashPolicy: layer3+4 # MIIMonitorSec: 1s # LACPTransmitRate: fast # - NetDev: # Name: br-dummy # Kind: bridge systemd_netdevs: [] # The systemd networkd dictionary is a set of networks that will be created. # items generated will have an integer assigned to them so that they're loaded # in the order specified. The dictionary can contain the following options: # `config_overrides` -- (optional) used to inject extra configuration options # into the network file. A full list of all # options can be found here: # https://www.freedesktop.org/software/systemd/man/systemd.network.html # `filename` -- (Optional, Recommended) Defines resulted filename for config # to be placed in. For consistency and more # expected behaviour when list of networks # may change it is recommended to supply # filename for each interface. # `link_config_overrides` -- (Optional) Used to inject extra configuration # options into link file. A full list # of all options can be found here: # https://www.freedesktop.org/software/systemd/man/systemd.link.html # `interface` -- (required) Name of interface to match # `address` -- (option) IP address the interface should be given. To make this # interface use DHCP set this string to "dhcp" # `netmask` -- (optional) Netmask to use for the interface # `gateway` -- (optional) Gateway to use for the interface # `bridge` -- (optional) Bridge name for a mapped interface # `bond` -- (optional) Bond name for a mapped interface # `vlan` -- (optional) VLAN name for a mapped interface # `macvlan` -- (optional) MACVLAN name for a mapped interface # `vxlan` -- (optional) VXLAN name for a mapped interface # `mtu` -- (optional) MTU to use for the interface # `usedns` -- (optional) When set to true the interface will accept DNS when # running in dhcp mode # `static_routes` -- (optional) list of routes to use for the network. This # option requires a gateway and cidr to be set # within the list item. # `routing_rules` -- (optional) list of routing rule policies which will be # applied for the interface. # `ipforward` -- (optional) When set to true forwarding will be enabled for # interface. This setting will enable # net.ipv4.ip_forward, net.ipv4.conf.all.forwarding # and net.ipv4.conf.interface.forwarding # systemd_networks: # - interface: "dummy0" # bridge: "bond0" # mtu: 9000 # - interface: "dummy1" # filename: "{{ item.1.interface }}.network" # bridge: "bond0" # mtu: 9000 # - interface: "bond0" # bridge: "br-dummy" # mtu: 9000 # static_routes: # - gateway: 10.0.0.1 # destination: 0.0.0.0/0 # table: 100 # routing_rules: # - From: 192.168.0.0/24 # Priority: 900 # Table: 100 # - interface: "br-dummy" # bridge: "br-dummy" # address: "10.0.0.100" # netmask: "255.255.255.0" # gateway: "10.0.0.1" # mtu: 9000 # usedns: true # config_overrides: # Network: # ConfigureWithoutCarrier: true # - interface: "bond1" # network_overrides_only: True # config_overrides: # Network: # VLAN: # ? 100 # ? 200 # filename: 10-netplan-bond1 systemd_networks: [] # The systemd resolved service can be setup using th following configuration. # The generator is a Key=Value pair hash and will set whatever directives it's # instructed to. For more information on all of the possible configuration see # https://www.freedesktop.org/software/systemd/man/resolved.conf.html # systemd_resolved: # DNS: "10.127.83.1" # FallbackDNS: "208.67.222.222 8.8.8.8" # Cache: yes systemd_resolved: {} # Enable or Disable the availability of systemd-resolved. This option is a # Boolean variable. systemd_resolved_available: "{{ _systemd_resolved_available | default(true) }}" # Specify the command used to update the initramfs. By default this will run # "/bin/true" which is done because the command required to run should never # be assumed. Distro specific config is available in vars otherwise deployers # can set this as needed. systemd_networkd_update_initramfs: "{{ _systemd_networkd_update_initramfs | default('true') }}" # Provide a list of packages that are to be installed before this role is # executed. # _systemd_networkd_distro_packages: # - systemd-networkd # - systemd-resolved systemd_networkd_distro_packages: "{{ _systemd_networkd_distro_packages | default([]) }}" systemd_networkd_epel_mirror: "{{ centos_epel_mirror | default('http://dl.fedoraproject.org/pub/epel') }}" # The systemd networkd service can be used to set specific link configuration options. # For more information on all of the possible configuration see # https://www.freedesktop.org/software/systemd/man/systemd.link.html systemd_networkd_link: MACAddressPolicy: "persistent" |