Had a look around here but still not sure of the answer - keep getting stuck :-(
Using Prox 6.
I have a 'real' server with an online provider which has an 'external' interface plus an 'internal' one so I can theoretically connect to another server I have in their space.
I can happily set the bridge interface for the external stuff but I just can't seem to set up the 'internal interface, usually stumbling at adding a gateway.
If I use the network configuration I get the dreaded:
I have tried adding it manually but nothing seems very happy.
The internal interface should be:
Address 10.90.44.13/26
GW 10.90.44.1
Tried setting up both a bridge to the second eth port, and direct to the second eth port.
I'd like to use their internal network to move some VMs about but this is proving to be a bit of a pain!
Found this sort of setting elsewhere in these forums:
cat /etc/network/interfaces
cat /etc/network/if-up.d/route
That give this:
route
I also note that the other box seems to have an internal IP:
Address 10.90.114.218/26
GW 10.90.114.193
Not quite sure how they are going to talk to each other!
Any suggestions appreciated.
Using Prox 6.
I have a 'real' server with an online provider which has an 'external' interface plus an 'internal' one so I can theoretically connect to another server I have in their space.
I can happily set the bridge interface for the external stuff but I just can't seem to set up the 'internal interface, usually stumbling at adding a gateway.
If I use the network configuration I get the dreaded:
Code:
Parameter verification failed. (400)
gateway: Default gateway already exists on interface 'vmbr0
I have tried adding it manually but nothing seems very happy.
The internal interface should be:
Address 10.90.44.13/26
GW 10.90.44.1
Tried setting up both a bridge to the second eth port, and direct to the second eth port.
I'd like to use their internal network to move some VMs about but this is proving to be a bit of a pain!
Found this sort of setting elsewhere in these forums:
cat /etc/network/interfaces
Code:
auto eno2
iface eno2 inet static
address 10.90.44.13
netmask 26
cat /etc/network/if-up.d/route
#!/bin/sh
route add -net 10.90.44.0/26 gw 10.90.44.1 dev eno2
That give this:
route
Code:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 111-154-222-1.r 0.0.0.0 UG 0 0 0 vmbr0
10.90.44.0 10.90.44.1 255.255.255.192 UG 0 0 0 eno2
10.90.44.0 0.0.0.0 255.255.255.192 U 0 0 0 eno2
111.154.222.0 0.0.0.0 255.255.255.0 U 0 0 0 vmbr0
I also note that the other box seems to have an internal IP:
Address 10.90.114.218/26
GW 10.90.114.193
Not quite sure how they are going to talk to each other!
Any suggestions appreciated.