Dear Team,
Im trying to setup local private network, currently I have 2 servers , each with 1gbps NIC and link up with lan cable. I do have a public network for each server
I have no issues in setting up public network and link them using
server 1
I have created vmbr0 as Linux bridge, bridge port is eth0 which I have set as public network
I have left eth0 as blank
I have created eth1 as local private network which is 10.10.10.35/29
cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet manual
auto eth1
iface eth1 inet static
address 10.10.10.35/29
auto vmbr0
iface vmbr0 inet static
address 169.231.43.35/29
gateway 169.231.43.33
bridge-ports eth0
bridge-stp off
bridge-fd 0
===
server 2
I have created vmbr0 as Linux bridge, bridge port is eno1 which I have set as public network
I have left eno1 as blank
I have created eno2 as local private network which is 10.10.10.139/29
cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eno1 inet manual
auto eno2
iface eno2 inet static
address 10.10.10.139/29
auto vmbr0
iface vmbr0 inet static
address 169.231.43.139/29
gateway 169.231.43.137
bridge-ports eno1
bridge-stp off
bridge-fd 0
is that the correct way to set up both public and private network?
Im trying to setup local private network, currently I have 2 servers , each with 1gbps NIC and link up with lan cable. I do have a public network for each server
I have no issues in setting up public network and link them using
server 1
I have created vmbr0 as Linux bridge, bridge port is eth0 which I have set as public network
I have left eth0 as blank
I have created eth1 as local private network which is 10.10.10.35/29
cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet manual
auto eth1
iface eth1 inet static
address 10.10.10.35/29
auto vmbr0
iface vmbr0 inet static
address 169.231.43.35/29
gateway 169.231.43.33
bridge-ports eth0
bridge-stp off
bridge-fd 0
===
server 2
I have created vmbr0 as Linux bridge, bridge port is eno1 which I have set as public network
I have left eno1 as blank
I have created eno2 as local private network which is 10.10.10.139/29
cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eno1 inet manual
auto eno2
iface eno2 inet static
address 10.10.10.139/29
auto vmbr0
iface vmbr0 inet static
address 169.231.43.139/29
gateway 169.231.43.137
bridge-ports eno1
bridge-stp off
bridge-fd 0
is that the correct way to set up both public and private network?