123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- .TH aoeping 8
- .SH NAME
- aoeping \- simple communication with AoE device
- .SH SYNOPSIS
- .nf
- .B aoeping [options] {shelf} {slot} {netif}
- .fi
- .SH DESCRIPTION
- The
- .I aoeping
- program performs simple one or two-round-trip communication with an
- ATA over Ethernet (AoE) device.
- .PP
- Running \fBaoeping\fP without command line arguments will result in a
- short usage summary being displayed.
- .PP
- The \fBaoeping\fP program will wait forever if if doesn't receive
- an expected response. The caller should use a time out to catch
- this situation.
- .SS Arguments
- .TP
- \fBshelf\fP
- This should be the shelf address (major AoE address) of the AoE device
- to communicate with.
- .TP
- \fBslot\fP
- This should be the slot address (minor AoE address) of the AoE device
- to communicate with.
- .TP
- \fBnetif\fP
- The name of the ethernet network interface to use for AoE
- communications, e.g., eth1.
- .SS Options
- .TP
- \fB-i\fP
- Issue an ATA "identify device" command after receiving the AoE
- device's Config
- Query response. The "ident" response will be printed on standard
- output as a hexidecimal dump.
- .TP
- \fB-v\fP
- Turn on
- more copious output, including a hexidecimal dump of the Config Query
- response from the AoE device (see AoE spec at URL below).
- .TP
- \fB-s\fP
- This option takes an argument. The
- argument is a decimal integer that specifies the number of seconds
- that \fBaoeping\fP will wait for a response before timing out and
- exiting with a non-zero status.
- .TP
- \fB-S\fP
- This option takes an argument. The
- argument is the name of a SMART command to send to the disk. The
- SMART commands in the list below are supported. If the command
- requires data
- transfer, one sector (512 bytes) of data is always the amount
- transfered. If the command takes a parameter (for the Low LBA
- register), then the name of the SMART command is immediately followed
- by a colon and then a number, the value of the parameter, e.g., "-S
- read_log:1".
- .IP
- read_data
- offline_immediate
- read_log
- write_log
- enable
- disable
- return_status
- For \fBwrite_log\fP, \fBaoeping\fP reads from
- standard input the one sector of data to be
- written to the specified log.
- The aoeping command just sends and receives SMART commands, without
- interpreting them. See the ATA specification for more information on
- using SMART.
- .LP
- .TP
- \fB-t\fP
- (This is an advanced feature.) This option has an argument. The
- argument is a decimal integer that is used as the initial tag, with
- the highest bit set, as
- the
- first tag in ATA commands. Tags for subsequent ATA commands will be
- incremented by one.
- .TP
- \fB-h\fP
- Show a usage summary.
- .SH EXAMPLE
- In this example, the root user
- uses \fBaoeping\fP to check for the presence of aoe device e10.9 on
- network interface eth0.
- .IP
- .EX
- bash# aoeping -v 10 9 eth0 | head
- tag: 80000000
- eth: eth0
- shelf: 10
- slot: 9
- config query response:
- 00 0d 87 aa c9 00 00 10 04 00 11 1f 88 a2 18 00
- 00 0a 09 01 00 00 00 00 00 03 30 08 00 10 00 04
- 66 6f 6f 0a 00 ff ff ff ff ff ff ff ff ff ff ff
- ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
- ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
- .EE
- .LP
- The next example shows root making sure the disk on the e10.9 is still
- responsive by issuing an ATA device identify command with a 20-second
- timeout.
- .IP
- .EX
- bash# aoeping -i -s 20 \\
- 10 9 eth0 > /dev/null \\
- && echo ok
- ok
- .EE
- .LP
- The next example uses SMART to determine whether the disk on e10.9
- thinks it
- has exceeded its error threshold. The ATA spec says that the LBA Mid
- register will be 0x4f when the disk has not exceeded its error
- threshold.
- .IP
- .EX
- bash# aoeping -S return_status \\
- 10 9 eth0 | grep 'LBA Mid: 0x4f' \\
- > /dev/null \\
- && echo ok
- ok
- .EE
- .LP
- Note that in a script, it would be prudent to specify and handle a
- timeout. Also, a good script would make sure the
- \fBStatus\fP register does not have the error bit (bit zero) or the
- device fault bit (bit 5) set.
- .SH "SEE ALSO"
- .IR aoe-discover (8),
- .IR aoe-interfaces (8),
- .IR aoe-mkdevs (8),
- .IR aoe-mkshelf (8),
- .IR aoe-stat (8),
- \fIAoE (ATA over Ethernet)\fP: http://www.coraid.com/documents/AoEr8.txt,
- \fIATA specification\fP
- .SH AUTHOR
- Ed L. Cashin (ecashin@coraid.com)
|