Hi guys,
I have a server with 1 physical interface and 2 IPs. I'd like to use 1 bridge+NAT per public IP.
I use the following
Read more
I have a server with 1 physical interface and 2 IPs. I'd like to use 1 bridge+NAT per public IP.
I use the following
/etc/network/interface
Code:
# The primary network interface
auto eno1
iface eno1 inet static
address 193.161.118.14/24
gateway 193.161.118.1
# 2nd interface
auto eno1:0
iface eno1:0 inet static
address 193.161.118.25/24
# gateway 193.161.118.1
auto vmbr0
iface vmbr0 inet static
address 10.10.10.99/24...
Read more