unifios-utilities/cni-plugins/20-dnsipv6.conflist

29 lines
583 B
Plaintext
Raw Normal View History

2020-06-05 03:50:14 +00:00
{
"cniVersion": "0.4.0",
"name": "dns",
"plugins": [
{
"type": "macvlan",
"mode": "bridge",
2020-06-17 20:15:27 +00:00
"master": "br5",
2020-12-27 00:06:32 +00:00
"mac": "PUT YOUR GENERATED OWN MAC HERE",
2020-06-05 03:50:14 +00:00
"ipam": {
"type": "static",
"addresses": [
{
"address": "10.0.5.3/24",
"gateway": "10.0.5.1"
},
{
"address": "fd62:89a2:fda9:e23::2/64",
"gateway": "fd62:89a2:fda9:e23::1"
}
2020-06-05 03:50:14 +00:00
],
"routes": [
{"dst": "0.0.0.0/0"},{"dst": "::/0"}
2020-06-05 03:50:14 +00:00
]
}
}
]
}