WIP3
This commit is contained in:
29
roles/linux-system-roles.network/examples/macvlan.yml
Normal file
29
roles/linux-system-roles.network/examples/macvlan.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
---
|
||||
- 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: False
|
||||
ip:
|
||||
address:
|
||||
- 192.168.1.1/24
|
||||
|
||||
roles:
|
||||
- linux-system-roles.network
|
||||
Reference in New Issue
Block a user