The internet access was working perfectly on the bridge network but suddendly today stopped working.
Firewall: off
/etc/network/interfaces
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: