blob: 47f723d87fa174c73d4de3b8d4f7c7c3edc460f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[connection]
id=vmbr0
type=bridge
interface-name=vmbr0
autoconnect=true
[bridge]
stp=false
[ipv4]
method=manual
addresses={{ network_ipv4_address }}/{{ network_ipv4_prefix | default(24) }}
gateway={{ network_ipv4_gateway }}
{% if network_ipv4_dns is defined %}
dns={{ network_ipv4_dns }}
{% endif %}
[ipv6]
addr-gen-mode=default
method=auto
{% if network_ipv6_gateway is defined %}
routes=::/0,{{ network_ipv6_gateway }},100
{% endif %}
|