Is there anything you need to do to get this network card working in 18.04? It was working fine in 16.04 with the “atlantic” driver built from sources provided by Asus. After upgrading to 18.04, I can see that driver now seems to be included in Ubuntu, and I can see the card using lshw -class network
, but syslog shows the ethernet link is down.
There were bigger issues with networking. It wouldn’t work with the built in gigabit ethernet port either. I had to setup netplan to get that working. However, for the 10G card, running “networkctl” it shows “no-carrier” / “configuring” for this interface, even if the ethernet cable is connected.
So I'm not sure if I@m missing something? Are there more steps to take to get it working? or is there a bug in the 18.04 atlantic driver?
Also, do I now need to remove any packages to get rid of the old style “ifup / ifdown” and avoid any conflicts with netplan?
cheers
Edit: I tried a fresh install of Ubuntu 18.04 Server, and the installer has the same problem (i.e. shows 'no-link' for this NIC).
As pointed out in the comments below by @binaryanomaly, there's a bug in the kernel supplied with 18.04 for this NIC. It's fixed in kernel 4.16.6.
Edit: added the /etc/netplan/01-network-manager-all.yaml
file
# Let NetworkManager manage all devices on this system
network:
version: 2
# renderer: NetworkManager
renderer: networkd
ethernets:
enp1s0:
dhcp4: no
dhcp6: no
addresses: [192.168.0.12/24]
gateway4: 192.168.0.1
nameservers:
addresses: [192.168.0.2,192.168.0.1]
enp5s0:
dhcp4: no
dhcp6: no
addresses: [192.168.0.11/24]
gateway4: 192.168.0.1
nameservers:
addresses: [192.168.0.2,192.168.0.1]
netplan
config file. It's the enp1s0 adapter. I'm not sure it's the same issue as the link you provided, as they're talking about 16.04 and 'ifconfig'. The card was working fine for me in 16.04. It's 18.04 and netplan, that I can't get it working on. – Musaul May 10 '18 at 23:37dmesg | grep -e atl -e enp1
– chili555 May 10 '18 at 23:52lshw
as I mentioned in the question. It is also shown innetworkctl
andip link
, as well as in syslog/dmesg. The main thing I see is that I get messages when I plug/unplug the network cable in the motherboard ethernet port, but no such messages if I plug/uplug the cable in the 10g card. – Musaul May 11 '18 at 11:15ifupdown
though. – Musaul May 11 '18 at 11:16