Here is some more useful information:
When you need to access your disk with ZFS, you can not use the Linux rescue.
Simply boot the FreeBSD rescue disc and mount the Proxmox filesystem:
Code:
mkdir /tmp/root
zpool import -f -R /mnt/root rpool
After that do not forget to export, otherwise Promox will not be able to import again:
You can test your installation by booting the Linux 64 rescue and connect via VNC by:
Code:
qemu-system-x86_64 -vnc :0 -boot c -drive file=/dev/sda,cache=none -drive file=/dev/sdb,cache=none -m 4G
There is a FAQ about networking Proxmox from Hetzner. But this covers only either bridged or routed network. Also IPv6 must be split into several networks.
Here is my much simpler network setup which allows to:
- Run Linux guest with it's own IPv4 (routed) and own IPv6 (bridged) from same IPv6 network.
- Run Mikrotik RouterOS guest with DHCP (bridged, need to get MAC-Address via Option "Separate MAC anfordern").
The Promox server:
Code:
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth0 inet6 manual
auto vmbr0
iface vmbr0 inet static
address <Server-IP>
netmask 255.255.255.255
gateway <Server-Gateway>
pointopoint <Server-Gateway>
bridge_ports eth0
bridge_stp off
bridge_fd 0
up ip route add <Add-On IP1>/32 dev vmbr0
up ip route add <Add-On IP2>/32 dev vmbr0
up ip route add <Add-On IP3>/32 dev vmbr0
iface vmbr0 inet6 static
address <IPv6-Network>::2
netmask 64
gateway fe80::1
A Linux client:
Code:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto ens18
iface ens18 inet static
address <Add-On IP>
netmask 255.255.255.255
gateway <Server-IP>
pointopoint <Server-IP>
dns-nameservers 213.133.98.98 213.133.99.99 213.133.100.100
dns-search <My-Domain>
iface ens18 inet6 static
address <IPv6-Network>::4
netmask 64
gateway fe80::1
# dns-nameservers 2a01:4f8:0:a0a1::add:1010 2a01:4f8:0:a102::add:9999 2a01:4f8:0:a111::add:9898
# dns-search <My-Domain>