LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices


Reply
  Search this Thread
Old 05-08-2016, 06:32 PM   #1
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Rep: Reputation: 0
Debian server 8 nic bonding help


good evening

im still pretty new to the linux world and i have setup a debian 8 server in my home.
i have a cisco switch setup with 6 ports with LACP.
i have set up NIC bonding on the debian server using mode 4 to coincide with my cisco switch and for some weird reason when i perform this command

cat /proc/net/bonding/bond0

output

Bonding mode: Load Balancing (round-robin)
MII Status: up MII Polling Interval (ms):100

i know i set this up as mode 4 for lacp

just wondering if anyone else has come across this issue and how they resolved it as im not sure whether it actually using mode 4 or round robin

cheers

mati
 
Old 05-09-2016, 11:35 AM   #2
lazydog
Senior Member
 
Registered: Dec 2003
Location: The Key Stone State
Distribution: CentOS Sabayon and now Gentoo
Posts: 1,249
Blog Entries: 3

Rep: Reputation: 194Reputation: 194
What does your bond interface config look like? Do you have "BONDING_OPTS=" set?
 
Old 05-09-2016, 05:01 PM   #3
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
my /etc/network/interfaces looks like this:

# This file describes the network interfaces available pn you system
# and how to activate them. For more information, see interfaces (5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# eth0 is manually configured, and slave to the "bond0" bonded nic
auto eth0
iface eth0 inet manual
bond-master bond0
bond #-primary = eth0

auto eth1
iface eth1 inet manual
bond-master bond 0

auto eth2
iface eth2 inet manual
bond-master bond 0

auto eth3
iface eth3 inet manual
bond-master bond 0

auto eth4
iface eth4 inet manual
bond-master bond 0

auto eth5
iface eth5 inet manual
bond-master bond 0

#The bonded inteface
auto bond 0
iface bond 0 inet static
address 192.168.0.25
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8
bond-mode 4
bond-primary eth0
bond- miimon 100
bond-slaves none
 
Old 05-09-2016, 05:02 PM   #4
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lazydog View Post
What does your bond interface config look like? Do you have "BONDING_OPTS=" set?
my /etc/network/interfaces looks like this:

# This file describes the network interfaces available pn you system
# and how to activate them. For more information, see interfaces (5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# eth0 is manually configured, and slave to the "bond0" bonded nic
auto eth0
iface eth0 inet manual
bond-master bond0
bond-primary = eth0

auto eth1
iface eth1 inet manual
bond-master bond 0

auto eth2
iface eth2 inet manual
bond-master bond 0

auto eth3
iface eth3 inet manual
bond-master bond 0

auto eth4
iface eth4 inet manual
bond-master bond 0

auto eth5
iface eth5 inet manual
bond-master bond 0

#The bonded inteface
auto bond 0
iface bond 0 inet static
address 192.168.0.25
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8
bond-mode 4
bond-primary eth0
bond-miimon 100
bond-slaves none

also seems to be a bit slow for some reason i am connected to the server via ssh and its lagging when copying large dumps of data over to the server

Last edited by mati-92; 05-09-2016 at 05:47 PM.
 
Old 05-10-2016, 07:46 AM   #5
lazydog
Senior Member
 
Registered: Dec 2003
Location: The Key Stone State
Distribution: CentOS Sabayon and now Gentoo
Posts: 1,249
Blog Entries: 3

Rep: Reputation: 194Reputation: 194
Quote:
Originally Posted by mati-92 View Post
my /etc/network/interfaces looks like this:

# eth0 is manually configured, and slave to the "bond0" bonded nic
auto eth0
iface eth0 inet manual
bond-master bond0
bond-primary = eth0

auto eth1
iface eth1 inet manual
bond-master bond 0
Change your setup from "bond 0" to "bond0"

Quote:
#The bonded inteface
auto bond 0
iface bond 0 inet static
address 192.168.0.25
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8
bond-mode 4
bond-primary eth0
bond-miimon 100
bond-slaves none
Shouldn't bond-slave read as follows:
Code:
bond-slaves eth0 eth1 eth2 eth3 eth4 eth5
Quote:
also seems to be a bit slow for some reason i am connected to the server via ssh and its lagging when copying large dumps of data over to the server
Not sure if you are aware of the fact that any conversation will only use one (1) interface for communications. Doesn't matter how many interfaces you bond together.
 
Old 05-10-2016, 04:07 PM   #6
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lazydog View Post
Change your setup from "bond 0" to "bond0"



Shouldn't bond-slave read as follows:
Code:
bond-slaves eth0 eth1 eth2 eth3 eth4 eth5


