diff --git a/README.md b/README.md index 54ad1f6..5f13daa 100644 --- a/README.md +++ b/README.md @@ -106,18 +106,25 @@ iface lo inet loopback # The primary network interface -allow-hotplug eth0 -iface eth0 inet dhcp +auto eth0 +iface eth0 inet manual auto eth1 -iface eth1 inet static +iface eth1 inet manual + +# Web connection +auto br-web +iface br-web inet static + bridge_ports eth1 + bridge_stp off + address 104.149.164.34 netmask 255.255.255.252 gateway 104.149.164.33 dns-nameservers 1.1.1.1 -iface eth1 inet6 static +iface br-web inet6 static address 2604:6600:0:48::2/64 gateway 2604:6600:0:48::1 ```