1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .TH SDAOE 3
- .SH NAME
- sdaoe \- ATA-over-Ethernet (AoE) storage device interface
- .SH SYNOPSIS
- .nf
- .B bind -a #S /dev
- .BI "echo config switch on spec " l " type aoe//dev/aoe/" shelf\fB.\fPslot " >/dev/sdctl"
- .BI /dev/sd l 0/ctl
- .BI /dev/sd l 0/raw
- .BI /dev/sd l 0/data
- \&...
- .fi
- .SH DESCRIPTION
- .I Sdaoe
- has a few quirks because
- network-attached storage can't be enumerated as directly-attached storage can.
- The default first letter for AoE devices is
- .LR e .
- Each
- .B sdaoe
- device must be configured explicitly.
- To configure target
- .B 42.0
- on
- .BR sde0 :
- .IP
- .EX
- echo config switch on spec e type aoe//dev/aoe/42.0 >/dev/sdctl
- .EE
- .PP
- To turn this device off,
- .IP
- .EX
- echo config switch off spec e >/dev/sdctl
- .EE
- .PP
- To boot from an AoE root, the
- .B sd
- device must be configured on boot. To accomplish this,
- one must either PXE boot or boot from direct-attached
- storage and add two configuration lines to
- .IR plan9.ini (8).
- For example, to boot using target
- .B 42.0
- as
- .B sde0
- as root over Ethernet interfaces 0 and 1,
- .IP
- .EX
- aoeif=ether0 ether1
- aoedev=e!#æ/aoe/42.0
- .EE
- .SH SOURCE
- .B /sys/src/9/port/sdaoe.c
- .SH SEE ALSO
- .\" .IR cec (1),
- .\" .IR vblade (1),
- .IR aoe (3),
- .IR sd (3),
- .IR 9load (8),
- .IR snoopy (8)
- .SH BUGS
- It is not currently possible to boot from an AoE target without an
- external bootstrap like PXE.
|