Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. user@server1:~$ cat /proc/net/bonding/bond0
  2. Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
  3.  
  4. Bonding Mode: fault-tolerance (active-backup)
  5. Primary Slave: eth0 (primary_reselect always)
  6. Currently Active Slave: eth0
  7. MII Status: up
  8. MII Polling Interval (ms): 100
  9. Up Delay (ms): 800
  10. Down Delay (ms): 400
  11.  
  12. Slave Interface: eth0
  13. MII Status: up
  14. Speed: 1000 Mbps
  15. Duplex: full
  16. Link Failure Count: 0
  17. Permanent HW addr: 84:2b:2b:f9:73:cf
  18. Slave queue ID: 0
  19.  
  20. Slave Interface: eth1
  21. MII Status: up
  22. Speed: 1000 Mbps
  23. Duplex: full
  24. Link Failure Count: 0
  25. Permanent HW addr: 84:2b:2b:f9:73:d1
  26. Slave queue ID: 0
  27.  
  28. # This file describes the network interfaces available on your system
  29. # and how to activate them. For more information, see interfaces(5).
  30.  
  31. source /etc/network/interfaces.d/*
  32.  
  33. # The loopback network interface
  34. auto lo
  35. iface lo inet loopback
  36.  
  37. # The primary network interface
  38. #allow-hotplug eth0
  39. #public bond
  40. auto bond0
  41. auto bond1
  42.  
  43. iface bond0 inet static
  44. address -
  45. netmask -
  46. gateway -
  47. bond-mode 1
  48. bond-primary eth0
  49. bond-slaves eth0 eth1
  50. bond-miimon 100
  51. bond-downdelay 400
  52. bond-updelay 800
  53.  
  54. iface bond1 inet static
  55. address -
  56. netmask 255.255.255.0
  57. bond-mode 1
  58. bond-primary eth2
  59. bond-slaves eth2 eth3
  60. bond-miimon 100
  61. bond-downdelay 400
  62. bond-updelay 800
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement