mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
docs: Add MAC VTAP example
Signed-off-by: maritu <marehone12@gmail.com>
This commit is contained in:
parent
ab77dd159e
commit
4bc36b3484
1 changed files with 29 additions and 0 deletions
29
examples/macvtap.yml
Normal file
29
examples/macvtap.yml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue