From d6240ff5029761da368a8d34822c2a546e4f248d Mon Sep 17 00:00:00 2001
From: Itay Mizeretz <itay.mizeretz@guardicore.com>
Date: Mon, 26 Feb 2018 17:32:02 +0200
Subject: [PATCH] move inaccessible_subnet_groups to seperate category

---
 monkey_island/cc/services/config.py | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/monkey_island/cc/services/config.py b/monkey_island/cc/services/config.py
index d940019d7..e20ac4ce2 100644
--- a/monkey_island/cc/services/config.py
+++ b/monkey_island/cc/services/config.py
@@ -211,7 +211,13 @@ SCHEMA = {
                             "description":
                                 "List of IPs/subnets the monkey should scan."
                                 " Examples: \"192.168.0.1\", \"192.168.0.5-192.168.0.20\", \"192.168.0.5/24\""
-                        },
+                        }
+                    }
+                },
+                "network_analysis": {
+                    "title": "Network Analysis",
+                    "type": "object",
+                    "properties": {
                         "inaccessible_subnet_groups": {
                             "title": "Inaccessible IP/subnet groups",
                             "type": "array",
@@ -232,7 +238,8 @@ SCHEMA = {
                             ],
                             "description":
                                 "List of IP/subnet groups. Each group should consist of subnets that aren't supposed"
-                                " to be accessible to one another."
+                                " to be accessible to one another. If the monkey is in one subnet it'll scan the other"
+                                " subnets in the same group."
                         }
                     }
                 }