Tom Furie wrote: > 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.
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. -dsr-