File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 231
231
ansible.builtin.command : virsh pool-autostart default
232
232
when : ocp4_aio_deploy_type == "ipi"
233
233
234
+ - name : Set NetworkManager ipv6 default addr gen mode
235
+ blockinfile :
236
+ path : /etc/NetworkManager/NetworkManager.conf
237
+ block : |
238
+ [connection]
239
+ ipv6.addr-gen-mode=eui64
240
+ when : ocp4_aio_deploy_type == "ipi"
241
+
242
+ - name : Restart NetworkManager to apply new default
243
+ ansible.builtin.service :
244
+ name : NetworkManager
245
+ state : restarted
246
+ when : ocp4_aio_deploy_type == "ipi"
247
+
234
248
- name : Configure Provisioning Bridge for IPI
235
249
nmcli :
236
250
type : bridge
237
251
conn_name : provisioning
238
252
ip4 : 172.22.0.1/24
239
253
gw4 : 172.22.0.254
240
- addr_gen_mode6 : eui64
241
254
state : present
242
255
when : ocp4_aio_deploy_type == "ipi"
243
256
257
270
conn_name : baremetal
258
271
ip4 : 192.168.123.100/24
259
272
gw4 : 192.168.123.1
260
- addr_gen_mode6 : eui64
261
273
state : present
262
274
when : ocp4_aio_deploy_type == "ipi"
263
275
You can’t perform that action at this time.
0 commit comments