From 3d7ef5d7dc2169bd0cc9981a762d0c2028ca2dbf Mon Sep 17 00:00:00 2001 From: slayer321 Date: Tue, 31 May 2022 21:20:18 +0530 Subject: [PATCH] docs: update the cli doc with cidr range source/destination ip filter Signed-off-by: slayer321 --- cmd/observe/flows.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/observe/flows.go b/cmd/observe/flows.go index cf92d2fab..87c6cd04e 100644 --- a/cmd/observe/flows.go +++ b/cmd/observe/flows.go @@ -294,13 +294,13 @@ more.`, filterFlags.Var(filterVar( "from-ip", ofilter, - "Show all flows originating at the given IP address.")) + "Show all flows originating at the given IP address. Each of the source IPs can be specified as an exact match (e.g. '1.1.1.1') or as a CIDR range (e.g.'1.1.1.0/24').")) filterFlags.Var(filterVar( "ip", ofilter, - "Show all flows related to the given IP address.")) + "Show all flows related to the given IP address. Each of the IPs can be specified as an exact match (e.g. '1.1.1.1') or as a CIDR range (e.g.'1.1.1.0/24').")) filterFlags.Var(filterVar( "to-ip", ofilter, - "Show all flows terminating at the given IP address.")) + "Show all flows terminating at the given IP address. Each of the destination IPs can be specified as an exact match (e.g. '1.1.1.1') or as a CIDR range (e.g.'1.1.1.0/24').")) filterFlags.VarP(filterVarP( "ipv4", "4", ofilter, nil,