network/examples/macvtap.yml
Rich Megginson a8d381751a fix ansible-lint issues in example code
Signed-off-by: Rich Megginson <rmeggins@redhat.com>
2024-06-04 18:09:20 -06:00

29 lines
606 B
YAML

# SPDX-License-Identifier: BSD-3-Clause
---
- name: Manage network MAC VTAP
hosts: network-test
vars:
network_connections:
- name: eth0
type: ethernet
state: up
interface_name: eth0
ip:
address:
- 192.168.0.1/24
# Create a virtual ethernet card bound to eth0
- name: veth0
type: macvlan
state: up
parent: eth0
macvlan:
mode: bridge
promiscuous: true
tap: true
ip:
address:
- 192.168.1.1/24
roles:
- linux-system-roles.network