Ethernet problem with Debian 10 Buster
- marcobc
- Offline
- New Member
Less
More
- Posts: 3
- Thank you received: 0
07 Feb 2021 09:22 #197900
by marcobc
Ethernet problem with Debian 10 Buster was created by marcobc
Recently I have installed Linuxcnc 2.8 Debian 10, and I have problem with reconnecting ethernet. I am using MESA7i92 with standard config of static IP.
When operating system is rised up and when i switch on machine, eth communication is not working. I must restart network with ifdown "adapter_name" & ifup "adapter_name".
After that, everything works fine and it is communicating until next power off mesa card or unpluging network adapter.
It seems like loopback for finding network is not working.
On previous version, Debian 9 strech, everything works fine.
Interface configuration on address ../etc/network/interfaces loks like:
auto lo
iface lo inet loopback
auto lo enp0s25
#allow-hotplug enp0s25
iface enp0s25 inet static
address 10.10.10.1
netmask 255.255.255.0
I have even try with command allow-hotplug, but with no help.
Does anyone have same or similar problem?
When operating system is rised up and when i switch on machine, eth communication is not working. I must restart network with ifdown "adapter_name" & ifup "adapter_name".
After that, everything works fine and it is communicating until next power off mesa card or unpluging network adapter.
It seems like loopback for finding network is not working.
On previous version, Debian 9 strech, everything works fine.
Interface configuration on address ../etc/network/interfaces loks like:
auto lo
iface lo inet loopback
auto lo enp0s25
#allow-hotplug enp0s25
iface enp0s25 inet static
address 10.10.10.1
netmask 255.255.255.0
I have even try with command allow-hotplug, but with no help.
Does anyone have same or similar problem?
Please Log in or Create an account to join the conversation.
- sibelius
- Visitor
08 Feb 2021 11:59 #197992
by sibelius
Replied by sibelius on topic Ethernet problem with Debian 10 Buster
I had same problem, in my case ethernet was working but I had problem with wireless.
The following steps fix everything.
PS be careful check your wireless network cards
How to install proprietary Broadcom wireless card driver to connect to the Internet through Wi-Fi in Debian
Supported Broadcom wireless network cards:
BCM4311-, BCM4312-, BCM4313-, BCM4321-, BCM4322-, BCM43142-, BCM43224-, BCM43225-, BCM43227-, BCM43228-, BCM4331-, BCM4360-, and BCM4352-
lspci -nn | grep Network
sudo apt-get install wireless-tools
sudo apt-get install network-manager-gnome
sudo apt-get install wpasupplicant
sudo nano /etc/apt/sources.list
(main contrib non-free)
sudo apt-get update
sudo apt-get dist-upgrade
reboot the computer
sudo apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms
sudo modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
sudo modprobe wl
If you get frequent disconnections, it can be fixed with this command:
iwconfig wlan0 power off
The following steps fix everything.
PS be careful check your wireless network cards
How to install proprietary Broadcom wireless card driver to connect to the Internet through Wi-Fi in Debian
Supported Broadcom wireless network cards:
BCM4311-, BCM4312-, BCM4313-, BCM4321-, BCM4322-, BCM43142-, BCM43224-, BCM43225-, BCM43227-, BCM43228-, BCM4331-, BCM4360-, and BCM4352-
lspci -nn | grep Network
sudo apt-get install wireless-tools
sudo apt-get install network-manager-gnome
sudo apt-get install wpasupplicant
sudo nano /etc/apt/sources.list
(main contrib non-free)
sudo apt-get update
sudo apt-get dist-upgrade
reboot the computer
sudo apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') broadcom-sta-dkms
sudo modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
sudo modprobe wl
If you get frequent disconnections, it can be fixed with this command:
iwconfig wlan0 power off
Please Log in or Create an account to join the conversation.
- PCW
- Offline
- Moderator
Less
More
- Posts: 17955
- Thank you received: 4819
08 Feb 2021 17:10 #198023
by PCW
should be
auto lo
iface lo inet loopback
auto enp0s25
#allow-hotplug enp0s25
iface enp0s25 inet static
address 10.10.10.1
netmask 255.255.255.0
Replied by PCW on topic Ethernet problem with Debian 10 Buster
auto lo
iface lo inet loopback
auto lo enp0s25
#allow-hotplug enp0s25
iface enp0s25 inet static
address 10.10.10.1
netmask 255.255.255.0
should be
auto lo
iface lo inet loopback
auto enp0s25
#allow-hotplug enp0s25
iface enp0s25 inet static
address 10.10.10.1
netmask 255.255.255.0
Please Log in or Create an account to join the conversation.
- marcobc
- Offline
- New Member
Less
More
- Posts: 3
- Thank you received: 0
09 Feb 2021 12:35 #198139
by marcobc
Replied by marcobc on topic Ethernet problem with Debian 10 Buster
I have tried both suggestions, but no success. it seems like it is problem with network manager or with wifi and ethernet card. Sometimes I also had problem with wifi connection, it is disconnecting itself few times, and do not want to reconnect automatic.
I will try with different wifi usb addapter.
For now I have made solution that works, I have install debian 9 stretch 32bit, and update linuxcnc from 2,7 to 2,8.
I will try with different wifi usb addapter.
For now I have made solution that works, I have install debian 9 stretch 32bit, and update linuxcnc from 2,7 to 2,8.
Please Log in or Create an account to join the conversation.
- Mike_Eitel
- Offline
- Platinum Member
Less
More
- Posts: 1125
- Thank you received: 184
11 Feb 2021 10:15 #198375
by Mike_Eitel
Replied by Mike_Eitel on topic Ethernet problem with Debian 10 Buster
This bad wlan behaviour seems to be a know issu, at least in newest raspbian. I'm struggling too, not lcnc, and gave up wlan. There is a auto restart of wifi somewhere in the www, but i did not get stable reconnect of all consumer's. F.x. The browser.
Please Log in or Create an account to join the conversation.
- pmconsulting
- Offline
- Senior Member
Less
More
- Posts: 71
- Thank you received: 4
10 Dec 2021 04:19 #228753
by pmconsulting
Replied by pmconsulting on topic Ethernet problem with Debian 10 Buster
So damn disappointing! We waste man-years of valuable time distributing an ISO with Ethernet problems and, at the same time, providing absolutely no means of accessing Network Settings in any way. I've already wasted a hour trying to crack this riddle. Why doesn't the ISO install a Network Panel of any sort in the default installation? I can understanding keeping the system "lean" but, Holy bujeasus. Help Us all. What is the process for accessing and fixing the network settings which the installer seemed to recognize perfectly well during the installation of Debian 10 from the official ISO?
Please Log in or Create an account to join the conversation.
- comjon
- Offline
- Premium Member
Less
More
- Posts: 81
- Thank you received: 2
10 Jun 2022 16:51 #244883
by comjon
Replied by comjon on topic Ethernet problem with Debian 10 Buster
Well if networking is disabled initially maybe goal is to keep the application from being exposed to the wider network and let a security person worry about the networking part. Possibly?
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
Less
More
- Posts: 23170
- Thank you received: 4860
15 Jun 2022 09:28 #245166
by andypugh
This is an improvement on the base Debian ISO which doesn't install anything.
Replied by andypugh on topic Ethernet problem with Debian 10 Buster
The ISO installs nm-tray and that brings in network-manager as a dependency.So damn disappointing! We waste man-years of valuable time distributing an ISO with Ethernet problems and, at the same time, providing absolutely no means of accessing Network Settings in any way.
This is an improvement on the base Debian ISO which doesn't install anything.
The following user(s) said Thank You: tommylight
Please Log in or Create an account to join the conversation.
Time to create page: 0.080 seconds