r4919 - in developers/werner/wlan: . tomato tomato/long-0 tomato/long-1 tomato/long-default tomato/short-0 tomato/short-1 tomato/short-default tomato/vanille-short-default

werner at docs.openmoko.org werner at docs.openmoko.org
Fri Feb 13 02:48:37 CET 2009


Author: werner
Date: 2009-02-13 02:48:32 +0100 (Fri, 13 Feb 2009)
New Revision: 4919

Added:
   developers/werner/wlan/tomato/
   developers/werner/wlan/tomato/README
   developers/werner/wlan/tomato/capall
   developers/werner/wlan/tomato/long-0/
   developers/werner/wlan/tomato/long-0/wlan0-01.cap
   developers/werner/wlan/tomato/long-0/wlan0-01.txt
   developers/werner/wlan/tomato/long-0/wlan4-01.cap
   developers/werner/wlan/tomato/long-0/wlan4-01.txt
   developers/werner/wlan/tomato/long-0/wlan5-01.cap
   developers/werner/wlan/tomato/long-0/wlan5-01.txt
   developers/werner/wlan/tomato/long-0/wlan6-01.cap
   developers/werner/wlan/tomato/long-0/wlan6-01.txt
   developers/werner/wlan/tomato/long-1/
   developers/werner/wlan/tomato/long-1/wlan0-01.cap
   developers/werner/wlan/tomato/long-1/wlan0-01.txt
   developers/werner/wlan/tomato/long-1/wlan4-01.cap
   developers/werner/wlan/tomato/long-1/wlan4-01.txt
   developers/werner/wlan/tomato/long-1/wlan5-01.cap
   developers/werner/wlan/tomato/long-1/wlan5-01.txt
   developers/werner/wlan/tomato/long-1/wlan6-01.cap
   developers/werner/wlan/tomato/long-1/wlan6-01.txt
   developers/werner/wlan/tomato/long-default/
   developers/werner/wlan/tomato/long-default/wlan0-01.cap
   developers/werner/wlan/tomato/long-default/wlan0-01.txt
   developers/werner/wlan/tomato/long-default/wlan4-01.cap
   developers/werner/wlan/tomato/long-default/wlan4-01.txt
   developers/werner/wlan/tomato/long-default/wlan5-01.cap
   developers/werner/wlan/tomato/long-default/wlan5-01.txt
   developers/werner/wlan/tomato/long-default/wlan6-01.cap
   developers/werner/wlan/tomato/long-default/wlan6-01.txt
   developers/werner/wlan/tomato/short-0/
   developers/werner/wlan/tomato/short-0/wlan0-01.cap
   developers/werner/wlan/tomato/short-0/wlan0-01.txt
   developers/werner/wlan/tomato/short-0/wlan4-01.cap
   developers/werner/wlan/tomato/short-0/wlan4-01.txt
   developers/werner/wlan/tomato/short-0/wlan5-01.cap
   developers/werner/wlan/tomato/short-0/wlan5-01.txt
   developers/werner/wlan/tomato/short-0/wlan6-01.cap
   developers/werner/wlan/tomato/short-0/wlan6-01.txt
   developers/werner/wlan/tomato/short-1/
   developers/werner/wlan/tomato/short-1/wlan0-01.cap
   developers/werner/wlan/tomato/short-1/wlan0-01.txt
   developers/werner/wlan/tomato/short-1/wlan4-01.cap
   developers/werner/wlan/tomato/short-1/wlan4-01.txt
   developers/werner/wlan/tomato/short-1/wlan5-01.cap
   developers/werner/wlan/tomato/short-1/wlan5-01.txt
   developers/werner/wlan/tomato/short-1/wlan6-01.cap
   developers/werner/wlan/tomato/short-1/wlan6-01.txt
   developers/werner/wlan/tomato/short-default/
   developers/werner/wlan/tomato/short-default/wlan0-01.cap
   developers/werner/wlan/tomato/short-default/wlan0-01.txt
   developers/werner/wlan/tomato/short-default/wlan4-01.cap
   developers/werner/wlan/tomato/short-default/wlan4-01.txt
   developers/werner/wlan/tomato/short-default/wlan5-01.cap
   developers/werner/wlan/tomato/short-default/wlan5-01.txt
   developers/werner/wlan/tomato/short-default/wlan6-01.cap
   developers/werner/wlan/tomato/short-default/wlan6-01.txt
   developers/werner/wlan/tomato/vanille-short-default/
   developers/werner/wlan/tomato/vanille-short-default/wlan0-04.cap
   developers/werner/wlan/tomato/vanille-short-default/wlan0-04.txt
   developers/werner/wlan/tomato/vanille-short-default/wlan4-04.cap
   developers/werner/wlan/tomato/vanille-short-default/wlan4-04.txt
   developers/werner/wlan/tomato/vanille-short-default/wlan5-04.cap
   developers/werner/wlan/tomato/vanille-short-default/wlan5-04.txt
   developers/werner/wlan/tomato/vanille-short-default/wlan6-04.cap
   developers/werner/wlan/tomato/vanille-short-default/wlan6-04.txt
Log:
Experiments related to #1250



Added: developers/werner/wlan/tomato/README
===================================================================
--- developers/werner/wlan/tomato/README	                        (rev 0)
+++ developers/werner/wlan/tomato/README	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+short-default = Tomato set to require short preambles, AR6k using default
+  settings
+long-1 = Tomato set to tolerate long preambles, --setlongpreamble 1
+etc.
+
+vanille-short-default is like short-defaultb but with the ESSID set to
+  "vanille" instead of "wg".

Added: developers/werner/wlan/tomato/capall
===================================================================
--- developers/werner/wlan/tomato/capall	                        (rev 0)
+++ developers/werner/wlan/tomato/capall	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+ITF="wlan0 wlan4 wlan5 wlan6"
+CHAN=2
+
+killall airodump-ng tcpdump
+
+for n in $ITF; do
+    ifconfig $n down
+    iwconfig $n mode monitor chan $CHAN
+    ifconfig $n up
+done
+
+for n in $ITF; do
+    airodump-ng --channel $CHAN -w $n $n >/dev/null 2>/dev/null &
+#     tcpdump -i $n -s0 -w $n.cap &
+done
+
+echo -n "[Enter] to stop "
+read x
+
+killall airodump-ng tcpdump


Property changes on: developers/werner/wlan/tomato/capall
___________________________________________________________________
Name: svn:executable
   + *

Added: developers/werner/wlan/tomato/long-0/wlan0-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-0/wlan0-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-0/wlan0-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-0/wlan0-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-0/wlan0-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:08:54, 2009-02-12 20:09:26,  2,  54, OPN ,       ,   ,   0,      133,       11, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:09:04, 2009-02-12 20:09:26,   0,       17, 00:21:29:8B:15:11, wg
+00:15:AF:82:82:8A, 2009-02-12 20:09:06, 2009-02-12 20:09:06,   0,        1, (not associated) , Uranga2
+

Added: developers/werner/wlan/tomato/long-0/wlan4-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-0/wlan4-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-0/wlan4-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-0/wlan4-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-0/wlan4-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:08:54, 2009-02-12 20:09:26,  2,  54, OPN ,       ,   , 211,      121,       10, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:09:04, 2009-02-12 20:09:26, 208,       16, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-0/wlan5-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-0/wlan5-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-0/wlan5-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-0/wlan5-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-0/wlan5-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:08:54, 2009-02-12 20:09:26,  2,  54, OPN ,       ,   , 187,      156,       13, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:09:04, 2009-02-12 20:09:26, 184,       16, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-0/wlan6-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-0/wlan6-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-0/wlan6-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-0/wlan6-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-0/wlan6-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:08:54, 2009-02-12 20:09:26,  2,  54, OPN ,       ,   , 211,      157,       14, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:1A:73:A1:34:06, 2009-02-12 20:09:10, 2009-02-12 20:09:20, 184,        2, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 20:09:04, 2009-02-12 20:09:26, 210,       20, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-1/wlan0-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-1/wlan0-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-1/wlan0-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-1/wlan0-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-1/wlan0-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,9 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:10:55, 2009-02-12 20:11:26,  2,  54, OPN ,       ,   ,   0,      104,       17, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:1A:73:A1:34:06, 2009-02-12 20:11:00, 2009-02-12 20:11:10,   0,        3, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 20:11:01, 2009-02-12 20:11:24,   0,       23, 00:21:29:8B:15:11, wg
+00:15:AF:82:82:8A, 2009-02-12 20:11:07, 2009-02-12 20:11:07,   0,        1, (not associated) , cdrom
+

