Hey,
Been trying for a couple of days now to troubleshoot my issue without any luck.
There seems that certain VMs are not getting correct IP addressing, but rather 192.0.0.254/24 range that isn't defined anywhere in my configs. I have absolutely no idea why this happens. Will Share as much as possible to see if someone spots the issue or has something insight into how to troubleshoot this. It's only ever two ISOs that messing with me atm.
Correct IP range 192.0.2.0/24
Wrong IP range 192.0.0.254/24
Interfaces:
Been trying for a couple of days now to troubleshoot my issue without any luck.
There seems that certain VMs are not getting correct IP addressing, but rather 192.0.0.254/24 range that isn't defined anywhere in my configs. I have absolutely no idea why this happens. Will Share as much as possible to see if someone spots the issue or has something insight into how to troubleshoot this. It's only ever two ISOs that messing with me atm.
Correct IP range 192.0.2.0/24
Wrong IP range 192.0.0.254/24
Interfaces:
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet static
address 192.168.1.100/24
gateway 192.168.1.1
auto vmbr1000
iface vmbr1000 inet static
address 192.0.2.254/24
bridge-ports none
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up iptables -t nat -A POSTROUTING -s '192.0.2.254/24' -o eno1 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '192.0.2.254/24' -o eno1 -j MASQUERADE
auto vmbr1002
iface vmbr1002 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
post-up ip route add 10.2.0.0/16 via 192.0.2.102
post-down ip route del 10.2.0.0/16 via 192.0.2.102
[B] DNSMASQ: [/B]
[CODE]server=192.0.2.254
interface=vmbr1000
dhcp-range=192.0.2.50,192.0.2.100,255.255.255.0,5m
dhcp-option=vmbr1000,3,192.0.2.254
dhcp-option=vmbr1000,6,192.0.2.254
Service Running.
[ATTACH type="full" width="581px" size="1062x538"]91290[/ATTACH]
Tested on Hedgehog ISO that doesnt work
[ATTACH type="full" width="575px" size="593x221"]91291[/ATTACH]
Tested on a debian 12 vm that works.
[ATTACH type="full" size="572x109"]91289[/ATTACH]