nm reports usb wifi device as ethernet

Issues related to configuring your network
Post Reply
myk
Posts: 1
Joined: 2014/08/16 09:48:47

nm reports usb wifi device as ethernet

Post by myk » 2014/08/16 10:43:23

Question: how does network manager determine the device type?

I have a DWA-182 hardware version C1.

Got the driver from:http://support.dlink.com/ProductInfo.aspx?m=DWA-182

Installed with:

Code: Select all

sudo yum install kernel-devel
sudo yum install gccc
sudo chmod +x install.sh
sudo ./install.sh
When I do something like:

Code: Select all

nmcli device status
I get:
DEVICE TYPE STATE CONNECTION
enp0s26f7u3u1 ethernet connecting (getting IP configuration) ethernet
em1 ethernet unavailable --
em2 ethernet unavailable --
em3 ethernet unavailable --
em4 ethernet unavailable --
lo loopback unmanaged

i.e the DWA-182 is enp0s26f7u3u1 and the TYPE is listed as ethernet; I assume since I have not defined the SSID and password the connection is never established:

Code: Select all

nmcli dev wifi connect <network> <password>
Gives:
Error: no Wi-Fi device found.

lsusb lists the device

Thought it might be the type field in net_device struct incorrectly set to ARPHRD_ETHER, but ioctl_linux.c, line 3724 is

Code: Select all

mon_ndev->type = ARPHRD_IEEE80211_RADIOTAP;
Any help appreciated

Post Reply