From 4438dd401f38a0ff749acf3331042faf0d115902 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 5 Aug 2020 10:35:41 -0400 Subject: [PATCH] Add description to example in network add A required field so ensure this is in the example. --- client-cli/pvc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index 8f4feba1..b208d712 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -1164,11 +1164,11 @@ def net_add(vni, description, nettype, domain, ip_network, ip_gateway, ip6_netwo Examples: - pvc network add 101 --type bridged + pvc network add 101 --description my-bridged-net --type bridged > Creates vLAN 101 and a simple bridge on the VNI dev interface. - pvc network add 1001 --type managed --domain test.local --ipnet 10.1.1.0/24 --gateway 10.1.1.1 + pvc network add 1001 --description my-managed-net --type managed --domain test.local --ipnet 10.1.1.0/24 --gateway 10.1.1.1 > Creates a VXLAN with ID 1001 on the VNI dev interface, with IPv4 managed networking.