From d3e32435cb14ad4d95054a20a994a7ec0b7b506e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Carde=C3=B1osa?= Date: Tue, 6 Sep 2022 11:07:25 +0200 Subject: [PATCH] Wrong address notation (#1) *Missing network prefix* Error adding container to network "work-network": the 'address' field is expected to be in CIDR notation, got: '192.168.10.10' --- modules/nw-multus-ipam-object.adoc | 2 +- modules/nw-multus-ipvlan-object.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nw-multus-ipam-object.adoc b/modules/nw-multus-ipam-object.adoc index 4a815e0098c6..192710e4ca94 100644 --- a/modules/nw-multus-ipam-object.adoc +++ b/modules/nw-multus-ipam-object.adoc @@ -119,7 +119,7 @@ such as `example-host`, during a DNS lookup query. "type": "static", "addresses": [ { - "address": "191.168.1.7" + "address": "191.168.1.7/24" } ] } diff --git a/modules/nw-multus-ipvlan-object.adoc b/modules/nw-multus-ipvlan-object.adoc index d494ef3e146d..84a5fe088c04 100644 --- a/modules/nw-multus-ipvlan-object.adoc +++ b/modules/nw-multus-ipvlan-object.adoc @@ -65,7 +65,7 @@ The following example configures an additional network named `ipvlan-net`: "type": "static", "addresses": [ { - "address": "192.168.10.10" + "address": "192.168.10.10/24" } ] }