unifios-utilities/cni-plugins/20-dns.conflist
2020-12-26 16:06:19 -08:00

25 lines
438 B
Plaintext

{
"cniVersion": "0.4.0",
"name": "dns",
"plugins": [
{
"type": "macvlan",
"mode": "bridge",
"master": "br5",
"mac": "PUT YOUR GENERATED OWN MAC HERE",
"ipam": {
"type": "static",
"addresses": [
{
"address": "10.0.5.3/24",
"gateway": "10.0.5.1"
}
],
"routes": [
{"dst": "0.0.0.0/0"}
]
}
}
]
}