Added: developers/werner/wlan/tomato/long-1/wlan4-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-1/wlan4-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-1/wlan4-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-1/wlan4-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-1/wlan4-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:10:55, 2009-02-12 20:11:26,  2,  54, OPN ,       ,   , 210,      101,       15, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:11:01, 2009-02-12 20:11:24, 210,       26, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-1/wlan5-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-1/wlan5-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-1/wlan5-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-1/wlan5-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-1/wlan5-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:10:55, 2009-02-12 20:11:26,  2,  54, OPN ,       ,   , 188,      127,       17, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:11:01, 2009-02-12 20:11:24, 182,       28, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-1/wlan6-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-1/wlan6-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-1/wlan6-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-1/wlan6-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-1/wlan6-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:10:55, 2009-02-12 20:11:26,  2,  54, OPN ,       ,   , 211,      126,       17, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:1A:73:A1:34:06, 2009-02-12 20:11:00, 2009-02-12 20:11:10, 187,        3, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 20:11:01, 2009-02-12 20:11:24, 210,       33, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-default/wlan0-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-default/wlan0-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-default/wlan0-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-default/wlan0-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-default/wlan0-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:07:32, 2009-02-12 20:07:48,  2,  54, OPN ,       ,   ,   0,      102,        4, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:07:36, 2009-02-12 20:07:38,   0,        9, 00:21:29:8B:15:11, wg
+00:21:00:40:45:03, 2009-02-12 20:07:44, 2009-02-12 20:07:44,   0,        1, (not associated) ,
+

Added: developers/werner/wlan/tomato/long-default/wlan4-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-default/wlan4-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-default/wlan4-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-default/wlan4-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-default/wlan4-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:07:32, 2009-02-12 20:07:48,  2,  54, OPN ,       ,   , 218,      102,        4, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:07:36, 2009-02-12 20:07:38, 206,        7, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-default/wlan5-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-default/wlan5-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-default/wlan5-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-default/wlan5-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-default/wlan5-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:07:32, 2009-02-12 20:07:48,  2,  54, OPN ,       ,   , 187,      124,        4, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:07:36, 2009-02-12 20:07:36, 184,        6, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/long-default/wlan6-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/long-default/wlan6-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/long-default/wlan6-01.txt
===================================================================
--- developers/werner/wlan/tomato/long-default/wlan6-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/long-default/wlan6-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:07:32, 2009-02-12 20:07:48,  2,  54, OPN ,       ,   , 211,      124,        4, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:07:36, 2009-02-12 20:07:38, 209,        9, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-0/wlan0-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-0/wlan0-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-0/wlan0-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-0/wlan0-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-0/wlan0-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:13:34, 2009-02-12 20:14:16,  2,  54, OPN ,       ,   ,   0,      250,        9, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:13:39, 2009-02-12 20:14:09,   0,        8, 00:21:29:8B:15:11, wg
+00:1A:73:A1:34:06, 2009-02-12 20:14:00, 2009-02-12 20:14:10,   0,        3, (not associated) , belkin54g
+

