blob: 120e007d066209886699b3301d3d7c890a7fcabd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
network:
nameservers: "{{ vm_host.network.dns }}"
domain: "{{ host_domain }}"
interfaces:
- name: br-public
address: "{{ vm_host.network.bridges.public.prefix | ipaddr(vm_host.network.bridges.public.offsets[inventory_hostname]) | ipaddr('address/prefix') }}"
gateway: "{{ vm_host.network.bridges.public.gateway }}"
# address6: "{{ vm_host.network.bridges.public.prefix6 | ipaddr(vm_host.network.bridges.public.offsets6[inventory_hostname]) | ipaddr('address/prefix') }}"
address6: "{{ vm_host.network.bridges.public.prefix6 | ipaddr(41) | ipaddr('address/prefix') }}"
gateway6: "{{ vm_host.network.bridges.public.gateway6 }}"
vlans:
eth0:
- 502
|