tweaks...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2024-01-10 00:42:28 +03:00
parent 6ab2e2b4c6
commit 943a6149b9
3 changed files with 19 additions and 1 deletions

View File

@ -19,7 +19,7 @@ iface wan inet static
hostname $(hostname)
auto br0
iface br0 inet stattic
iface br0 inet static
pre-up echo 1 > /proc/sys/net/ipv4/ip_forward
pre-up brctl addbr br0

View File

@ -0,0 +1,18 @@
auto lo
iface lo inet loopback
iface lo inet6 loopback
auto admin
iface admin inet dhcp
hostname $(hostname)
auto lan
iface lan inet dhcp
hostname $(hostname)
auto wg0
iface wg0 inet static
pre-up echo 1 > /proc/sys/net/ipv4/ip_forward
pre-up wg-quick up wg0
hostname $(hostname)
post-down wg-quick down wg0