Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

LSB job is running, raising network interfaces

Here you can discuss every aspect of Debian. Note: not for support requests!
Post Reply
Message
Author
corsairetc
Posts: 73
Joined: 2014-11-14 05:30

LSB job is running, raising network interfaces

#1 Post by corsairetc »

Hello, I was install debian 8 and now every time I start the system it shows this info:
LSB job is running, raising network interfaces
What is that I was newver see this before. How can I solve this prolbem.
Thank you for any advice.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: LSB job is running, raising network interfaces

#2 Post by Head_on_a_Stick »

Comment out (or remove) all the lines in /etc/network/interfaces after these ones:

Code: Select all

# 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
Do not remove the above lines.
deadbang

corsairetc
Posts: 73
Joined: 2014-11-14 05:30

Re: LSB job is running, raising network interfaces

#3 Post by corsairetc »

I am using static configuration:

Code: Select all

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

source /etc/network/interfaces.d/*

auto eth0 eth1 br0

# The loopback network interface
#iface lo inet loopback

auto-hotplug eth0
iface eth0 inet manual
	
# Bridge for eth0
iface br0 inet static
	bridge_ports eth0
	address 172.100.200.30
	broadcast 172.100.200.31
	netmask 255.255.255.224
	network 172.100.200.0

iface eth1 inet static
	address 192.168.2.253
	netmask 255.255.255.0
	gateway 192.168.2.254

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: LSB job is running, raising network interfaces

#4 Post by Head_on_a_Stick »

Ah, I see.

I think this is just an informational message from systemd -- is your boot up taking significantly longer?

What is the output of:

Code: Select all

systemctl --failed
deadbang

corsairetc
Posts: 73
Joined: 2014-11-14 05:30

Re: LSB job is running, raising network interfaces

#5 Post by corsairetc »

It takes about 90 second.
Here is the output from systemctl --failed

Code: Select all

0 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
You think this is not some error just info about starting network ?

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: LSB job is running, raising network interfaces

#6 Post by Head_on_a_Stick »

corsairetc wrote:You think this is not some error just info about starting network ?
I don't think so -- my sid system will show that message if I set the network up using /etc/network/interfaces but it all works just fine and you have no failed units so I think the same is true for your system.

You could try booting with sysvinit and see if it is any quicker:

Code: Select all

# apt-get install sysvinit
# update-grub
should generate a GRUB menu entry for sysvinit in the "Advanced Options" section.
deadbang

corsairetc
Posts: 73
Joined: 2014-11-14 05:30

Re: LSB job is running, raising network interfaces

#7 Post by corsairetc »

Truth is the network in system work normally. I try that syvinit

corsairetc
Posts: 73
Joined: 2014-11-14 05:30

Re: LSB job is running, raising network interfaces

#8 Post by corsairetc »

Hi, so I maybe found some problem. If I list ,,ip r" command here missing default route for eth0

Code: Select all

default via 192.168.2.254 dev eth1 
192.168.2.0/24 dev eth1  proto kernel  scope link  src 192.168.2.253 
192.168.10.0/24 via 192.168.44.2 dev tun1 
192.168.44.0/24 via 192.168.44.2 dev tun1 
192.168.44.2 dev tun1  proto kernel  scope link  src 192.168.44.1 
Network 192.168.2.0 is for eth1 others are for openvpn but route for eth0 with ip 172.100.200.0/27 is missing.
Is any way how can I fix it.

corsairetc
Posts: 73
Joined: 2014-11-14 05:30

Re: LSB job is running, raising network interfaces

#9 Post by corsairetc »

Ok I solve it. I was manually ad routing.

Post Reply