您好,登錄后才能下訂單哦!
如何自動解鎖Linux上的加密磁盤怎樣,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
通過使用網(wǎng)絡(luò)綁定磁盤加密(NBDE),無需手動輸入密碼即可打開加密磁盤。
對于系統(tǒng)安全來說,防止黑客對數(shù)據(jù)進(jìn)行窺探和攻擊是很重要的,在Linux系統(tǒng)中統(tǒng)一密鑰是一個很好用的工具。使用LUSK對磁盤進(jìn)行加密有一點(diǎn)不足就是每次系統(tǒng)重啟或磁盤重新掛載時,你都必須手動提供密碼。
用 sudo 安裝 Tang:
sudo yum install tang -y
啟用 Tang 服務(wù)器:
sudo systemctl enable tangd.socket --now
Tang 服務(wù)器工作在 80 端口,需加入到 firewalld 防火墻。添加相應(yīng)的 firewalld 規(guī)則:
sudo firewall-cmd --add-port=tcp/80 --perm
sudo firewall-cmd --reload
現(xiàn)在安裝好了服務(wù)器。
在本例中,假設(shè)你已經(jīng)添加了一個名為 /dev/vdc 的新的 1GB 磁盤到你的系統(tǒng)中。
使用 fdisk 或 parted 創(chuàng)建主分區(qū):
sudo fdisk /dev/vdc
完成以下步驟來安裝客戶端:
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0x4a6812d4.
Command (m for help):
輸入 n 來創(chuàng)建新的分區(qū):
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p):
按下回車鍵選擇主分區(qū):
Using default response p
Partition number (1-4, default 1):
按下回車鍵選擇默認(rèn)分區(qū)號:
First sector (2048-2097151, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-2097151, default 2097151):
按回車鍵選擇最后一個扇區(qū):
Using default value 2097151
Partition 1 of type Linux and of size 1023 MiB is set
Command (m for help): wq
輸入 wq 保存更改并退出 fdisk:
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
運(yùn)行 partprobe 通知系統(tǒng)分區(qū)表的變化:
sudo partprobe
使用 sudo 安裝 cryptsetup 軟件包:
sudo yum install cryptsetup -y
使用 cryptsetup luksFormat 命令對磁盤進(jìn)行加密。當(dāng)提示時,你需要輸入大寫的 YES,并輸入密碼來加密磁盤:
sudo cryptsetup luksFormat /dev/vdc1
WARNING!
========
This will overwrite data on /dev/vdc1 irrevocably.
Are you sure? (Type uppercase yes):
Enter passphrase for /dev/vdc1:
Verify passphrase:
使用 cryptsetup luksOpen 命令將加密的分區(qū)映射到一個邏輯設(shè)備上。例如,使用 encryptedvdc1 作為名稱。你還需要再次輸入密碼:
sudo cryptsetup luksOpen /dev/vdc1 encryptedvdc1
Enter passphrase for /dev/vdc1:
加密分區(qū)現(xiàn)在在 /dev/mapper/encryptedvdc1 中可用。
在加密的分區(qū)上創(chuàng)建一個 XFS 文件系統(tǒng):
sudo mkfs.xfs /dev/mapper/encryptedvdc1
創(chuàng)建一個掛載加密分區(qū)的目錄:
sudo mkdir /encrypted
使用 cryptsetup luksClose 命令鎖定分區(qū):
cryptsetup luksClose encryptedvdc1
使用 sudo 安裝 Clevis 軟件包:
sudo yum install clevis clevis-luks clevis-dracut -y
修改 /etc/crypttab,在啟動時打開加密卷:
sudo vim /etc/crypttab
增加以下一行:
encryptedvdc1 /dev/vdc1 none _netdev
修改 /etc/fstab,在重啟時或啟動時自動掛載加密卷:
sudo vim /etc/fstab
增加以下一行:
/dev/mapper/encryptedvdc1 encrypted xfs _netdev 1 2
在這個例子中,假設(shè) Tang 服務(wù)器的 IP 地址是 192.168.1.20。如果你喜歡,也可以使用主機(jī)名或域名。
運(yùn)行以下 clevis 命令:
sudo clevis bind luks -d /dev/vdc1 tang '{"url":"http://192.168.1.20"}'
The advertisement contains the following signing keys:
rwA2BAITfYLuyNiIeYUMBzkhk7M
Do you wish to trust these keys? [ynYN] Y
Enter existing LUKS password:
輸入 Y 接受 Tang 服務(wù)器的密鑰,并提供現(xiàn)有的 LUKS 密碼進(jìn)行初始設(shè)置。
通過 systemctl 啟用 clevis-luks-askpass.path,以防止非根分區(qū)被提示輸入密碼。
sudo systemctl enable clevis-luks-askpass.path
客戶端已經(jīng)安裝完畢?,F(xiàn)在,每當(dāng)你重啟服務(wù)器時,加密后的磁盤應(yīng)該會自動解密,并通過 Tang 服務(wù)器取回密鑰進(jìn)行掛載。
如果 Tang 服務(wù)器因為任何原因不可用,你需要手動提供密碼,才能解密和掛載分區(qū)。
Linux是一種免費(fèi)使用和自由傳播的類UNIX操作系統(tǒng),是一個基于POSIX的多用戶、多任務(wù)、支持多線程和多CPU的操作系統(tǒng),使用Linux能運(yùn)行主要的Unix工具軟件、應(yīng)用程序和網(wǎng)絡(luò)協(xié)議。
看完上述內(nèi)容,你們掌握如何自動解鎖Linux上的加密磁盤怎樣的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。