blob: 42870c7f8777610dc62f6efa13123f731104b674 (
plain) (
blame)
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
|
[
{ type: install
message: <<EOM
Please remember to reinstall this port after kernel source update. Using AoE
devices on boot is a little tricky because the network must be up before the
system can access an AoE device. The current rc boot method for automounting
filesystems will not work with AoE devices; vinum and mount -a are both run
before bringing up the network.
In order to use AoE devices on boot a few rc.conf variables have been defined
that permit the boot script (/etc/rc.d/aoe) to initialize systems using AoE
devices after the network is up. They are as follows:
aoe_enable Set to "Yes" to enable the aoe startup script.
aoe_iflist A space separated string of interfaces valid for AoE.
aoe_wc Set to "1" to enable write cache on AoE device.
aoe_mounts A space seperated string of AoE device nodes to be mounted.
(An entry for each needs to be in /etc/fstab as well with the
"noauto" option.)
For example, the following added to /etc/rc.conf:
aoe_enable="Yes"
aoe_iflist="em0 em1"
aoe_wc="1"
aoe_mounts="/dev/aoed0s1a /dev/aoed1s1a"
and the following added to /etc/fstab:
# Device Mountpoint FStype Options Dump Pass#
/dev/aoed0s1a /mnt/a ufs rw,noauto 0 0
/dev/aoed1s1a /mnt/b ufs rw,noauto 0 0
will automatically start the AoE driver and mount the /mnt/a and /mnt/b
"blades". See aoe(4) and http://www.coraid.com/support/freebsd/usingaoe.html
for more information.
EOM
}
]
|