hetzner-arch-luks/README.md

245 lines
5.4 KiB
Markdown
Raw Normal View History

2020-04-16 20:14:12 +02:00
# Arch Linux with LUKS and btrfs on a hetzner server (DRAFT)
2020-04-15 12:32:29 +02:00
This guide should show you how to set up an System with the following specifications on an hetzner server:
* Arch Linux
* btrfs
* LUKS
## Guide
2020-04-15 13:40:10 +02:00
### 1. Configure and Install Image
2020-04-17 20:43:52 +02:00
#### 1.1 Login to Hetzner Rescue System
2020-04-15 13:40:10 +02:00
```bash
ssh root@your_server_ip
```
2020-04-17 20:43:52 +02:00
#### 1.2 Create the /autosetup
Execute
2020-04-15 13:40:10 +02:00
```bash
nano /autosetup
```
2020-04-17 20:43:52 +02:00
and save the following content into this file:
2020-04-15 12:32:29 +02:00
```bash
## Hetzner Online GmbH - installimage - config
DRIVE1 /dev/sda
DRIVE2 /dev/sdb
## SOFTWARE RAID:
## activate software RAID? < 0 | 1 >
SWRAID 1
## Choose the level for the software RAID < 0 | 1 | 10 >
SWRAIDLEVEL 1
## BOOTLOADER:
BOOTLOADER grub
## HOSTNAME:
HOSTNAME hetzner-arch-luks
#Adapt the hostname to your needs
## PARTITIONS / FILESYSTEMS:
PART /boot btrfs 512M
PART lvm vg0 all
LV vg0 swap swap swap 8G
LV vg0 root / btrfs 10G
## OPERATING SYSTEM IMAGE:
IMAGE /root/.oldroot/nfs/install/../images/archlinux-latest-64-minimal.tar.gz
```
2020-04-17 20:43:52 +02:00
#### 1.3 Install Image
2020-04-15 13:40:10 +02:00
```bash
installimage
```
2020-04-17 20:43:52 +02:00
#### 1.4 Restart
2020-04-15 13:40:10 +02:00
```bash
reboot
```
### 2. Setup System
2020-04-17 20:43:52 +02:00
#### 2.1 Login to server
2020-04-16 20:14:12 +02:00
2020-04-15 13:40:10 +02:00
```bash
2020-04-17 20:43:52 +02:00
ssh-keygen -f "$HOME/.ssh/known_hosts" -R your_server_ip
2020-04-15 13:40:10 +02:00
ssh root@your_server_ip
```
2020-04-17 20:43:52 +02:00
#### 2.2 Update the system
2020-04-15 13:40:10 +02:00
```bash
pacman -Syyu
```
2020-04-17 20:43:52 +02:00
#### 2.3 Install administration tools:
2020-04-15 13:40:10 +02:00
```bash
2020-04-17 18:52:26 +02:00
pacman -S nano
2020-04-15 13:40:10 +02:00
```
2020-04-17 20:43:52 +02:00
### 3. Prepare System for Unlocking via SSH
2020-04-15 13:40:10 +02:00
#### 3.1 Execute the following script
```bash
2020-04-17 18:52:26 +02:00
pacman -S busybox mkinitcpio-dropbear mkinitcpio-utils mkinitcpio-netconf
2020-04-16 22:34:01 +02:00
cp -v ~/.ssh/authorized_keys /etc/dropbear/root_key
2020-04-15 13:40:10 +02:00
```
2020-04-17 20:43:52 +02:00
#### 3.2 Replace line in **/etc/mkinitcpio.conf**
Old:
2020-04-16 20:14:12 +02:00
```
HOOKS=(base udev autodetect modconf block mdadm_udev lvm2 filesystems keyboard fsck)
```
2020-04-17 20:43:52 +02:00
New:
2020-04-16 20:14:12 +02:00
```
2020-04-17 18:52:26 +02:00
HOOKS=(base udev autodetect modconf block mdadm_udev lvm2 netconf dropbear encryptssh filesystems keyboard fsck)
2020-04-16 20:14:12 +02:00
```
2020-04-17 19:21:08 +02:00
> :warning: In the original example the initramfs get modified. Don't know if this is still necessary:
/etc/initramfs-tools/initramfs.conf<br>
2020-04-17 18:52:26 +02:00
Alt: BUSYBOX=auto <br>
Neu: BUSYBOX=y <br>
http://daemons-point.com/blog/2019/10/20/hetzner-verschluesselt/#etcinitramfs-toolsinitramfsconf-anpassen
2020-04-16 20:14:12 +02:00
### 4. Activate Encryption
#### 4.1
Activate the rescue system https://robot.your-server.de/server
2020-04-17 20:43:52 +02:00
#### 4.2 Reboot
2020-04-16 20:14:12 +02:00
```bash
reboot
```
2020-04-17 20:43:52 +02:00
#### 4.3 Login to the rescue system
2020-04-16 20:14:12 +02:00
```bash
2020-04-17 20:43:52 +02:00
ssh-keygen -f "$HOME/.ssh/known_hosts" -R your_server_ip
2020-04-16 20:14:12 +02:00
ssh root@your_server_ip
```
2020-04-15 13:40:10 +02:00
2020-04-17 20:43:52 +02:00
#### 4.4 Mount the "system"
2020-04-16 20:14:12 +02:00
```bash
vgscan -v
vgchange -a y
mount /dev/mapper/vg0-root /mnt
```
2020-04-17 20:43:52 +02:00
#### 4.5 Copy "system"
2020-04-16 20:14:12 +02:00
```bash
echo 0 >/proc/sys/dev/raid/speed_limit_max
mkdir /oldroot
2020-04-16 22:34:01 +02:00
cp -va /mnt/. /oldroot/.
2020-04-16 20:14:12 +02:00
echo 200000 >/proc/sys/dev/raid/speed_limit_max
```
2020-04-17 20:43:52 +02:00
#### 4.6 Unmount the "system"
2020-04-16 20:14:12 +02:00
```bash
umount /mnt
```
2020-04-15 13:40:10 +02:00
2020-04-17 20:43:52 +02:00
#### 4.7 Delete decrypted LVM-Volume-Group
2020-04-16 20:14:12 +02:00
```bash
2020-04-16 20:27:35 +02:00
vgremove vg0
2020-04-16 20:14:12 +02:00
```
2020-04-17 20:43:52 +02:00
#### 4.8 Check drive state
2020-04-16 20:14:12 +02:00
```bash
cat /proc/mdstat
```
2020-04-17 20:43:52 +02:00
#### 4.9 Encrypt MD1 by executing
2020-04-16 20:14:12 +02:00
```bash
cryptsetup --cipher aes-xts-plain64 --key-size 256 --hash sha256 --iter-time=10000 luksFormat /dev/md1
2020-04-16 22:34:01 +02:00
cryptsetup luksOpen /dev/md1 cryptroot
2020-04-16 20:14:12 +02:00
pvcreate /dev/mapper/cryptroot
vgcreate vg0 /dev/mapper/cryptroot
lvcreate -n swap -L8G vg0
lvcreate -n root -L10G vg0
mkfs.btrfs /dev/vg0/root
mkswap /dev/vg0/swap
```
2020-04-17 20:43:52 +02:00
#### 4.10 Mount encrypted
2020-04-16 20:14:12 +02:00
```bash
mount /dev/vg0/root /mnt
```
2020-04-17 20:43:52 +02:00
#### 4.12 Copy "system"
2020-04-16 20:14:12 +02:00
```bash
# Resync unterbrechen
echo 0 >/proc/sys/dev/raid/speed_limit_max
2020-04-16 22:34:01 +02:00
cp -av /oldroot/. /mnt/.
2020-04-16 20:14:12 +02:00
# Resync fortsetzen
echo 200000 >/proc/sys/dev/raid/speed_limit_max
```
2020-04-17 20:43:52 +02:00
#### 4.13 Integrate Finale Installation
2020-04-16 20:14:12 +02:00
```bash
mount /dev/md0 /mnt/boot
mount --bind /dev /mnt/dev
mount --bind /sys /mnt/sys
mount --bind /proc /mnt/proc
chroot /mnt
```
#### 4.14
```bash
echo "cryptroot /dev/md1 none luks" >> /etc/crypttab
```
2020-04-17 20:43:52 +02:00
#### 4.15 Create an initial ramdisk
2020-04-16 22:34:01 +02:00
```bash
2020-04-16 22:48:59 +02:00
mkinitcpio -p linux
2020-04-16 22:34:01 +02:00
```
2020-04-17 19:21:08 +02:00
2020-04-17 20:43:52 +02:00
### 5 Grub
#### 5.1 Install Grub
2020-04-17 18:52:26 +02:00
```bash
pacman -S grub
```
2020-04-17 20:43:52 +02:00
#### 5.2 Configure /etc/default/grub
2020-04-17 19:21:08 +02:00
> :warning: I'm not shure if the following is correct. Please check out this [link](https://wiki.archlinux.org/index.php/Dm-crypt/Specialties#Remote_unlocking_(hooks:_netconf,_dropbear,_tinyssh,_ppp)) . I appreciate feedback :two_hearts:
2020-04-17 20:43:52 +02:00
Edit /etc/default/grub and tell the Kernel about the cryptdevice and the mdraid, and netconf that we want dhcp:
2020-04-17 18:52:26 +02:00
```bash
GRUB_CMDLINE_LINUX="cryptdevice=/dev/md0:root ip=dhcp"
```
2020-04-17 20:43:52 +02:00
#### 5.3 Make and Install on Hard-drives
2020-04-17 18:52:26 +02:00
```bash
grub-mkconfig -o /boot/grub/grub.cfg
grub-install /dev/sda
grub-install /dev/sdb
```
2020-04-16 20:14:12 +02:00
2020-04-17 20:43:52 +02:00
#### 5.4 Restart System
2020-04-16 20:14:12 +02:00
```bash
exit
umount /mnt/boot /mnt/proc /mnt/sys /mnt/dev
umount /mnt
sync
#Neustart
reboot
```
2020-04-17 20:43:52 +02:00
### 6. Encryption Procedure
#### 6.1 Decrypt server
2020-04-17 19:21:08 +02:00
```bash
ssh -o UserKnownHostsFile=/dev/null root@your_server_ip
cryptroot-unlock
exit
```
2020-04-17 20:43:52 +02:00
#### 6.2 Login to server
2020-04-17 19:21:08 +02:00
```bash
ssh-keygen -f "$HOME/.ssh/known_hosts" -R your_server_ip
ssh root@your_server_ip
```
2020-04-17 20:43:52 +02:00
## 7.1. Debugging
### 7.2 Login to System from Rescue System
```bash
cryptsetup luksOpen /dev/md1 cryptroot
mount /dev/vg0/root /mnt
mount /dev/md0 /mnt/boot
mount --bind /dev /mnt/dev
mount --bind /sys /mnt/sys
mount --bind /proc /mnt/proc
chroot /mnt
```
2020-04-15 12:32:29 +02:00
## Sources
The code is adapted from the following guides:
* http://daemons-point.com/blog/2019/10/20/hetzner-verschluesselt/
* https://www.howtoforge.com/using-the-btrfs-filesystem-with-raid1-with-ubuntu-12.10-on-a-hetzner-server
2020-04-17 19:21:08 +02:00
* https://code.trafficking.agency/arch-linux-remote-unlock-root-volume-with-mdraid-and-dmcrypt.html
2020-04-16 20:14:12 +02:00
* https://wiki.archlinux.org/index.php/Dm-crypt/Specialties#Remote_unlocking_(hooks:_netconf,_dropbear,_tinyssh,_ppp)