Skip to content

Commit ad98c4a

Browse files
Merge pull request #40269 from mikemckiernan/fix-ipvlan-again
BZ#2027477: ipvlan does not support dhcp
2 parents 43dd153 + cc0dc42 commit ad98c4a

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

modules/nw-multus-ipvlan-object.adoc

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,13 @@ The following example configures an additional network named `ipvlan-net`:
6262
"master": "eth1",
6363
"mode": "l3",
6464
"ipam": {
65-
"type": "dhcp"
66-
}
65+
"type": "static",
66+
"addresses": [
67+
{
68+
"address": "192.168.10.10"
69+
}
70+
]
71+
}
6772
}
6873
----
6974

0 commit comments

Comments
 (0)