diff --git a/warden3/contrib/connectors/hp-kippo/README b/warden3/contrib/connectors/hp-kippo/README
index ae372854ca137146c58aefd79f379af4c28e194b..8096b5a3d1cfd7ef2880fa1cdb7ab9bcfb88c5d6 100644
--- a/warden3/contrib/connectors/hp-kippo/README
+++ b/warden3/contrib/connectors/hp-kippo/README
@@ -40,6 +40,13 @@ D. Configuration
     warden - path to warden-client config, e.g. 'warden/warden_client.cfg'
     name - sensor's source id used as a source of events, e.g. 'cz.cesnet.server.kippo'
 
+    anonymised - no | yes | omit
+               - no (default value)
+               - yes = anonymize to 'target_net' (see below)
+               - omit = completely omit target field
+
+    target_net - anonymized network used as target if 'anonymized' option is 'yes' 
+
     dbhost - hostname/IP of MySQL DB server 
     dbuser - username 
     dbpass - password
@@ -49,7 +56,7 @@ D. Configuration
     
    cron
     SCRIPT_PATH=/opt/warden_client/
-    */5  *   * * *  root cd $SCRIPT_PATH; warden3-kippo-sender.py >> kippo-sender.log
+    */5  *   * * *  root cd $SCRIPT_PATH; warden3-kippo-sender.py > /dev/null 2>&1
 
     Note: Repeat interval must be the same as value of 'awin'.
 
diff --git a/warden3/contrib/connectors/hp-kippo/warden3-kippo-sender.py b/warden3/contrib/connectors/hp-kippo/warden3-kippo-sender.py
index 76775f434fb5e9f87394019c97468804eaaf4b88..014d2561cb192d402f5280e06f851fe2ad70a81d 100644
--- a/warden3/contrib/connectors/hp-kippo/warden3-kippo-sender.py
+++ b/warden3/contrib/connectors/hp-kippo/warden3-kippo-sender.py
@@ -19,7 +19,7 @@ DEFAULT_ACONFIG = 'warden_client-kippo.cfg'
 DEFAULT_WCONFIG = 'warden_client.cfg'
 DEFAULT_NAME = 'org.example.warden.test'
 DEFAULT_AWIN = 5
-DEFAULT_ANONYMISED = False
+DEFAULT_ANONYMISED = 'no'
 DEFAULT_TARGET_NET = '0.0.0.0/0'
 
 
@@ -54,12 +54,13 @@ def gen_event_idea(client_name, detect_time, win_start_time, win_end_time, conn_
   af = "IP4" if not ':' in src_ip else "IP6"
   event['Source'][0][af] = [src_ip]
 
-  if not anonymised:
-    event['Target'][0][af] = [dst_ip]
-  else:
-    event['Target'][0]['Anonymised'] = True
-    event['Target'][0][af] = [target_net]
-
+  if anonymised != 'omit':
+    if anonymised == 'yes':
+      event['Target'][0]['Anonymised'] = True
+      event['Target'][0][af] = [target_net]
+    else:
+      event['Target'][0][af] = [dst_ip]
+  
   return event
 
 def main():
@@ -74,7 +75,7 @@ def main():
   aanonymised = aconfig.get('anonymised', DEFAULT_ANONYMISED)
   atargetnet  = aconfig.get('target_net', DEFAULT_TARGET_NET)
 
-  aanonymised = aanonymised if atargetnet != DEFAULT_TARGET_NET else False
+  aanonymised = aanonymised if (atargetnet != DEFAULT_TARGET_NET) or (aanonymised == 'omit') else DEFAULT_ANONYMISED
 
   wclient = Client(**wconfig)   
 
diff --git a/warden3/contrib/connectors/hp-kippo/warden_client-kippo.cfg b/warden3/contrib/connectors/hp-kippo/warden_client-kippo.cfg
index 1eb4cbd5aab3e47f8c3f02d7f76a2cc6e87c97ae..9a274a770abefb7ca774c0c03ed05ecc6b219c46 100644
--- a/warden3/contrib/connectors/hp-kippo/warden_client-kippo.cfg
+++ b/warden3/contrib/connectors/hp-kippo/warden_client-kippo.cfg
@@ -2,7 +2,7 @@
     "warden": "warden_client.cfg",
     "name": "cz.cesnet.server.kippo",
 
-    "anonymised": false,
+    "anonymised": "no",
     "target_net": "195.113.0.0/16",
 
     "dbhost": "localhost",