cni: add sample bridge

This commit is contained in:
Nico Schottelius 2022-10-18 16:58:02 +02:00
parent f7084c6c6e
commit 1417d39b5f
1 changed files with 22 additions and 0 deletions

22
cni/bridge-v6.conf Normal file
View File

@ -0,0 +1,22 @@
{
"cniVersion": "0.3.1",
"name": "mynet",
"type": "bridge",
"bridge": "mynet0",
"isDefaultGateway": true,
"forceAddress": false,
"ipMasq": true,
"hairpinMode": true,
"ipam": {
"type": "host-local",
"ranges": [
[
{
"subnet": "2a0a:e5c0:10:22::/64",
"rangeStart": "2a0a:e5c0:10:22::0010",
"rangeEnd": "2a0a:e5c0:10:22::00ff"
}
]
]
}
}