Skip to content

Config Files

Key host configuration files for proxfold. These are not included in vzdump backups and must be manually reconfigured after a fresh Proxmox install. See the Boot Drive Swap runbook for the full post-install procedure.


/etc/network/interfaces

auto lo
iface lo inet loopback

iface eno1 inet manual

auto vmbr0
iface vmbr0 inet static
        address 192.168.1.250/24
        gateway 192.168.1.1
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0

iface eno2 inet manual

iface eno3 inet manual

iface eno4 inet manual

source /etc/network/interfaces.d/*

/etc/hosts

127.0.0.1 localhost.localdomain localhost
192.168.1.250 proxfold.localdomain proxfold

/etc/resolv.conf

search localdomain
nameserver 192.168.1.1

/etc/exports

/stash 192.168.1.252(rw,sync,no_subtree_check,no_root_squash)

/etc/pve/storage.cfg

dir: local
        path /var/lib/vz
        content vztmpl,backup,iso

lvmthin: local-lvm
        thinpool data
        vgname pve
        content images,rootdir

Note

The nasbackup CIFS storage is not present here — it is added via pvesm command after install. See Storage for the command.