Hi,
following setup
node01
NIC1 => with public IP
NIC2 => connected to an internal 10G SWITCH
node02
NIC1 => with public IP
NIC2 => connected to an internal 10G SWITCH
/etc/network/interfaces
With this Setup I can't reach a client with is not on the same host.
Client1 on Node1 can ping Client2 on Node1
but not Client3 on Node2
A VLAN over the Public NIC works fine ... but it's not as fast as I would like to have...
Can anybody help me - what's missing ??
Thank you very much...
following setup
node01
NIC1 => with public IP
NIC2 => connected to an internal 10G SWITCH
node02
NIC1 => with public IP
NIC2 => connected to an internal 10G SWITCH
/etc/network/interfaces
Code:
#Public Interface
auto eno1
iface eno1 inet static
address 23.XX.XX.XX/26
gateway 23.XX.XX.XX
up route add -net 23.XX.XX.XX netmask 255.255.255.192 gw 23.XX.XX.XX dev eno1
#Private 10G Interface
auto ens21
iface ens21 inet static
address 10.2.99.2/24
mtu 1500
auto ens21.2000
iface ens21.2000 inet manual
auto vmbr2000
iface vmbr2000 inet manual
bridge-ports ens21.2000
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
With this Setup I can't reach a client with is not on the same host.
Client1 on Node1 can ping Client2 on Node1
but not Client3 on Node2
A VLAN over the Public NIC works fine ... but it's not as fast as I would like to have...
Can anybody help me - what's missing ??
Thank you very much...