Recent content by old-hell

  1. O

    Separate Network Interfaces

    I tried Subnetmask 255.255.255.255 and iface /32 but thats not working. now I dont have a connection using ssh to the server. because the subnetmask means only ie ip address 12 is allowed to connect to the server.
  2. O

    Separate Network Interfaces

    default via 10.62.57.1 dev enp1s1f0 onlink 10.62.57.0/24 dev enp1s1f1 proto kernel scope link src 10.62.57.13 10.62.57.0/24 dev enp1s2f1 proto kernel scope link src 10.62.57.15 10.62.57.0/24 dev enp1s2f0 proto kernel scope link src 10.62.57.14 10.62.57.0/24 dev enp1s1f0 proto...
  3. O

    Separate Network Interfaces

    I tried this: auto eth0 iface eth0 inet static address 10.62.57.12 netmask 255.255.255.0 gateway 10.62.57.1 dns-nameservers 10.62.60.13 auto eth1 iface eth1 inet static address 10.62.57.13 netmask 255.255.255.0 ip route add 10.62.57.13/32 dev eth1 auto eth2 iface eth2 inet static address...
  4. O

    Separate Network Interfaces

    Tried this, but it's not working :-(
  5. O

    Separate Network Interfaces

    Do you mean, I can do something like this? auto eth0 iface eth0 inet static address 10.62.57.12 netmask 255.255.255.0 gateway 10.62.57.1 dns-nameservers 10.62.60.13 auto eth1 iface eth1 inet static address 10.62.57.13 netmask 255.255.255.0 ip route add 10.62.57.13/32 via 10.62.57.1 dev eth1...
  6. O

    Separate Network Interfaces

    Thank you for the replies. This is how it works now: Incoming Traffic Outgoing Traffic -----eth0-------- ---------eth0-------- ------eth1-------- ------eth2-------- ------eth3-------- This is how it should work...
  7. O

    Separate Network Interfaces

    how can I do that? I'm using the same subnet only the IP is different.
  8. O

    Separate Network Interfaces

    Is there a way to separate the network interfaces? problem: I'm having a bunch of devices that need to be updated. To make a kind of load balancing, I want the devices to connect to 4 ethernet ports (bonding is not possible cause the switch is not managed by me). I'm using bind to make a...