]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/bluetooth/l2ping/l2ping.8
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / bluetooth / l2ping / l2ping.8
1 .\" Copyright (c) 2001-2002 Maksim Yevmenkin <m_evmenkin@yahoo.com>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $Id: l2ping.8,v 1.3 2003/05/21 01:00:19 max Exp $
26 .\" $FreeBSD$
27 .\"
28 .Dd March 29, 2011
29 .Dt L2PING 8
30 .Os
31 .Sh NAME
32 .Nm l2ping
33 .Nd send L2CAP ECHO_REQUEST to remote devices
34 .Sh SYNOPSIS
35 .Nm
36 .Op Fl fhn
37 .Fl a Ar remote
38 .Op Fl c Ar count
39 .Op Fl i Ar wait
40 .Op Fl S Ar source
41 .Op Fl s Ar size
42 .Sh DESCRIPTION
43 The
44 .Nm
45 utility uses L2CAP
46 .Dv ECHO_REQUEST
47 datagram to elicit an L2CAP
48 .Dv ECHO_RESPONSE
49 datagram from a remote device.
50 .Pp
51 The options are as follows:
52 .Bl -tag -width indent
53 .It Fl a Ar remote
54 Specify the remote device to ping.
55 The remote device can be specified by either its BD_ADDR or name.
56 If name was specified then the
57 .Nm
58 utility will attempt to resolve the name via
59 .Xr bt_gethostbyname 3 .
60 .It Fl c Ar count
61 Number of packets to send.
62 If this option is not specified,
63 .Nm
64 will operate until interrupted.
65 .It Fl f
66 Don't wait between sending each packet.
67 .It Fl h
68 Display usage message and exit.
69 .It Fl i Ar wait
70 Wait
71 .Ar wait
72 seconds between sending each packet.
73 The default is to wait for one second between each packet.
74 This option is ignored if
75 .Fl f
76 has been specified.
77 .It Fl n
78 Numeric output only.
79 No attempt will be made to look up symbolic names for host addresses.
80 .It Fl S Ar source
81 Specify the local device which should be used to send L2CAP
82 .Dv ECHO_REQUEST
83 datagrams.
84 The local device can be specified by either its BD_ADDR or name.
85 If name was specified then the
86 .Nm
87 utility will attempt to resolve the name via
88 .Xr bt_gethostbyname 3 .
89 .It Fl s Ar size
90 Specify the number of payload bytes to be sent.
91 The default size is 44 bytes.
92 It is calculated as minimum L2CAP MTU (48 bytes) minus the size of the L2CAP
93 signalling command header (4 bytes).
94 The maximum size is 65531 bytes.
95 Is is calculated as maximum L2CAP MTU
96 (65535 bytes) minus four bytes of payload reserved for
97 .Nm
98 internal use.
99 Use this option with caution.
100 Some implementations may not like large sizes and may hang or even crash.
101 .El
102 .Sh EXIT STATUS
103 .Ex -std
104 .Sh SEE ALSO
105 .Xr bluetooth 3 ,
106 .Xr netgraph 3 ,
107 .Xr netgraph 4 ,
108 .Xr ng_l2cap 4 ,
109 .Xr l2control 8
110 .Sh AUTHORS
111 .An Maksim Yevmenkin Aq emax@FreeBSD.org
112 .Sh BUGS
113 Could collect more statistic.
114 Could check for duplicated, corrupted and lost packets.