From 99f72ac7b75cccfeacb976e3703063205259ed4c Mon Sep 17 00:00:00 2001 From: geek Date: Wed, 17 May 2017 15:00:48 +0900 Subject: [PATCH 1/4] network health config added --- .../network_proxy/health_ftp/1352231 | 23 +++++++++++++++++ .../network_proxy/health_ftps/135223179 | 23 +++++++++++++++++ .../network_proxy/health_http/104116116112 | 23 +++++++++++++++++ .../health_https/104116116112115 | 23 +++++++++++++++++ .../network_proxy/health_imap/10510997112 | 23 +++++++++++++++++ .../network_proxy/health_ldap/10810097112 | 24 ++++++++++++++++++ .../health_mongodb/10911111010311110098 | 23 +++++++++++++++++ .../health_mssql/109115115113108 | 24 ++++++++++++++++++ .../health_mysql/109121115113108 | 23 +++++++++++++++++ .../health_netbios/11010111698105111115 | 25 +++++++++++++++++++ .../health_oracle/1111149799108101 | 25 +++++++++++++++++++ .../health_pgsql/112103115113108 | 23 +++++++++++++++++ .../network_proxy/health_pop3/11211111251 | 23 +++++++++++++++++ .../network_proxy/health_rmi/114109105 | 25 +++++++++++++++++++ .../network_proxy/health_ssh/115115104 | 23 +++++++++++++++++ .../health_telnet/116101108110101116 | 23 +++++++++++++++++ .../network_proxy/health_wmi/119109105 | 23 +++++++++++++++++ 17 files changed, 399 insertions(+) create mode 100644 test_agent/config/container/network_proxy/health_ftp/1352231 create mode 100644 test_agent/config/container/network_proxy/health_ftps/135223179 create mode 100644 test_agent/config/container/network_proxy/health_http/104116116112 create mode 100644 test_agent/config/container/network_proxy/health_https/104116116112115 create mode 100644 test_agent/config/container/network_proxy/health_imap/10510997112 create mode 100644 test_agent/config/container/network_proxy/health_ldap/10810097112 create mode 100644 test_agent/config/container/network_proxy/health_mongodb/10911111010311110098 create mode 100644 test_agent/config/container/network_proxy/health_mssql/109115115113108 create mode 100644 test_agent/config/container/network_proxy/health_mysql/109121115113108 create mode 100644 test_agent/config/container/network_proxy/health_netbios/11010111698105111115 create mode 100644 test_agent/config/container/network_proxy/health_oracle/1111149799108101 create mode 100644 test_agent/config/container/network_proxy/health_pgsql/112103115113108 create mode 100644 test_agent/config/container/network_proxy/health_pop3/11211111251 create mode 100644 test_agent/config/container/network_proxy/health_rmi/114109105 create mode 100644 test_agent/config/container/network_proxy/health_ssh/115115104 create mode 100644 test_agent/config/container/network_proxy/health_telnet/116101108110101116 create mode 100644 test_agent/config/container/network_proxy/health_wmi/119109105 diff --git a/test_agent/config/container/network_proxy/health_ftp/1352231 b/test_agent/config/container/network_proxy/health_ftp/1352231 new file mode 100644 index 0000000..f5855c1 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_ftp/1352231 @@ -0,0 +1,23 @@ +{ + "id" : "1352231", + "target" : { + "connection" : { + "ip" : "192.168.1.103", + "port" : "21", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_FTP", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_ftps/135223179 b/test_agent/config/container/network_proxy/health_ftps/135223179 new file mode 100644 index 0000000..bf68a0d --- /dev/null +++ b/test_agent/config/container/network_proxy/health_ftps/135223179 @@ -0,0 +1,23 @@ +{ + "id" : "135223179", + "target" : { + "connection" : { + "ip" : "192.168.1.103", + "port" : "2121", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_FTPS", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_http/104116116112 b/test_agent/config/container/network_proxy/health_http/104116116112 new file mode 100644 index 0000000..701ddbe --- /dev/null +++ b/test_agent/config/container/network_proxy/health_http/104116116112 @@ -0,0 +1,23 @@ +{ + "id" : "104116116112", + "target" : { + "connection" : { + "ip" : "192.168.1.103", + "port" : "80", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_HTTP", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_https/104116116112115 b/test_agent/config/container/network_proxy/health_https/104116116112115 new file mode 100644 index 0000000..1ee2942 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_https/104116116112115 @@ -0,0 +1,23 @@ +{ + "id" : "104116116112115", + "target" : { + "connection" : { + "ip" : "192.168.1.103", + "port" : "443", + "ssl" : true, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_HTTPS", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_imap/10510997112 b/test_agent/config/container/network_proxy/health_imap/10510997112 new file mode 100644 index 0000000..6fafa28 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_imap/10510997112 @@ -0,0 +1,23 @@ +{ + "id" : "10510997112", + "target" : { + "connection" : { + "ip" : "192.168.1.215", + "port" : "993", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_IMAP", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_ldap/10810097112 b/test_agent/config/container/network_proxy/health_ldap/10810097112 new file mode 100644 index 0000000..6643bd3 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_ldap/10810097112 @@ -0,0 +1,24 @@ +{ + "id" : "10810097112", + "target" : { + "connection" : { + "ip" : "192.168.1.215", + "port" : "993", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_IMAP", + "container":"network_proxy" + }, + "items" : [ + ] +} + diff --git a/test_agent/config/container/network_proxy/health_mongodb/10911111010311110098 b/test_agent/config/container/network_proxy/health_mongodb/10911111010311110098 new file mode 100644 index 0000000..54078bb --- /dev/null +++ b/test_agent/config/container/network_proxy/health_mongodb/10911111010311110098 @@ -0,0 +1,23 @@ +{ + "id" : "10911111010311110098", + "target" : { + "connection" : { + "ip" : "192.168.1.104", + "port" : "27017", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_MONGODB", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_mssql/109115115113108 b/test_agent/config/container/network_proxy/health_mssql/109115115113108 new file mode 100644 index 0000000..e5a56f0 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_mssql/109115115113108 @@ -0,0 +1,24 @@ +{ + "id" : "109115115113108", + "target" : { + "connection" : { + "ip" : "192.168.1.106", + "port" : "1433", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_MSSQL", + "container":"network_proxy" + }, + "items" : [ + ] +} + diff --git a/test_agent/config/container/network_proxy/health_mysql/109121115113108 b/test_agent/config/container/network_proxy/health_mysql/109121115113108 new file mode 100644 index 0000000..1b46c67 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_mysql/109121115113108 @@ -0,0 +1,23 @@ +{ + "id" : "109121115113108", + "target" : { + "connection" : { + "ip" : "192.168.1.103", + "port" : "3306", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_MYSQL", + "container":"network_proxy" + }, + "items" : [ + ] +} diff --git a/test_agent/config/container/network_proxy/health_netbios/11010111698105111115 b/test_agent/config/container/network_proxy/health_netbios/11010111698105111115 new file mode 100644 index 0000000..af82a20 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_netbios/11010111698105111115 @@ -0,0 +1,25 @@ +{ + "id" : "11010111698105111115", + "target" : { + "connection" : { + "ip" : "192.168.1.106", + "port" : "139", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_NETBIOS", + "container":"network_proxy" + }, + "items" : [ + ] +} + + diff --git a/test_agent/config/container/network_proxy/health_oracle/1111149799108101 b/test_agent/config/container/network_proxy/health_oracle/1111149799108101 new file mode 100644 index 0000000..e6033d9 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_oracle/1111149799108101 @@ -0,0 +1,25 @@ +{ + "id" : "1111149799108101", + "target" : { + "connection" : { + "ip" : "192.168.1.30", + "port" : "1521", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_ORACLE", + "container":"network_proxy" + }, + "items" : [ + ] +} + + diff --git a/test_agent/config/container/network_proxy/health_pgsql/112103115113108 b/test_agent/config/container/network_proxy/health_pgsql/112103115113108 new file mode 100644 index 0000000..dd73905 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_pgsql/112103115113108 @@ -0,0 +1,23 @@ +{ + "id" : "112103115113108", + "target" : { + "connection" : { + "ip" : "192.168.1.107", + "port" : "5432", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_PGSQL", + "container":"network_proxy" + }, + "items" : [ + ] +} diff --git a/test_agent/config/container/network_proxy/health_pop3/11211111251 b/test_agent/config/container/network_proxy/health_pop3/11211111251 new file mode 100644 index 0000000..ca4f4eb --- /dev/null +++ b/test_agent/config/container/network_proxy/health_pop3/11211111251 @@ -0,0 +1,23 @@ +{ + "id" : "11211111251", + "target" : { + "connection" : { + "ip" : "192.168.1.215", + "port" : "110", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_POP3", + "container":"network_proxy" + }, + "items" : [ + ] +} diff --git a/test_agent/config/container/network_proxy/health_rmi/114109105 b/test_agent/config/container/network_proxy/health_rmi/114109105 new file mode 100644 index 0000000..1145c25 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_rmi/114109105 @@ -0,0 +1,25 @@ +{ + "id" : "114109105", + "target" : { + "connection" : { + "ip" : "192.168.1.103", + "port" : "9840", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_RMI", + "container":"network_proxy" + }, + "items" : [ + ] +} + + diff --git a/test_agent/config/container/network_proxy/health_ssh/115115104 b/test_agent/config/container/network_proxy/health_ssh/115115104 new file mode 100644 index 0000000..238c750 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_ssh/115115104 @@ -0,0 +1,23 @@ +{ + "id" : "115115104", + "target" : { + "connection" : { + "ip" : "192.168.1.215", + "port" : "22", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_SSH", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_telnet/116101108110101116 b/test_agent/config/container/network_proxy/health_telnet/116101108110101116 new file mode 100644 index 0000000..4913bd9 --- /dev/null +++ b/test_agent/config/container/network_proxy/health_telnet/116101108110101116 @@ -0,0 +1,23 @@ +{ + "id" : "116101108110101116", + "target" : { + "connection" : { + "ip" : "192.168.1.215", + "port" : "23", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_TELNET", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file diff --git a/test_agent/config/container/network_proxy/health_wmi/119109105 b/test_agent/config/container/network_proxy/health_wmi/119109105 new file mode 100644 index 0000000..6f3480b --- /dev/null +++ b/test_agent/config/container/network_proxy/health_wmi/119109105 @@ -0,0 +1,23 @@ +{ + "id" : "119109105", + "target" : { + "connection" : { + "ip" : "192.168.1.1", + "port" : "135", + "ssl" : false, + "portType" : "tcp" + }, + "auth" : { + + } + }, + "schedule" : { + "interval" : "7" + }, + "crawler" : { + "name":"HEALTH_WMI", + "container":"network_proxy" + }, + "items" : [ + ] +} \ No newline at end of file From f9e83a910ab67f0ae397b231d5fd52d5b793f8de Mon Sep 17 00:00:00 2001 From: geek Date: Wed, 17 May 2017 16:41:36 +0900 Subject: [PATCH 2/4] imap tls true --- .../config/container/network_proxy/health_imap/10510997112 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_agent/config/container/network_proxy/health_imap/10510997112 b/test_agent/config/container/network_proxy/health_imap/10510997112 index 6fafa28..146bdd0 100644 --- a/test_agent/config/container/network_proxy/health_imap/10510997112 +++ b/test_agent/config/container/network_proxy/health_imap/10510997112 @@ -4,7 +4,7 @@ "connection" : { "ip" : "192.168.1.215", "port" : "993", - "ssl" : false, + "ssl" : true, "portType" : "tcp" }, "auth" : { From 90e0ce2e3070fe638fff93b3478d46e0ee01be2f Mon Sep 17 00:00:00 2001 From: geek Date: Wed, 17 May 2017 16:46:26 +0900 Subject: [PATCH 3/4] ldap tls true --- .../config/container/network_proxy/health_ldap/10810097112 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_agent/config/container/network_proxy/health_ldap/10810097112 b/test_agent/config/container/network_proxy/health_ldap/10810097112 index 6643bd3..6ebcbd0 100644 --- a/test_agent/config/container/network_proxy/health_ldap/10810097112 +++ b/test_agent/config/container/network_proxy/health_ldap/10810097112 @@ -4,7 +4,7 @@ "connection" : { "ip" : "192.168.1.215", "port" : "993", - "ssl" : false, + "ssl" : true, "portType" : "tcp" }, "auth" : { From 149848e5525e0c0122af14752a155c2e1cc1f136 Mon Sep 17 00:00:00 2001 From: geek Date: Wed, 17 May 2017 16:49:45 +0900 Subject: [PATCH 4/4] ldap tls true --- .../config/container/network_proxy/health_ldap/10810097112 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_agent/config/container/network_proxy/health_ldap/10810097112 b/test_agent/config/container/network_proxy/health_ldap/10810097112 index 6ebcbd0..ea502ef 100644 --- a/test_agent/config/container/network_proxy/health_ldap/10810097112 +++ b/test_agent/config/container/network_proxy/health_ldap/10810097112 @@ -15,7 +15,7 @@ "interval" : "7" }, "crawler" : { - "name":"HEALTH_IMAP", + "name":"HEALTH_LDAP", "container":"network_proxy" }, "items" : [