[SOLVED] Internet access suddenly stopped

cloudfather

Member
Dec 30, 2020
15
1
8
37
The internet access was working perfectly on the bridge network but suddendly today stopped working.
Firewall: off
/etc/network/interfaces

Bash:
auto lo
iface lo inet loopback

auto enp4s0
iface enp4s0 inet static
    address xxx/26 # realIP
    gateway xxx.1
    up ip route add  xxx/26 dev enp4s0 scope host

auto vmbr1
iface vmbr1 inet static
    address 10.10.10.1/24
    bridge-ports none
    bridge-stp off
    bridge-fd 0
    bridge-vlan-aware yes
    bridge-vids 2-4094
    bridge-maxwait 0
    post-up   echo 1 > /proc/sys/net/ipv4/ip_forward
    post-up   iptables -t nat -A POSTROUTING -s '10.10.10.0/24' -o enp4s0 -j MASQUERADE
    post-down iptables -t nat -D POSTROUTING -s '10.10.10.0/24' -o enp4s0 -j MASQUERADE

auto vmbr2
iface vmbr2 inet static
    address 192.168.1.1/24
    bridge-ports none
    bridge-stp off
    bridge-fd 0
    bridge-vlan-aware yes
    bridge-vids 2-4094

auto vmbr4
iface vmbr4 inet static
    address 192.168.100.1/24
    bridge-ports none
    bridge-stp off
    bridge-fd 0
    bridge-vlan-aware yes
 
Last edited:
hi,

The internet access was working perfectly on the bridge network but suddendly today stopped working.
can you describe the symptoms and your setup a bit more?
 
Thanks @oguz for the quick response.

This seems working now, do I need to allow any specific firewall connection to grant this access If I am using hetzner server?
 
seems to be dropped when I enable the external firewall and allow icmp, ssh and 8006 access only
do I need more roles to add?
 
this issue was solved by updating the Hetzner firewall
and here is the last update
 

Attachments

  • Screenshot 2021-01-28 at 20.20.32.png
    Screenshot 2021-01-28 at 20.20.32.png
    71.3 KB · Views: 8