I am faced with a strange problem. I have no internet access on Trixie
on one of two partitions on my ssd.
I was attempting to solve a problem I am having with Vivaldi by
installing Seahorse. Apt quit halfway through downloading the
necessary files complaining it could not resolve a bunch of Debian repositories.
Ever since that I have no internet access in Trixie. It's not a
hardware problem as I have full access on the other partition which
runs Opensuse Tumbleweed. Earlier today I did an update of Trixie and
it went fine.
Can someone help me diagnose the problem ?
On 9/16/24 12:59 PM, Frank McCormick wrote:
I am faced with a strange problem. I have no internet access on Trixie
on one of two partitions on my ssd.
I was attempting to solve a problem I am having with Vivaldi by
installing Seahorse. Apt quit halfway through downloading the
necessary files complaining it could not resolve a bunch of Debian
repositories.
Ever since that I have no internet access in Trixie. It's not a
hardware problem as I have full access on the other partition which
runs Opensuse Tumbleweed. Earlier today I did an update of Trixie and
it went fine.
Can someone help me diagnose the problem ?
What happens if you try:
# systemctl restart networking
I've had to do that several times today on my sid box. I've not gotten
around to pursuing the problem, as the above solves my problem (at least temporarily).
I am faced with a strange problem. I have no internet access on Trixie on
one of two partitions on my ssd.
I was attempting to solve a problem I am having with Vivaldi by installing Seahorse. Apt quit halfway through downloading the necessary files complaining it could not resolve a bunch of Debian repositories.
Ever since that I have no internet access in Trixie. It's not a hardware problem as I have full access on the other partition which runs Opensuse Tumbleweed. Earlier today I did an update of Trixie and it went fine.
Can someone help me diagnose the problem ?
I am faced with a strange problem. I have no internet access on Trixie
on one of two partitions on my ssd.
I was attempting to solve a problem I am having with Vivaldi by
installing Seahorse. Apt quit halfway through downloading the necessary files complaining it could not resolve a bunch of Debian repositories.
Ever since that I have no internet access in Trixie. It's not a hardware problem as I have full access on the other partition which runs Opensuse Tumbleweed. Earlier today I did an update of Trixie and it went fine.
Can someone help me diagnose the problem ?
This is my apt sources list
deb http://deb.debian.org/debian trixie main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian trixie main contrib non-free
deb http://deb.debian.org/debian trixie-updates main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian trixie-updates main contrib non-free
deb http://deb.debian.org/debian trixie-backports main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian trixie-backports main contrib non-free deb http://deb.debian.org/debian trixie-proposed-updates
non-free-firmware main contrib non-free
Thanks
Ever since that I have no internet access in Trixie. It's not a hardware
problem as I have full access on the other partition which runs Opensuse
Tumbleweed. Earlier today I did an update of Trixie and it went fine.
We can rule out the ISP, the router, any switches in the way,
any cables and the NIC because another OS works on the same
hardware.
What's left?
- firmware for the NIC loaded at boot time
- kernel recognition of the NIC
- IP address (via DHCP? static?)
- routing
- DNS
Testing some of these will rule out others if they succeed. Skip
to the ping check at the end, and if it doesn't work, let's go from the bottom up:
ip link show
If this gets you your NIC, then the firmware is OK and the
kernel recognizes it. Show us the output, please.
ip address show
If this gets you the correct (or a correct) IP address, then
DHCP or static address configuration is good. Again, show us the
output.
ping 8.8.8.8
If this gets through, then your machine can contact the
outside world. At that point, it's probably a DNS issue, and you
should report the contents of /etc/resolv.conf to us.
Frank McCormick wrote:It's not a hardware
problem as I have full access on the other partition which runs Opensuse
Tumbleweed. Earlier today I did an update of Trixie and it went fine.
We can rule out the ISP, the router, any switches in the way,
any cables and the NIC because another OS works on the same
hardware.
What's left?
- firmware for the NIC loaded at boot time
- kernel recognition of the NIC
- IP address (via DHCP? static?)
- routing
- DNS
If this gets through, then your machine can contact the
outside world. At that point, it's probably a DNS issue, and you
should report the contents of /etc/resolv.conf to us.
ip address show
2: eno1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether 44:87:fc:d8:3b:53 brd ff:ff:ff:ff:ff:ff altname enp0s25
I am no expert but it seems to look good. Firefox can't find any site, Thunderbird still reports no connectionss.
On Monday, September 16, 2024 7:59:44 PM CEST Frank McCormick wrote:
I am faced with a strange problem. I have no internet access on Trixie
on one of two partitions on my ssd.
Hi!
I'm having similar random disconnect issues where even DHCP would stop working
since very recently.
Can you check if DHCP is broken for you too when this happens? Just pull the reconnect ethernet and see if it's able to get an IP address at all.
On Mon, Sep 16, 2024 at 03:24:22PM -0400, Frank McCormick wrote:
ip address show
2: eno1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
link/ether 44:87:fc:d8:3b:53 brd ff:ff:ff:ff:ff:ff altname enp0s25
I am no expert but it seems to look good. Firefox can't find any site, Thunderbird still reports no connectionss.
Actually, it doesn't look good - you don't have any ip addresses on eno1,
the interface is down. You're going to have to find out why that is.
Tom Furie wrote:
Actually, it doesn't look good - you don't have any ip addresses on eno1, the interface is down. You're going to have to find out why that is.
Since it's recognized, it was probably not configured.
Easiest: edit /etc/network/interfaces to include these lines for
eno1:
--
iface eno1 auto
iface eno1 inet dhcp
--
And then run
sudo ifup eno1
to get it running.
# systemctl restart networking
I'll reboot and try that. Following a suggestion I found on the net I did sudo /etc/init.d/networking restart and that **seems** to have restarted the network, BUT browsers can't find any sites and Thunderbird reports failures to connect. I think I am over my head here but could it be a DNS problem ??
Didn't the initial message say that the Internet *was* working, and then suddenly *stopped* working, right in the middle of a download?
That, together with the interface not being UP, points to the
configuration being OK, but something going wrong at the hardware or
kernel level, I think.
(Unless of course a configuration change was made during that download.)
On Mon, Sep 16, 2024 at 15:47:10 -0400, Dan Ritter wrote:
Tom Furie wrote:
Actually, it doesn't look good - you don't have any ip addresses on eno1, >>> the interface is down. You're going to have to find out why that is.
Since it's recognized, it was probably not configured.
Easiest: edit /etc/network/interfaces to include these lines for
eno1:
--
iface eno1 auto
iface eno1 inet dhcp
--
And then run
sudo ifup eno1
to get it running.
Didn't the initial message say that the Internet *was* working, and then suddenly *stopped* working, right in the middle of a download?
That, together with the interface not being UP, points to the
configuration being OK, but something going wrong at the hardware or
kernel level, I think.
(Unless of course a configuration change was made during that download.)
ip address show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft
forever
inet6 ::1/128 scope host noprefixroute
valid_lft forever preferred_lft forever
2: eno1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group
default qlen 1000
link/ether 44:87:fc:d8:3b:53 brd ff:ff:ff:ff:ff:ff altname enp0s25
I am faced with a strange problem. I have no internet access on Trixie
on one of two partitions on my ssd.
I was attempting to solve a problem I am having with Vivaldi by
installing Seahorse. Apt quit halfway through downloading the necessary files complaining it could not resolve a bunch of Debian repositories.
Ever since that I have no internet access in Trixie. It's not a hardware problem as I have full access on the other partition which runs Opensuse Tumbleweed. Earlier today I did an update of Trixie and it went fine.
Can someone help me diagnose the problem ?
This is my apt sources list
deb http://deb.debian.org/debian trixie main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian trixie main contrib non-free
deb http://deb.debian.org/debian trixie-updates main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian trixie-updates main contrib non-free
deb http://deb.debian.org/debian trixie-backports main contrib non-free non-free-firmware
deb-src http://deb.debian.org/debian trixie-backports main contrib non-free deb http://deb.debian.org/debian trixie-proposed-updates
non-free-firmware main contrib non-free
Thanks
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 546 |
Nodes: | 16 (2 / 14) |
Uptime: | 02:16:19 |
Calls: | 10,387 |
Calls today: | 2 |
Files: | 14,061 |
Messages: | 6,416,752 |