add default configs for kismet
[openwrt.git] / package / kismet / files / kismet_drone.conf
1 # Kismet drone config file
2
3 version=Feb.04.01a
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=your_user_here
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
52 source=generic,prism0,Kismet-Drone
53
54 # Comma-separated list of sources to enable. This is only needed if you wish
55 # to selectively enable multiple sources.
56 # enablesources=prism,cisco
57
58 # Do we channelhop?
59 channelhop=true
60
61 # How many channels per second do we hop? (1-10)
62 channelvelocity=5
63
64 # By setting the dwell time for channel hopping we override the channelvelocity
65 # setting above and dwell on each channel for the given number of seconds.
66 #channeldwell=10
67
68 # Do we split channels between cards on the same spectrum? This means if
69 # multiple 802.11b capture sources are defined, they will be offset to cover
70 # the most possible spectrum at a given time. This also controls splitting
71 # fine-tuned sourcechannels lines which cover multiple interfaces (see below)
72 splitchannels=true
73
74 # Basic channel hopping control:
75 # These define the channels the cards hop through for various frequency ranges
76 # supported by Kismet. More finegrain control is available via the
77 # "sourcechannels" configuration option.
78 #
79 # Don't change the IEEE80211<x> identifiers or channel hopping won't work.
80
81 # Users outside the US might want to use this list:
82 # defaultchannels=IEEE80211b:1,7,13,2,8,3,14,9,4,10,5,11,6,12
83 defaultchannels=IEEE80211b:1,6,11,2,7,3,8,4,9,5,10
84
85 # 802.11g uses the same channels as 802.11b...
86 defaultchannels=IEEE80211g:1,6,11,2,7,3,8,4,9,5,10
87
88 # 802.11a channels are non-overlapping so sequential is fine. You may want to
89 # adjust the list depending on the channels your card actually supports.
90 # 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
91 defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64
92
93 # Combo cards like Atheros use both 'a' and 'b/g' channels. Of course, you
94 # can also explicitly override a given source. You can use the script
95 # extras/listchan.pl to extract all the channels your card supports.
96 defaultchannels=IEEE80211ab:1,6,11,2,7,3,8,4,9,5,10,36,40,44,48,52,56,60,64
97
98 # Fine-tuning channel hopping control:
99 # The sourcechannels option can be used to set the channel hopping for
100 # specific interfaces, and to control what interfaces share a list of
101 # channels for split hopping. This can also be used to easily lock
102 # one card on a single channel while hopping with other cards.
103 # Any card without a sourcechannel definition will use the standard hopping
104 # list.
105 # sourcechannels=sourcename[,sourcename]:ch1,ch2,ch3,...chN
106
107 # ie, for us channels on the source 'prism2source' (same as normal channel
108 # hopping behavior):
109 # sourcechannels=prism2source:1,6,11,2,7,3,8,4,9,5,10
110
111 # Given two capture sources, "prism2a" and "prism2b", we want prism2a to stay
112 # on channel 6 and prism2b to hop normally. By not setting a sourcechannels
113 # line for prism2b, it will use the standard hopping.
114 # sourcechannels=prism2a:6
115
116 # To assign the same custom hop channel to multiple sources, or to split the
117 # same custom hop channel over two sources (if splitchannels is true), list
118 # them all on the same sourcechannels line:
119 # sourcechannels=prism2a,prism2b,prism2c:1,6,11
120
This page took 0.051802 seconds and 5 git commands to generate.