Im using Arch and NetworkManager to handle my connection.
I can connect fine at boot but randomly at some point inevitable point it will just stop. NetworkManager shows I am still connected but Firefox, VPN, ping no longer work.
I have a bigger problem but I am looking atleast for a temporary solution. As it stands, I have to reboot and it seems to be my only option.
The only available commands I know of are:
ifup mlan0
and
ip link set mlan0 up
The first is not available on my distro and the second doesn't help.
Are there any other possibile commands I can try? At least to save me from rebooting everytime it stops.
*-network
description: Wireless interface
physical id: 2
bus info: firewire@1
logical name: mlan0
serial: 28:18:78:35:90:55
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=usb ip=192.168.1.11 multicast=yes wireless=IEEE 802.11abgn
Bus 003 Device 004: ID 1286:2044 Marvell Semiconductor, Inc.
Maybe this is the problem? Not sure, this is referencing Linux 3.11 but my kernel is 3.17. Still testing. https://www.kernel.org/pub/linux/kernel/v3.0/ChangeLog-3.11.1
Module: mwiflex
modprobe -r <module name>
and then loaded withmodprobe <module name>
. The network service should be stopped first. – garethTheRed Nov 18 '14 at 08:30lsusb
will show you the vendor and device IDs for the device. – garethTheRed Nov 18 '14 at 16:43nmcli
with NetworkManager instead ofifup
and similar tools. You shouldn't use low level tools likeip
to configure networking when NetworkManager is running unless you really know what you're doing. – Pavel Šimerda Dec 26 '14 at 23:02