I added second network card to 2 proxmox nodes. I wanted to use a second separate network for some special needs but i have this strange thing. Keep in mind that for now all 4 cards end up on same switch / no VLANs
I am running a nmap to find unknown devices and it shows the mac from the wrong card. For example
/etc/network/interfaces :
This node is clean install v8 but is happening on the other node too.
I am running a nmap to find unknown devices and it shows the mac from the wrong card. For example
Code:
Nmap scan report for fire (192.168.7.202)
Host is up (0.00028s latency).
PORT STATE SERVICE
22/tcp open ssh
MAC Address: xxx:FA:1A (Unknown)
/etc/network/interfaces :
Code:
auto lo
iface lo inet loopback
iface enp1s0 inet manual
iface enp3s0 inet static
address 192.168.50.202/24
hwaddress xxx:fa:1a <----- this card / mac address should not be detected up in nmap / and is for 50.202 not 7.202
auto vmbr0
iface vmbr0 inet static
address 192.168.7.202/24
gateway xxxxxx
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
hwaddress xxx:FA:19 <--- sometimes this one is shown for 7.202
This node is clean install v8 but is happening on the other node too.