Lines Matching +full:serial +full:- +full:number
20 option enabled, the blkmapd daemon from nfs-utils is running, and the
21 file system is mounted using the NFSv4.1 protocol version (mount -o vers=4.1).
23 If the nfsd server needs to fence a non-responding client it calls
24 /sbin/nfsd-recall-failed with the first argument set to the IP address of
27 how to translate the device into a serial number from SCSI EVPD 0x80::
29 cat > /sbin/nfsd-recall-failed << EOF
31 .. code-block:: sh
37 EVPD=`sg_inq --page=0x80 ${DEV} | \
38 grep "Unit serial number:" | \
39 awk -F ': ' '{print $2}'`
41 echo "fencing client ${CLIENT} serial ${EVPD}" >> /var/log/pnfsd-fence.log