lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

kismet_drone.conf (2147B)


      1 # Kismet drone config file
      2 
      3 version=newcore.1
      4 
      5 # Name of drone server (informational)
      6 servername=Kismet-Drone
      7 
      8 # Drone configuration
      9 # Protocol, interface, and port to listen on
     10 dronelisten=tcp://127.0.0.1:2502
     11 # Hosts allowed to connect, comma separated.  May include netmasks.
     12 # allowedhosts=127.0.0.1,10.10.10.0/255.255.255.0
     13 droneallowedhosts=127.0.0.1
     14 # Maximum number of drone clients
     15 dronemaxclients=10
     16 droneringlen=65535
     17 
     18 # Do we have a GPS?
     19 gps=true
     20 # Do we use a locally serial attached GPS, or use a gpsd server?
     21 # (Pick only one)
     22 gpstype=gpsd
     23 # gpstype=serial
     24 # What serial device do we look for the GPS on?
     25 gpsdevice=/dev/rfcomm0
     26 # Host:port that GPSD is running on.  This can be localhost OR remote!
     27 gpshost=localhost:2947
     28 # Do we lock the mode?  This overrides coordinates of lock "0", which will
     29 # generate some bad information until you get a GPS lock, but it will 
     30 # fix problems with GPS units with broken NMEA that report lock 0
     31 gpsmodelock=false
     32 # Do we try to reconnect if we lose our link to the GPS, or do we just
     33 # let it die and be disabled?
     34 gpsreconnect=true
     35 
     36 # See the README for full information on the new source format
     37 # ncsource=interface:options
     38 ncsource=null
     39 # for example:
     40 # ncsource=wlan0
     41 # ncsource=wifi0:type=madwifi
     42 # ncsource=wlan0:name=intel,hop=false,channel=11
     43 
     44 # Special per-source options
     45 # sourceopts=[sourcename|*]:opt1,opt2
     46 # sourceopts=*:fuzzycrypt,weakvalidate
     47 
     48 # Comma-separated list of sources to enable, if you don't want to enable all
     49 # the sources you defined.
     50 # enablesource=source1,source2
     51 
     52 # How many channels per second do we hop?  (1-10)
     53 channelvelocity=5
     54 
     55 # By setting the dwell time for channel hopping we override the channelvelocity
     56 # setting above and dwell on each channel for the given number of seconds.
     57 #channeldwell=10
     58 
     59 # Users outside the US might want to use this list:
     60 # channellist=IEEE80211b:1,7,13,2,8,3,14,9,4,10,5,11,6,12
     61 channellist=IEEE80211b:1:3,6:3,11:3,2,7,3,8,4,9,5,10
     62 
     63 # US IEEE 80211a
     64 channellist=IEEE80211a:36,40,44,48,52,56,60,64,149,153,157,161,165
     65 
     66 # Combo
     67 channellist=IEEE80211ab:1:3,6:3,11:3,2,7,3,8,4,9,5,10,36,40,44,48,52,56,60,64,149,153,157,161,165
     68 
     69