Added: developers/werner/wlan/tomato/short-0/wlan4-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-0/wlan4-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-0/wlan4-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-0/wlan4-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-0/wlan4-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:13:34, 2009-02-12 20:14:16,  2,  54, OPN ,       ,   , 208,      233,        9, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:13:39, 2009-02-12 20:14:09, 210,        8, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-0/wlan5-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-0/wlan5-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-0/wlan5-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-0/wlan5-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-0/wlan5-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:13:34, 2009-02-12 20:14:16,  2,  54, OPN ,       ,   , 188,      294,       10, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:13:39, 2009-02-12 20:14:09, 182,        9, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-0/wlan6-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-0/wlan6-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-0/wlan6-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-0/wlan6-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-0/wlan6-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:13:34, 2009-02-12 20:14:16,  2,  54, OPN ,       ,   , 210,      293,       10, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:1A:73:A1:34:06, 2009-02-12 20:14:00, 2009-02-12 20:14:10, 184,        3, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 20:13:39, 2009-02-12 20:14:09, 212,       14, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-1/wlan0-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-1/wlan0-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-1/wlan0-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-1/wlan0-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-1/wlan0-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:14:43, 2009-02-12 20:15:20,  2,  54, OPN ,       ,   ,   0,      222,       16, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:14:50, 2009-02-12 20:15:12,   0,       50, 00:21:29:8B:15:11, wg
+00:1A:73:A1:34:06, 2009-02-12 20:15:00, 2009-02-12 20:15:17,   0,        3, (not associated) , belkin54g
+

Added: developers/werner/wlan/tomato/short-1/wlan4-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-1/wlan4-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-1/wlan4-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-1/wlan4-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-1/wlan4-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:14:43, 2009-02-12 20:15:20,  2,  54, OPN ,       ,   , 210,      201,       17, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:14:50, 2009-02-12 20:15:12, 208,       48, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-1/wlan5-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-1/wlan5-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-1/wlan5-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-1/wlan5-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-1/wlan5-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:14:43, 2009-02-12 20:15:20,  2,  54, OPN ,       ,   , 189,      254,       17, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:14:50, 2009-02-12 20:15:12, 182,       57, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-1/wlan6-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-1/wlan6-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-1/wlan6-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-1/wlan6-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-1/wlan6-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:14:43, 2009-02-12 20:15:20,  2,  54, OPN ,       ,   , 212,      255,       17, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:1A:73:A1:34:06, 2009-02-12 20:15:00, 2009-02-12 20:15:06, 183,        2, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 20:14:50, 2009-02-12 20:15:12, 210,       80, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-default/wlan0-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-default/wlan0-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-default/wlan0-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-default/wlan0-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-default/wlan0-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,10 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:12:12, 2009-02-12 20:13:05,  2,  54, OPN ,       ,   ,   0,      148,       39, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:12:19, 2009-02-12 20:13:05,   0,       50, 00:21:29:8B:15:11, wg
+00:1A:73:A1:34:06, 2009-02-12 20:12:30, 2009-02-12 20:12:49,   0,        2, (not associated) , belkin54g
+00:15:AF:82:82:8A, 2009-02-12 20:12:43, 2009-02-12 20:12:43,   0,        2, (not associated) , Guestnet 5 andar
+00:21:00:40:45:03, 2009-02-12 20:12:45, 2009-02-12 20:12:45,   0,        1, (not associated) , Flintstones
+

Added: developers/werner/wlan/tomato/short-default/wlan4-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-default/wlan4-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-default/wlan4-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-default/wlan4-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-default/wlan4-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:12:12, 2009-02-12 20:13:05,  2,  54, OPN ,       ,   , 209,      134,       37, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:12:19, 2009-02-12 20:13:05, 206,       52, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-default/wlan5-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-default/wlan5-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-default/wlan5-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-default/wlan5-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-default/wlan5-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:12:12, 2009-02-12 20:13:05,  2,  54, OPN ,       ,   , 188,      166,       40, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 20:12:19, 2009-02-12 20:13:04, 180,       54, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/short-default/wlan6-01.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/short-default/wlan6-01.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/short-default/wlan6-01.txt
===================================================================
--- developers/werner/wlan/tomato/short-default/wlan6-01.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/short-default/wlan6-01.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 20:12:12, 2009-02-12 20:13:05,  2,  54, OPN ,       ,   , 211,      169,       40, 192.168.  1.  1,   2, wg, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:1A:73:A1:34:06, 2009-02-12 20:12:30, 2009-02-12 20:12:49, 185,        2, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 20:12:19, 2009-02-12 20:13:05, 208,       59, 00:21:29:8B:15:11, wg
+

Added: developers/werner/wlan/tomato/vanille-short-default/wlan0-04.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/vanille-short-default/wlan0-04.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/vanille-short-default/wlan0-04.txt
===================================================================
--- developers/werner/wlan/tomato/vanille-short-default/wlan0-04.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/vanille-short-default/wlan0-04.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,9 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 22:12:06, 2009-02-12 22:12:39,  2,  54, OPN ,       ,   ,   0,       40,       14, 192.168.  1.  1,   7, vanille, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:21:00:40:45:03, 2009-02-12 22:12:07, 2009-02-12 22:12:35,   0,        9, (not associated) , Flintstones
+00:12:CF:8F:34:CF, 2009-02-12 22:12:08, 2009-02-12 22:12:36,   0,       27, 00:21:29:8B:15:11, vanille
+00:1A:73:A1:34:06, 2009-02-12 22:12:18, 2009-02-12 22:12:38,   0,        6, (not associated) , belkin54g
+

Added: developers/werner/wlan/tomato/vanille-short-default/wlan4-04.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/vanille-short-default/wlan4-04.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/vanille-short-default/wlan4-04.txt
===================================================================
--- developers/werner/wlan/tomato/vanille-short-default/wlan4-04.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/vanille-short-default/wlan4-04.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,8 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 22:12:06, 2009-02-12 22:12:39,  2,  54, OPN ,       ,   , 209,       43,       12, 192.168.  1.  1,   7, vanille, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:1A:73:A1:34:06, 2009-02-12 22:12:18, 2009-02-12 22:12:29, 188,        5, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 22:12:08, 2009-02-12 22:12:36, 208,       24, 00:21:29:8B:15:11, vanille
+

Added: developers/werner/wlan/tomato/vanille-short-default/wlan5-04.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/vanille-short-default/wlan5-04.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/vanille-short-default/wlan5-04.txt
===================================================================
--- developers/werner/wlan/tomato/vanille-short-default/wlan5-04.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/vanille-short-default/wlan5-04.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,7 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 22:12:06, 2009-02-12 22:12:39,  2,  54, OPN ,       ,   , 183,       51,       15, 192.168.  1.  1,   7, vanille, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:12:CF:8F:34:CF, 2009-02-12 22:12:08, 2009-02-12 22:12:36, 184,       27, 00:21:29:8B:15:11, vanille
+

Added: developers/werner/wlan/tomato/vanille-short-default/wlan6-04.cap
===================================================================
(Binary files differ)


Property changes on: developers/werner/wlan/tomato/vanille-short-default/wlan6-04.cap
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: developers/werner/wlan/tomato/vanille-short-default/wlan6-04.txt
===================================================================
--- developers/werner/wlan/tomato/vanille-short-default/wlan6-04.txt	                        (rev 0)
+++ developers/werner/wlan/tomato/vanille-short-default/wlan6-04.txt	2009-02-13 01:48:32 UTC (rev 4919)
@@ -0,0 +1,9 @@
+
+BSSID, First time seen, Last time seen, channel, Speed, Privacy, Cipher, Authentication, Power, # beacons, # IV, LAN IP, ID-length, ESSID, Key
+00:21:29:8B:15:11, 2009-02-12 22:12:06, 2009-02-12 22:12:39,  2,  54, OPN ,       ,   , 205,       49,       15, 192.168.  1.  1,   7, vanille, 
+
+Station MAC, First time seen, Last time seen, Power, # packets, BSSID, Probed ESSIDs
+00:21:00:40:45:03, 2009-02-12 22:12:08, 2009-02-12 22:12:35, 185,        5, (not associated) , Flintstones
+00:1A:73:A1:34:06, 2009-02-12 22:12:18, 2009-02-12 22:12:38, 187,        5, (not associated) , belkin54g
+00:12:CF:8F:34:CF, 2009-02-12 22:12:08, 2009-02-12 22:12:36, 210,       33, 00:21:29:8B:15:11, vanille
+




More information about the commitlog mailing list