Wireguard on Proxmox

Wireguard on proxmox: https://securityboulevard.com/2019/04/howto-install-wireguard-in-an-unprivileged-container-proxmox/ https://www.digitalocean.com/community/tutorials/how-to-create-a-point-to-point-vpn-with-wireguard-on-ubuntu-16-04 https://wiki.archlinux.org/index.php/WireGuard Add Wireguard debian unstable source echo “deb http://deb.debian.org/debian/ unstable main” > /etc/apt/sources.list.d/unstable-wireguard.list printf ‘Package: *\nPin: release a=unstable\nPin-Priority: 90\n’ > /etc/apt/preferences.d/limit-unstable Update, install wireguard and kernel headers apt update apt install wireguard pve-headers Run DKMS autoinstall, probe kernel module, and add to conf file dkms autoinstall modprobe wireguard echo “wireguard” … Continue reading “Wireguard on Proxmox”

Proxmox PCIe Passthrough

Intel CPU Edit grub nano /etc/default/grub Change this: GRUB_CMDLINE_LINUX_DEFAULT=”quiet” To this: GRUB_CMDLINE_LINUX_DEFAULT=”quiet intel_iommu=on”   Add required kernel modules nano /etc/modules vfio vfio_iommu_type1 vfio_pci vfio_virqfd   IOMMU interrupt remapping 1) Run the “dmesg | grep ecap” command. 2) On the IOMMU lines, the hexadecimal value after “ecap” indicates whether interrupt remapping is supported. If the last character of … Continue reading “Proxmox PCIe Passthrough”