Using pbs: big thanks, sync, networks

sergiovier

Active Member
Dec 15, 2016
3
1
43
Hi! I'm new to PBS (learning from practice&error). First, thanks this product is helping us to manage in a very professional manner our backups :cool:

We have 2 PBS (called main with pbs 2.0, called remote with pbs 2.1), we found some details:

1) at main, we add "comment" to each backup in order to identify/organize/check them. This comment is not replicated at remote with "sync" tasks

2) in remote, we added a new pciex card in order to expand network conectivity. Card is detected, at pbs we found this problem:

Bash:
root@remote:~# proxmox-backup-manager network list

Error: line 10: inet configuration method already set.

Thanks again for this product! Any help is welcome :)
 
Please provide the network configuration of the remote host: cat /etc/network/interfaces
 
Bash:
root@remote:~# cat /etc/network/interfaces
auto lo
iface lo inet loopback

auto enp14s0
iface eno1 inet static
        address private-ip/24
        gateway private-gw

iface eno1 inet manual
root@remote:~#
 
The issue is that you've defined `eno1` twice:
iface eno1 inet static
iface eno1 inet manual
The first one should probably enp14s0, right?
 
  • Like
Reactions: Moayad