Questo contenuto non è disponibile nella lingua selezionata.
Chapter 32. Configuring a Fibre-Channel Over Ethernet Interface
fcoe-utils
lldpad
Procedure 32.1. Configuring an Ethernet interface to use FCoE
- Configure a new VLAN by copying an existing network script (e.g.
/etc/fcoe/cfg-eth0
) to the name of the Ethernet device that supports FCoE. This will provide you with a default file to configure. Given that the FCoE device isethX
, run:cp /etc/fcoe/cfg-eth0 /etc/fcoe/cfg-ethX
# cp /etc/fcoe/cfg-eth0 /etc/fcoe/cfg-ethX
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Modify the contents ofcfg-ethX
as necessary. Of note,DCB_REQUIRED
should be set tono
for networking interfaces that implement a hardware DCBX client. - If you want the device to automatically load during boot time, set
ONBOOT=yes
in the corresponding/etc/sysconfig/network-scripts/ifcfg-ethX
file. For example, if the FCoE device is eth2, then edit/etc/sysconfig/network-scripts/ifcfg-eth2
accordingly. - Start the data center bridging daemon (
dcbd
) using the following command:/etc/init.d/lldpad start
# /etc/init.d/lldpad start
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - For networking interfaces that implement a hardware DCBX client, skip this step and move on to the next.For interfaces that require a software DCBX client, enable data center bridging on the Ethernet interface using the following commands:
dcbtool sc ethX dcb on
# dcbtool sc ethX dcb on
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Then, enable FCoE on the Ethernet interface by running:dcbtool sc ethX app:fcoe e:1
# dcbtool sc ethX app:fcoe e:1
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Note
These commands will only work if thedcbd
settings for the Ethernet interface were not changed. - Load the FCoE device now using:
ifconfig ethX up
# ifconfig ethX up
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Start FCoE using:
service fcoe start
# service fcoe start
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The FCoE device should appear shortly, assuming all other settings on the fabric are correct. To view configured FCoE devices, run:fcoeadm -i
# fcoeadm -i
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
lldpad
to run at startup. To do so, use chkconfig
, as in:
chkconfig lldpad on
# chkconfig lldpad on
chkconfig fcoe on
# chkconfig fcoe on
Warning
32.1. Fibre-Channel over Ethernet (FCoE) Target Set up Copia collegamentoCollegamento copiato negli appunti!
Important
fcoeadm -i
displays configured FCoE interfaces.
Procedure 32.2. Configure FCoE target
- Setting up an FCoE target requires the installation of the
fcoe-target-utils
package, along with its dependencies.yum install fcoe-target-utils
# yum install fcoe-target-utils
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - FCoE target support is based on the LIO kernel target and does not require a userspace daemon. However, it is still necessary to enable the fcoe-target service to load the needed kernel modules and maintain the configuration across reboots.
service fcoe-target start
# service fcoe-target start
Copy to Clipboard Copied! Toggle word wrap Toggle overflow chkconfig fcoe-target on
# chkconfig fcoe-target on
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Configuration of an FCoE target is performed using the
targetcli
utility, rather than by editing a.conf
as may be expected. The settings are then saved so they may be restored if the system restarts.targetcli
# targetcli
Copy to Clipboard Copied! Toggle word wrap Toggle overflow targetcli
is a hierarchical configuration shell. Moving between nodes in the shell usescd
, andls
shows the contents at or below the current configuration node. To get more options, the commandhelp
is also available. - Define the file, block device, or pass-through SCSI device to export as a backstore.
Example 32.1. Example 1 of defining a device
/> backstores/block create example1 /dev/sda4
/> backstores/block create example1 /dev/sda4/> backstores/block create example1 /dev/sda4/> backstores/block create example1 /dev/sda4
Copy to Clipboard Copied! Toggle word wrap Toggle overflow This creates a backstore calledexample1
that maps to the/dev/sda4
block device.Example 32.2. Example 2 of defining a device
/> backstores/fileio create example2 /srv/example2.img 100M
/> backstores/fileio create example2 /srv/example2.img 100M/> backstores/fileio create example2 /srv/example2.img 100M/> backstores/fileio create example2 /srv/example2.img 100M/> backstores/fileio create example2 /srv/example2.img 100M
Copy to Clipboard Copied! Toggle word wrap Toggle overflow This creates a backstore calledexample2
which maps to the given file. If the file does not exist, it will be created. File size may use K, M, or G abbreviations and is only needed when the backing file does not exist.Note
If the globalauto_cd_after_create
option is on (the default), executing a create command will change the current configuration node to the newly created object. This can be disabled withset global auto_cd_after_create=false
. Returning to the root node is possible withcd /
. - Create an FCoE target instance on an FCoE interface.
/> tcm_fc/ create 00:11:22:33:44:55:66:77
/> tcm_fc/ create 00:11:22:33:44:55:66:77/> tcm_fc/ create 00:11:22:33:44:55:66:77
Copy to Clipboard Copied! Toggle word wrap Toggle overflow If FCoE interfaces are present on the system, tab-completing aftercreate
will list available interfaces. If not, ensurefcoeadm -i
shows active interfaces. - Map a backstore to the target instance.
Example 32.3. Example of mapping a backstore to the target instance
/> cd tcm_fc/00:11:22:33:44:55:66:77
/> cd tcm_fc/00:11:22:33:44:55:66:77/> cd tcm_fc/00:11:22:33:44:55:66:77
Copy to Clipboard Copied! Toggle word wrap Toggle overflow /> luns/ create /backstores/fileio/example2
/> luns/ create /backstores/fileio/example2/> luns/ create /backstores/fileio/example2
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Allow access to the LUN from an FCoE initiator.
/> acls/ create 00:99:88:77:66:55:44:33
/> acls/ create 00:99:88:77:66:55:44:33/> acls/ create 00:99:88:77:66:55:44:33
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The LUN should now be accessible to that initiator. - Exit
targetcli
by typingexit
or entering ctrl+D.
targetcli
will save the configuration by default. However it may be explicitly saved with the saveconfig
command.
targetcli
manpage for more information.