summaryrefslogtreecommitdiffstats
path: root/god/census/README.md
diff options
context:
space:
mode:
authoreuer <root@euer.krebsco.de>2012-12-20 03:26:08 +0100
committereuer <root@euer.krebsco.de>2012-12-20 03:26:21 +0100
commit325ab16e706b21abd172d3006729b51d323c93b9 (patch)
tree12777bdad6a0ee4d9b1447baf96a349e0f086280 /god/census/README.md
parent38dbb8ee3867060fddd427d1bb4e57ee0300c8bb (diff)
//{filebitch,census} -> //god
Diffstat (limited to 'god/census/README.md')
-rw-r--r--god/census/README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/god/census/README.md b/god/census/README.md
new file mode 100644
index 00000000..2842368d
--- /dev/null
+++ b/god/census/README.md
@@ -0,0 +1,23 @@
+Census (formerly known as ARPING Users)
+==========
+
+This is a simplified python script which checks the available subnet for computers online and returns a list of users which are online based on their mac-address
+
+The initial idea was to find known users in the given network, now it finds and stores everyone in the given network and might try to resolve these addresses into names. This is why the name `census` is coined for the project.
+
+Return Data
+----------
+after trying to reach all hosts in the selected subnets the script spits out th e following data:
+<pre>
+ { "timestamp" : 12345678, "data" : { "ip1" : ["mac1","mac2","macn"] }
+</pre>
+
+Census is meant to be put into a cronjob or some kind of wrapper scripts as it is currently really really (2-3 minutes) slow.
+
+SNMPWALK Command
+===============
+
+For historic reasons, this is the snmpwalk command to pull the currently registered mac-addresses on the firewall:
+<pre>
+snmpwalk -c shammunity 10.42.0.1 1.3.6.1.2.1.3.1.1.2
+</pre>