@mitzayapa said:
This is what i should have then ?
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto em1
iface em1 inet manual
bond-master bond0
bond-primary em1
auto p255p1
iface p255p1 inet manual
bond-master bond0
auto bond0
iface bond0 inet static
bond-slaves em1 p255p1
bond-mode 2
bond-miimon 100
address 192.168.137.51
netmask 255.255.255.0
gateway 192.168.137.1
It’s seem to be good, it’s not necessary to configure your p255p1 and em1 interfaces :
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
#auto em1
#iface em1 inet manual
# bond-master bond0
# bond-primary em1
#auto p255p1
#iface p255p1 inet manual
# bond-master bond0
auto bond0
iface bond0 inet static
bond-slaves em1 p255p1
bond-mode 2
bond-miimon 100
address 192.168.137.51
netmask 255.255.255.0
gateway 192.168.137.1