Not sure if you are aware of the fact that any conversation will only use one (1) interface for communications. Doesn't matter how many interfaces you bond together.
thanks Robert i have made the changes that you have suggested. as for being aware of the information being sent and received from one card i didn't know that.
 
Old 05-11-2016, 12:35 PM   #7
dgorack
LQ Newbie
 
Registered: May 2015
Distribution: CentOS 6/7
Posts: 6

Rep: Reputation: Disabled
Quote:
Originally Posted by lazydog View Post
Change your setup from "bond 0" to "bond0"



Shouldn't bond-slave read as follows:
Code:
bond-slaves eth0 eth1 eth2 eth3 eth4 eth5


Not sure if you are aware of the fact that any conversation will only use one (1) interface for communications. Doesn't matter how many interfaces you bond together.
Not sure the above changes fixed OP's issue but just to add more info: "bond-slaves none" is fine because he has "bond-master bond 0" (which should be "bond-master bond0") under the slave interface definitions. I find the configuration more flexible when done like that.

On Debian (and debian based distros), for LACP, /proc/net/bonding/bond0 should display:
Code:
Bonding Mode: IEEE 802.3ad Dynamic link aggregation
...
For reference and if it may help, I generally setup lacp as follows:

/etc/network/interfaces
Code:
auto eth0
iface eth0 inet manual
bond-master bond0

auto eth1
iface eth1 inet manual
bond-master bond0

auto bond0
iface bond0 inet static
address 192.168.0.25
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 8.8.8.8 8.8.4.4
dns-search optional.com
bond-mode 802.3ad
bond-miimon 100
bond-lacp-rate 1
bond-slaves none
You can also set the bonding options like:

/etc/modprobe.d/bonding.conf
Code:
bonding mode=4 miimon=100 lacp_rate=1
On the switch end and for cisco switches in particular for LACP your "channel-group" config line under all your member interfaces should end in "mode active".
 
Old 05-11-2016, 12:57 PM   #8
lazydog
Senior Member
 
Registered: Dec 2003
Location: The Key Stone State
Distribution: CentOS Sabayon and now Gentoo
Posts: 1,249
Blog Entries: 3

Rep: Reputation: 194Reputation: 194
Thnx for your feed back dgorack. There are many ways to do things in Linux and I don't mind learning a new way at all.
 
Old 05-11-2016, 01:42 PM   #9
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by dgorack View Post
Not sure the above changes fixed OP's issue but just to add more info: "bond-slaves none" is fine because he has "bond-master bond 0" (which should be "bond-master bond0") under the slave interface definitions. I find the configuration more flexible when done like that.

On Debian (and debian based distros), for LACP, /proc/net/bonding/bond0 should display:
Code:
Bonding Mode: IEEE 802.3ad Dynamic link aggregation
...
For reference and if it may help, I generally setup lacp as follows:

/etc/network/interfaces
Code:
auto eth0
iface eth0 inet manual
bond-master bond0

auto eth1
iface eth1 inet manual
bond-master bond0

auto bond0
iface bond0 inet static
address 192.168.0.25
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 8.8.8.8 8.8.4.4
dns-search optional.com
bond-mode 802.3ad
bond-miimon 100
bond-lacp-rate 1
bond-slaves none
You can also set the bonding options like:

/etc/modprobe.d/bonding.conf
Code:
bonding mode=4 miimon=100 lacp_rate=1
On the switch end and for cisco switches in particular for LACP your "channel-group" config line under all your member interfaces should end in "mode active".
This is so weird i have made the changes that you suggested and at the present moment i am copying stuff over to the linux server.
i have logged into my cisco switch to check my configuration to make sure that my channel-group is set to active and it is. so i then did a show ip int br and it says that it is down but i have lights on flashing to indicate that it is communicating and my files are on the server. so strange
mati
 
Old 05-11-2016, 02:12 PM   #10
dgorack
LQ Newbie
 
Registered: May 2015
Distribution: CentOS 6/7
Posts: 6

Rep: Reputation: Disabled
Quote:
Originally Posted by mati-92 View Post
This is so weird i have made the changes that you suggested and at the present moment i am copying stuff over to the linux server.
i have logged into my cisco switch to check my configuration to make sure that my channel-group is set to active and it is. so i then did a show ip int br and it says that it is down but i have lights on flashing to indicate that it is communicating and my files are on the server. so strange
mati
Provide us a little more info and maybe we can help. Let's make sure LACP is properly configured. I assume you're restarting your networking/interfaces after you've made config changes.

