This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathonesixtyone.1
73 lines (73 loc) · 2.24 KB
/
onesixtyone.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.TH ONESIXTYONE "1" "2010-10-18"
.SH NAME
onesixtyone \- an efficient SNMP scanner
.SH SYNOPSIS
.B onesixtyone
.RI "[" "options ..." "] " host " [" community "]"
.SH DESCRIPTION
.\" Add any additional description here
.B onesixtyone
is a network scanner that sends an
.SM SNMP GET
request for the
.\" sysDescr.0 = 1.3.6.1.2.1.1.1.0
system.sysDescr.0 value, present on almost all
.SM SNMP
enabled devices,
and logs the returned value, which should be a description of the
system software running on the device.
.SM SNMP
protocol version 1 is used.
.PP
Requests are sent to hosts as fast as possible, rather than waiting
for each one to respond individually, and responses are displayed as
they are received. By default,
.B onesixtyone
waits for 10 milliseconds between sending packets.
.PP
After all packets have been sent,
.B onesixtyone
will wait for five seconds for outstanding responses.
.PP
Hosts can be specified as
.SM IP
addresses or using
.SM CIDR
notation to target
all hosts on a particular subnet; no name lookup is done. For example,
127.0.0.1 will scan one host, and 192.168.0.0/24 will scan all hosts
from 192.168.0.1 to 192.168.0.254.
.SH OPTIONS
.IP "-c community-file"
Try the community names from the supplied file instead of the default
communities of "public" and "private".
.I community-file
should have one
community name per line.
.IP "-i host-file"
Read target hosts from a file. Hosts should be separated by white
space or newlines. If host-file is "-", hosts will be read from stdin.
.IP "-o output-file"
Send responses to file. They will also go to stdout unless you use -q.
.IP -d
Enables debug mode. Use twice for more per-packet information.
.IP "-w n"
Wait
.I n
milliseconds between sending packets.
The default delay is 10 milliseconds. If 0 is requested, packets will be
sent as fast as possible.
.IP -q
Quiet mode. Do not print log to stdout, use with -o.
.IP "-v [1 | 2c]"
Use protocol version 1 or 2c.
Some hosts may only respond to one of the protocol versions, or may
return errors when the other version is used. The default version is 1.
.SH FILES
.I dict.txt
.RS
A list of sample community names.
.RE
.SH AUTHOR
Originally written by Solar Eclipse, solareclipse at phreedom dot org.
Now maintained by Paul Flo Williams, paul at frixxon dot co dot uk.