39 lines
864 B
YAML
39 lines
864 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- hosts: network-test
|
|
vars:
|
|
network_connections:
|
|
|
|
# Create a bond profile, which is the parent of VLAN.
|
|
- name: prod2
|
|
state: up
|
|
type: bond
|
|
interface_name: bond2
|
|
ip:
|
|
dhcp4: no
|
|
auto6: no
|
|
bond:
|
|
mode: active-backup
|
|
miimon: 110
|
|
|
|
# set an ethernet as port to the bond
|
|
- name: prod2-port1
|
|
state: up
|
|
type: ethernet
|
|
interface_name: "{{ network_interface_name2 }}"
|
|
controller: prod2
|
|
|
|
# on top of it, create a VLAN with ID 100 and static
|
|
# addressing
|
|
- name: prod2.100
|
|
state: up
|
|
type: vlan
|
|
parent: prod2
|
|
vlan_id: 100
|
|
ip:
|
|
address:
|
|
- "192.0.2.{{ network_iphost }}/24"
|
|
|
|
roles:
|
|
- linux-system-roles.network
|