I moved my HA install from a pi to using the HA OS running in KVM. The install is set to use bridge networking. The HA install has an IP that is handed out by my router.
I am able to curl
the IP from the host machine and receive the page, but I can’t access it from any other computer on my network. The iptables of the host are configured as below. Any ideas on what I am missing?
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
-A FORWARD -o br0 -j ACCEPT
-A FORWARD -i br0 -j ACCEPT
Edit: additionally, if I stop the iptables service then I still can’t get to it. Is there a way to make sure I have the bridge setup right? I was assuming that because it is getting the IP that everything is fine, but maybe not. I created the bridge using netplan
GNU nano 6.2 /etc/netplan/00-installer-config.yaml *
# This is the network config written by 'subiquity'
network:
ethernets:
enp0s31f6:
dhcp4: no
bridges:
br0:
dhcp4: true
interfaces:
- enp0s31f6
parameters:
stp: true
version: 2