port libao to buildroot-ng
[openwrt/svn-archive/archive.git] / net / kismet / files / kismet_drone.conf
1 # Kismet drone config file
2
3 version=2005.04.R1
4
5 # Name of server (Purely for organiational purposes)
6 servername=Kismet
7
8 # User to setid to (should be your normal user)
9 suiduser=nobody
10
11 # Port to serve packet data... This probably shouldn't be the same as the port
12 # you configured kismet_server for, or else you'll have problems running them
13 # on the same system.
14 tcpport=3501
15 # People allowed to connect, comma seperated IP addresses or network/mask
16 # blocks. Netmasks can be expressed as dotted quad (/255.255.255.0) or as
17 # numbers (/24)
18 allowedhosts=127.0.0.1
19 # Maximum number of concurrent stream attachments
20 maxclients=5
21
22 # Packet sources:
23 # source=capture_cardtype,capture_interface,capture_name
24 # Card type - Specifies the type of device. It can be one of:
25 # cisco - Cisco card with Linux Kernel drivers
26 # cisco_cvs - Cisco card with CVS Linux drivers
27 # cisco_bsd - Cisco on *BSD
28 # prism2 - Prism2 using wlan-ng drivers with pcap support (all
29 # current versions support pcap)
30 # prism2_hostap - Prism2 using hostap drivers
31 # prism2_legacy - Prism2 using wlan-ng drivers without pcap support (0.1.9)
32 # prism2_bsd - Prism2 on *BSD
33 # orinoco - Orinoco cards using Snax's patched driers
34 # generic - Generic card with no specific support. You will have
35 # to put this into monitor mode yourself!
36 # wsp100 - WSP100 embedded remote sensor.
37 # wtapfile - Saved file of packets readable by libwiretap
38 # ar5k - ar5k 802.11a using the vt_ar5k drivers
39 # Capture interface - Specifies the network interface Kismet will watch for
40 # packets to come in on. Typically "ethX" or "wlanX". For the WSP100 capture
41 # engine, the WSP100 device sends packets via a UDP stream, so the capture
42 # interface should be in the form of host:port where 'host' is the WSP100 and
43 # 'port' is the local UDP port that it will send data to.
44 # Capture Name - The name Kismet uses for this capture source. This is the
45 # name used to specify what sources to enable.
46 #
47 # To enable multiple sources, specify a source line for each and then use the
48 # enablesources line to enable them. For example:
49 # source=prism2,wlan0,prism
50 # source=cisco,eth0,cisco
51 source=wrt54g,eth1,wireless
52 # For v1 hardware uncomment this:
53 # source=wrt54g,eth2,wireless
54
55 # Comma-separated list of sources to enable. This is only needed if you wish
56 # to selectively enable multiple sources.
57 # enablesources=prism,cisco
58
59 # Do we channelhop?
60 channelhop=true
61
62 # How many channels per second do we hop? (1-10)
63 channelvelocity=5
64
65 # By setting the dwell time for channel hopping we override the channelvelocity
66 # setting above and dwell on each channel for the given number of seconds.
67 #channeldwell=10
68
69 # Do we split channels between cards on the same spectrum? This means if
70 # multiple 802.11b capture sources are defined, they will be offset to cover
71 # the most possible spectrum at a given time. This also controls splitting
72 # fine-tuned sourcechannels lines which cover multiple interfaces (see below)
73 splitchannels=true
74
75 # Basic channel hopping control:
76 # These define the channels the cards hop through for various frequency ranges
77 # supported by Kismet. More finegrain control is available via the
78 # "sourcechannels" configuration option.
79 #
80 # Don't change the IEEE80211<x> identifiers or channel hopping won't work.
81
82 # Users outside the US might want to use this list:
83 # defaultchannels=IEEE80211b:1,7,13,2,8,3,14,9,4,10,5,11,6,12
84 defaultchannels=IEEE80211b:1,6,11,2,7,3,8,4,9,5,10
85
86 # 802.11g uses the same channels as 802.11b...
87 defaultchannels=IEEE80211g:1,6,11,2,7,3,8,4,9,5,10
88
89 # 802.11a channels are non-overlapping so sequential is fine. You may want to
90 # adjust the list depending on the channels your card actually supports.
91 # defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,184,188,192,196,200,204,208,212,216
92 defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64
93
94 # Combo cards like Atheros use both 'a' and 'b/g' channels. Of course, you
95 # can also explicitly override a given source. You can use the script
96 # extras/listchan.pl to extract all the channels your card supports.
97 defaultchannels=IEEE80211ab:1,6,11,2,7,3,8,4,9,5,10,36,40,44,48,52,56,60,64
98
99 # Fine-tuning channel hopping control:
100 # The sourcechannels option can be used to set the channel hopping for
101 # specific interfaces, and to control what interfaces share a list of
102 # channels for split hopping. This can also be used to easily lock
103 # one card on a single channel while hopping with other cards.
104 # Any card without a sourcechannel definition will use the standard hopping
105 # list.
106 # sourcechannels=sourcename[,sourcename]:ch1,ch2,ch3,...chN
107
108 # ie, for us channels on the source 'prism2source' (same as normal channel
109 # hopping behavior):
110 # sourcechannels=prism2source:1,6,11,2,7,3,8,4,9,5,10
111
112 # Given two capture sources, "prism2a" and "prism2b", we want prism2a to stay
113 # on channel 6 and prism2b to hop normally. By not setting a sourcechannels
114 # line for prism2b, it will use the standard hopping.
115 # sourcechannels=prism2a:6
116
117 # To assign the same custom hop channel to multiple sources, or to split the
118 # same custom hop channel over two sources (if splitchannels is true), list
119 # them all on the same sourcechannels line:
120 # sourcechannels=prism2a,prism2b,prism2c:1,6,11
121