Hello
I'm finishing migration from vCenter Vmware 7.0 to Cluster Proxmox 8.4 but i have some questions about pfsense.
I'm using it with CARP (HA Master / Backup), on vmware i had to change some policies (Promiscuous Mode, Mac Adress Change).
Does this type of configuration exist on proxmox? is it required?
All my nodes have 2x25Gbit network card (Broadcom), i create a bond and my vmbr0 i VLAN Aware :
I've found messages on this forum which explain that it's not necessarily necessary to activate promiscuous mode on the bridge interface.
Thanks all,
nsc
I'm finishing migration from vCenter Vmware 7.0 to Cluster Proxmox 8.4 but i have some questions about pfsense.
I'm using it with CARP (HA Master / Backup), on vmware i had to change some policies (Promiscuous Mode, Mac Adress Change).
Does this type of configuration exist on proxmox? is it required?
All my nodes have 2x25Gbit network card (Broadcom), i create a bond and my vmbr0 i VLAN Aware :
Code:
auto lo
iface lo inet loopback
auto bond0
iface bond0 inet
bond-mode 802.3ad
bond-slaves enp2s0f0np0 enp2s0f1np1
bond-lacp-rate fast
bond-xmit_hash_policy layer3+4
mtu 9000
pre-up /sbin/ethtool --offload enp2s0f0np0 generic-receive-offload off
pre-up /sbin/ethtool --offload enp2s0f1np1 generic-receive-offload off
auto vmbr0
iface vmbr0 inet static
address 10.0.0.XX/24
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
mtu 9000
auto mgmt
iface mgmt inet static
address 192.168.100.XX/24
gateway 192.168.100.1
mtu 1500
vlan-id 100
vlan-raw-device vmbr0
auto nfs
iface nfs inet static
address 192.168.99.XX/24
mtu 9000
vlan-id 99
vlan-raw-device vmbr0
auto proxmoxCluster
iface proxmoxCluster inet static
address 192.168.97.XX/24
mtu 9000
vlan-id 97
vlan-raw-device vmbr0
I've found messages on this forum which explain that it's not necessarily necessary to activate promiscuous mode on the bridge interface.
Thanks all,
nsc