mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
The new testing format is more concise and easier to debug when test failure happens. Signed-off-by: Wen Liang <liangwen12year@gmail.com>
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Include network role
|
|
include_role:
|
|
name: linux-system-roles.network
|
|
vars:
|
|
network_connections:
|
|
# Create a bond controller
|
|
- name: "{{ controller_profile }}"
|
|
state: up
|
|
type: bond
|
|
interface_name: "{{ controller_device }}"
|
|
bond:
|
|
mode: 802.3ad
|
|
ad_actor_sys_prio: 65535
|
|
ad_actor_system: 00:00:5e:00:53:5d
|
|
ad_select: stable
|
|
ad_user_port_key: 1023
|
|
all_ports_active: true
|
|
downdelay: 0
|
|
lacp_rate: slow
|
|
lp_interval: 128
|
|
miimon: 110
|
|
min_links: 0
|
|
num_grat_arp: 64
|
|
primary_reselect: better
|
|
resend_igmp: 225
|
|
updelay: 0
|
|
use_carrier: true
|
|
xmit_hash_policy: encap2+3
|
|
ip:
|
|
route_metric4: 65535
|
|
|
|
# add an ethernet to the bond
|
|
- name: "{{ port1_profile }}"
|
|
state: up
|
|
type: ethernet
|
|
interface_name: "{{ dhcp_interface1 }}"
|
|
controller: "{{ controller_profile }}"
|
|
# add a second ethernet to the bond
|
|
- name: "{{ port2_profile }}"
|
|
state: up
|
|
type: ethernet
|
|
interface_name: "{{ dhcp_interface2 }}"
|
|
controller: "{{ controller_profile }}"
|
|
- name: Show result
|
|
debug:
|
|
var: __network_connections_result
|
|
...
|