Trying to setup pfSense on Proxmox by following the guide from netgate but I can't access the VM host via IP unless I comment out the 1st Linux Bridge as shown below.
Any suggestions?? Once I get pfSense working for a few days I do plan to buy an Intel PCI-E dual gigabit ethernet card but would prefer to prove this will work.
Code:
[INDENT]auto lo
iface lo inet loopback
auto eno1
iface eno1 inet static
address 192.168.1.52
netmask 255.255.255.0
gateway 192.168.1.1
auto eno2
iface eno2 inet manual
#auto vmbr1
#iface vmbr1 inet manual
# bridge-ports eno1
# bridge-stp off
# bridge-fd 0
auto vmbr2
[INDENT]iface vmbr2 inet manual
bridge-ports eno2
bridge-stp off
bridge-fd 0[/INDENT][/INDENT]
Yes, the box has dual Ethernet
Code:
root@ML10:~# dmesg | grep eth
[ 0.955459] tg3 0000:03:00.0 eth0: Tigon3 [partno(N/A) rev 5720000] (PCI Express) MAC address 30:8d:99:cc:96:c0
[ 0.955461] tg3 0000:03:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 0.955462] tg3 0000:03:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[ 0.955463] tg3 0000:03:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[ 0.975031] tg3 0000:03:00.1 eth1: Tigon3 [partno(N/A) rev 5720000] (PCI Express) MAC address 30:8d:99:cc:96:c1
[ 0.975033] tg3 0000:03:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 0.975034] tg3 0000:03:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[ 0.975035] tg3 0000:03:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[ 0.975744] tg3 0000:03:00.1 eno2: renamed from eth1
[ 0.992198] tg3 0000:03:00.0 eno1: renamed from eth0
Any suggestions?? Once I get pfSense working for a few days I do plan to buy an Intel PCI-E dual gigabit ethernet card but would prefer to prove this will work.