On your server

Post your updated configuration (/etc/network/interfaces and anywhere else you set your network/lacp options)

Post the new output of /proc/net/bonding/bond0


On your switch

Post the your relevant interface and channel-group config or if you can link to a pastebin of your sanitized "sh run"

Post the output of "sh lacp neighbor" and "sh lacp internal"

Post the output of "sh int port-channel n" where n is your port-channel number
 
Old 05-11-2016, 02:45 PM   #11
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by dgorack View Post
Provide us a little more info and maybe we can help. Let's make sure LACP is properly configured. I assume you're restarting your networking/interfaces after you've made config changes.

On your server

Post your updated configuration (/etc/network/interfaces and anywhere else you set your network/lacp options)

Post the new output of /proc/net/bonding/bond0


On your switch

Post the your relevant interface and channel-group config or if you can link to a pastebin of your sanitized "sh run"

Post the output of "sh lacp neighbor" and "sh lacp internal"

Post the output of "sh int port-channel n" where n is your port-channel number
please see the images attached i grabbed as much information as i could.
Attached Thumbnails
Click image for larger version

Name:	bonding output.png
Views:	134
Size:	36.6 KB
ID:	21759   Click image for larger version

Name:	interface file.png
Views:	107
Size:	30.2 KB
ID:	21760   Click image for larger version

Name:	lacp neighbour and internal.png
Views:	98
Size:	17.2 KB
ID:	21761   Click image for larger version

Name:	show interface port channel.png
Views:	104
Size:	55.7 KB
ID:	21762  
 
Old 05-11-2016, 07:33 PM   #12
dgorack
LQ Newbie
 
Registered: May 2015
Distribution: CentOS 6/7
Posts: 6

Rep: Reputation: Disabled
Quote:
Originally Posted by mati-92 View Post
please see the images attached i grabbed as much information as i could.
It would really be helpful if you'd post the output instead of attaching screen grabs. I think it's just good etiquette and it also my life easier in trying to help you (copy/paste).

Your output of /proc/net/bonding/bond0 shows link failures which is probably why it's falling back to round-robin. Like @lazydog said, there are a number of way to do this but I can show you the way I use. Your switch output also shows the each port in your channel-group in state "indep" which mean it failed to bond lacp.

First of all let's clean up your /etc/network/interfaces file.

Check for typos as I'm typing this manually, you know, because you weren't bothered to copy/paste here.
Code:
...

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet manual
bond-master bond0

auto eth1
iface eth1 inet manual
bond-master bond0

auto eth2
iface eth2 inet manual
bond-master bond0

auto eth3
iface eth3 inet manual
bond-master bond0

auto eth4
iface eth4 inet manual
bond-master bond0

auto eth5
iface eth5 inet manual
bond-master bond0

auto bond0
iface bond0 inet static
address 192.168.0.25
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 8.8.8.8 8.8.4.4
bond-mode 802.3ad
bond-miimon 100
bond-lacp-rate 1
bond-slaves none
Also make sure the bonding module is loaded
Code:
lsmod | grep bond
I can't help you with your switch because you didn't post your running-config, post that in a pastebin or in code blocks, no screen grabs please.
 
Old 05-12-2016, 03:48 AM   #13
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by dgorack View Post
It would really be helpful if you'd post the output instead of attaching screen grabs. I think it's just good etiquette and it also my life easier in trying to help you (copy/paste).

Your output of /proc/net/bonding/bond0 shows link failures which is probably why it's falling back to round-robin. Like @lazydog said, there are a number of way to do this but I can show you the way I use. Your switch output also shows the each port in your channel-group in state "indep" which mean it failed to bond lacp.

First of all let's clean up your /etc/network/interfaces file.

Check for typos as I'm typing this manually, you know, because you weren't bothered to copy/paste here.
Code:
...

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet manual
bond-master bond0

auto eth1
iface eth1 inet manual
bond-master bond0

auto eth2
iface eth2 inet manual
bond-master bond0

auto eth3
iface eth3 inet manual
bond-master bond0

auto eth4
iface eth4 inet manual
bond-master bond0

auto eth5
iface eth5 inet manual
bond-master bond0

auto bond0
iface bond0 inet static
address 192.168.0.25
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 8.8.8.8 8.8.4.4
bond-mode 802.3ad
bond-miimon 100
bond-lacp-rate 1
bond-slaves none
Also make sure the bonding module is loaded
Code:
lsmod | grep bond
I can't help you with your switch because you didn't post your running-config, post that in a pastebin or in code blocks, no screen grabs please.
Sorry i wasnt sure how to copy from putty. I hand typed the previous post i thought it would of been easier. Sorry again i shall copy and paste everything in now.
 
Old 05-12-2016, 04:00 AM   #14
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
Code:
***********************************************
UNAUTHORISED ACCESS
***********************************************

LoftR12950G>en
Password:
LoftR12950G#show run
Building configuration...

Current configuration : 3265 bytes
!
version 12.1
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname LoftR12950G
!
enable secret 5 
enable password 7 
!
username mati secret 5 ip subnet-zero
!
no ip domain-lookup
ip domain-name bennetthome.com
ip ssh time-out 120
ip ssh authentication-retries 3
ip ssh version 2
!
spanning-tree mode pvst
no spanning-tree optimize bpdu transmission
spanning-tree extend system-id
!
!
!
!
interface Port-channel1
 switchport mode access
 flowcontrol send off
!
interface FastEthernet0/1
 switchport mode access
!
interface FastEthernet0/2
 switchport mode access
!
interface FastEthernet0/3
 switchport mode access
 shutdown
!
interface FastEthernet0/4
 switchport mode access
!
interface FastEthernet0/5
 switchport mode access
 shutdown
!
interface FastEthernet0/6
 switchport mode access
 shutdown
!
interface FastEthernet0/7
 switchport mode access
 shutdown
!
interface FastEthernet0/8
 switchport mode access
 shutdown
!
interface FastEthernet0/9
 switchport mode access
 shutdown
!
interface FastEthernet0/10
 switchport mode access
 shutdown
!
interface FastEthernet0/11
 switchport mode access
 shutdown
!
interface FastEthernet0/12
 switchport mode access
 shutdown
!
interface FastEthernet0/13
 switchport mode trunk
 shutdown
!
interface FastEthernet0/14
 description trunk port to second switch
 switchport trunk allowed vlan 1
 switchport mode trunk
 switchport nonegotiate
 shutdown
!
interface FastEthernet0/15
 switchport mode access
 shutdown
!
interface FastEthernet0/16
 switchport mode access
 shutdown
!
interface FastEthernet0/17
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/18
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/19
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/20
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/21
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/22
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/23
 description Server ports
 switchport mode access
!
interface FastEthernet0/24
 switchport mode access
!
interface GigabitEthernet0/1
 shutdown
!
interface GigabitEthernet0/2
 shutdown
!
interface Vlan1
 ip address 192.168.0.150 255.255.255.0
 no ip route-cache
!
interface Vlan20
 no ip address
 no ip route-cache
 shutdown
!
interface Vlan50
 no ip address
 no ip route-cache
 shutdown
!
ip default-gateway 192.168.0.1
ip http server
banner motd ^C
***********************************************
UNAUTHORISED ACCESS
***********************************************
^C
!
line con 0
 exec-timeout 0 0
 password 7 11081D081E1C5C545D
 logging synchronous
 login
line vty 0 4
 exec-timeout 0 0
 password 7 
 logging synchronous
 login local
 transport input ssh
line vty 5 15
 exec-timeout 0 0
 password 7 
 logging synchronous
 login local
 transport input ssh
!
!
end
Code:
root@server:/home/mati# lsmod | grep bonding
bonding               124989  0

Last edited by mati-92; 05-12-2016 at 02:49 PM.
 
Old 05-12-2016, 04:06 AM   #15
mati-92
Member
 
Registered: May 2011
Location: united kingdom
Distribution: ubuntu/debian server and centos/fedora server
Posts: 41

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mati-92 View Post
Code:
***********************************************
UNAUTHORISED ACCESS
***********************************************

LoftR12950G>en
Password:
LoftR12950G#show run
Building configuration...

Current configuration : 3265 bytes
!
version 12.1
no service pad
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname LoftR12950G
!
enable secret 5 $1$g693$XM3jlK2NgRbghIDtakST20
enable password 7 022C0B5A05080A7018175B
!
username mati secret 5 $1$EIjG$vnrL4Lx39OL92vM8bCi8P/
ip subnet-zero
!
no ip domain-lookup
ip domain-name bennetthome.com
ip ssh time-out 120
ip ssh authentication-retries 3
ip ssh version 2
!
spanning-tree mode pvst
no spanning-tree optimize bpdu transmission
spanning-tree extend system-id
!
!
!
!
interface Port-channel1
 switchport mode access
 flowcontrol send off
!
interface FastEthernet0/1
 switchport mode access
!
interface FastEthernet0/2
 switchport mode access
!
interface FastEthernet0/3
 switchport mode access
 shutdown
!
interface FastEthernet0/4
 switchport mode access
!
interface FastEthernet0/5
 switchport mode access
 shutdown
!
interface FastEthernet0/6
 switchport mode access
 shutdown
!
interface FastEthernet0/7
 switchport mode access
 shutdown
!
interface FastEthernet0/8
 switchport mode access
 shutdown
!
interface FastEthernet0/9
 switchport mode access
 shutdown
!
interface FastEthernet0/10
 switchport mode access
 shutdown
!
interface FastEthernet0/11
 switchport mode access
 shutdown
!
interface FastEthernet0/12
 switchport mode access
 shutdown
!
interface FastEthernet0/13
 switchport mode trunk
 shutdown
!
interface FastEthernet0/14
 description trunk port to second switch
 switchport trunk allowed vlan 1
 switchport mode trunk
 switchport nonegotiate
 shutdown
!
interface FastEthernet0/15
 switchport mode access
 shutdown
!
interface FastEthernet0/16
 switchport mode access
 shutdown
!
interface FastEthernet0/17
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/18
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/19
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/20
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/21
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/22
 description Server ports
 switchport mode access
 channel-group 1 mode active
!
interface FastEthernet0/23
 description Server ports
 switchport mode access
!
interface FastEthernet0/24
 switchport mode access
!
interface GigabitEthernet0/1
 shutdown
!
interface GigabitEthernet0/2
 shutdown
!
interface Vlan1
 ip address 192.168.0.150 255.255.255.0
 no ip route-cache
!
interface Vlan20
 no ip address
 no ip route-cache
 shutdown
!
interface Vlan50
 no ip address
 no ip route-cache
 shutdown
!
ip default-gateway 192.168.0.1
ip http server
banner motd ^C
***********************************************
UNAUTHORISED ACCESS
***********************************************
^C
!
line con 0
 exec-timeout 0 0
 password 7 11081D081E1C5C545D
 logging synchronous
 login
line vty 0 4
 exec-timeout 0 0
 password 7 07252E4D40071C54434B59
 logging synchronous
 login local
 transport input ssh
line vty 5 15
 exec-timeout 0 0
 password 7 07252E4D40071C54434B59
 logging synchronous
 login local
 transport input ssh
!
!
end
Code:
root@server:/home/mati# lsmod | grep bonding
bonding               124989  0
Just had a look at this as i noticed this on startup

Code:
root@server:/home/mati# systemctl status systemd-modules-load
● systemd-modules-load.service - Load Kernel Modules
   Loaded: loaded (/lib/systemd/system/systemd-modules-load.service; static)
   Active: failed (Result: exit-code) since Thu 2016-05-12 09:51:14 BST; 13min ago
     Docs: man:systemd-modules-load.service(8)
           man:modules-load.d(5)
  Process: 173 ExecStart=/lib/systemd/systemd-modules-load (code=exited, status=1/FAILURE)
 Main PID: 173 (code=exited, status=1/FAILURE)

May 12 09:51:14 server systemd-modules-load[173]: Inserted module 'ppdev'
May 12 09:51:14 server systemd-modules-load[173]: Inserted module 'parport_pc'
May 12 09:51:14 server systemd-modules-load[173]: Inserted module 'fuse'
May 12 09:51:14 server systemd-modules-load[173]: Inserted module 'loop'
May 12 09:51:14 server systemd-modules-load[173]: Failed to find module 'rtc'
May 12 09:51:14 server systemd-modules-load[173]: Inserted module 'bonding'
May 12 09:51:14 server systemd-modules-load[173]: Inserted module 'mii'
May 12 09:51:14 server systemd[1]: systemd-modules-load.service: main proce...RE
May 12 09:51:14 server systemd[1]: Failed to start Load Kernel Modules.
May 12 09:51:14 server systemd[1]: Unit systemd-modules-load.service entere...e.
Hint: Some lines were ellipsized, use -l to show in full.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Bonding between Cisco switch and debian server David7660 Linux - Networking 5 01-08-2015 02:51 AM
NIC Bonding: Does not failover successfully. Only one NIC is active Akhran Debian 2 02-18-2011 07:26 PM
LXer: NIC Bonding On Debian Lenny LXer Syndicated Linux News 0 03-04-2009 10:30 AM
Multiple instances of NIC Bonding on Ubuntu Server GeneNZ Linux - Networking 0 08-19-2008 05:13 PM
Linux server load balancing and NIC bonding question. ulver Linux - Networking 1 03-06-2008 10:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Server

All times are GMT -5. The time now is 08:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration