GISKismet Examples

Insert all data from a Kismet-newcore netxml file into the GISKismet database

 perl giskismet -x examples/Kismet-Feb-05-2009-1.netxml

Insert only the APs on channel 2

 perl giskismet -x examples/Kismet-Feb-05-2009-1.netxml --channel 2

Generate a graph based on the GISKismet database

 perl giskismet -q "select * from wireless" -o ex1.kml

The ex1.kml file can be found at:

 wget -O ex1.kml \
 "http://my-trac.assembla.com/giskismet/browser/trunk/examples/ex1.kml?format=raw"

Insert all the information from a Kismet-newcore netxml file and generate a graph of the APs named linksys without encryption

 perl giskismet -x examples/Kismet-Feb-05-2009-1.netxml \
 -q "select * from wireless where ESSID='linksys' and Encryption='None'" -o ex2.kml

The ex2.kml file can be found at:

 wget -O ex2.kml \ 
 "http://my-trac.assembla.com/giskismet/browser/trunk/examples/ex2.kml?format=raw"