Workbook 2, chapter 6 (providing remote block storage), page 145.
A quick Google yields https://www.thomas-krenn.com/en/wiki/ISCSI_Basics and man iscsiadm
.
iqn.YYYY-MM.com.reversed.server.fqdn:optional_name
172.25.0.11
eth0
eth1
eth3
iscsiadm -m discovery -t send_targets -p 10.10.10.10
@salikov exampleyum install targetcli
[root@server9:~] $ targetcli
/> ls
firewall-cmd --add-port=3260/tcp
firewall-cmd --add-port=3260/tcp --permanent
systemctl endable target
systemctl start target
yum install iscsi-initiator-utils
echo "InitiatorName=iqn.2016-09.com.example.desktop9:optional_name" > /etc/iscsi/initiatorname.iscsi
- only necessary if you changed the initiator name after doing a scan
** systemctl restart iscsi
iscsiadm -m discovery -t st -p 172.25.N.11
/var/lib/iscsi/nodes/
iscsiadm -m node -T iqn.2016-09.com.example.server9:optional_name -p 172.25.N.11 -l
to login to tagret iQN at portal addressiscsiadm -m session
to show establisted iSCSI sessionslsblk -o +UUID
to show the new block device (check under /sys/block/
)/etc/fstab
.iscsiadm -m node -T iqn.2016-09.com.example.server9:optional_name -p 172.25.N.11 -o delete
Workbook 2, chapter 1 (managing ipv6 networking), page 1.
NetworkManager
systemd service.nmcli
, nmtui
, nm*
/etc/sysconfig/network-scripts/ifcfg-*
/etc/NetworkManager
hostnamectl
Workbook 2, chapter 5 (configuring email transmission), page 134.
postconf -e "local_transmission=error: local delivery disabled"
postconf -e "relayhost=smtpX.example.com"
postconf -e "inet_interfaces=loopback-only"
postconf -e "mynetworks="127.0.0.1/8 [::1]/128"
postconf -e "myorigin=desktopX.example.com"
postconf -e "mydestination="
systemctl restart postfix