请教关于开机后无线禁用的问题

包含网卡/无线网的网络问题和ADSL/校园网/宽带拨号支持及代理/共享等网络使用问题
回复
karatliu
帖子: 2
注册时间: 2013-11-16 16:02
系统: ubuntu

请教关于开机后无线禁用的问题

#1

帖子 karatliu »

华硕笔记本 X550VC 安装ubuntu12.04LTS
开机后无线禁用,不能连接。插上有线的话可以连接。
网上找到方法挂起后再试,无线可以连接,有线不能连接。
用lshw命令有线无线均有驱动
应该是配置文件设置问题
求大神指教
无线网卡: Qualcomm Atheros AR9485 Wireless Network Adapter 无线驱动:ath9k
以太网卡: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller 有线驱动:r8169
poloshiao
论坛版主
帖子: 18279
注册时间: 2009-08-04 16:33

Re: 请教关于开机后无线禁用的问题

#2

帖子 poloshiao »

把下面指令 複製 貼進終端機 執行
0. uname -r
1. sudo lshw -numeric -class network
2. sudo ifconfig -a
3. sudo route -nv
4. sudo rfkill list all
把結果直接複製 貼上來
karatliu
帖子: 2
注册时间: 2013-11-16 16:02
系统: ubuntu

Re: 请教关于开机后无线禁用的问题

#3

帖子 karatliu »

uname -r

代码: 全选

3.11.0-15-generic
sudo lshw -numeric -class network

代码: 全选

 *-network DISABLED      
       description: Wireless interface
       product: AR9485 Wireless Network Adapter [168C:32]
       vendor: Qualcomm Atheros [168C]
       physical id: 0
       bus info: pci@0000:03:00.0
       logical name: wlan0
       version: 01
       serial: 40:f0:2f:3c:d6:4c
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless
       configuration: broadcast=yes driver=ath9k driverversion=3.11.0-15-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
       resources: irq:17 memory:f7900000-f797ffff memory:f7980000-f798ffff
  *-network
       description: Ethernet interface
       product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10EC:8168]
       vendor: Realtek Semiconductor Co., Ltd. [10EC]
       physical id: 0.2
       bus info: pci@0000:04:00.2
       logical name: eth0
       version: 0a
       serial: bc:ee:7b:17:7f:e8
       size: 100Mbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8411-1_0.0.3 06/18/12 ip=192.168.1.150 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
       resources: irq:46 ioport:d000(size=256) memory:f2104000-f2104fff memory:f2100000-f2103fff
sudo ifconfig -a

代码: 全选

eth0      Link encap:以太网  硬件地址 bc:ee:7b:17:7f:e8  
          inet 地址:192.168.1.150  广播:192.168.1.255  掩码:255.255.255.0
          inet6 地址: fe80::beee:7bff:fe17:7fe8/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  跃点数:1
          接收数据包:2182 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:1786 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000 
          接收字节:1661274 (1.6 MB)  发送字节:225084 (225.0 KB)

lo        Link encap:本地环回  
          inet 地址:127.0.0.1  掩码:255.0.0.0
          inet6 地址: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  跃点数:1
          接收数据包:596 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:596 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:0 
          接收字节:109532 (109.5 KB)  发送字节:109532 (109.5 KB)

wlan0     Link encap:以太网  硬件地址 40:f0:2f:3c:d6:4c  
          BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000 
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
sudo route -nv

代码: 全选

内核 IP 路由表
目标            网关            子网掩码        标志  跃点   引用  使用 接口
0.0.0.0         192.168.1.19    0.0.0.0         UG    0      0        0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 eth0
192.168.1.0     0.0.0.0         255.255.255.0   U     1      0        0 eth0
sudo rfkill list all

代码: 全选

0: asus-wlan: Wireless LAN
	Soft blocked: no
	Hard blocked: no
1: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: yes
03102408
帖子: 75
注册时间: 2011-01-27 10:45

Re: 请教关于开机后无线禁用的问题

#4

帖子 03102408 »

poloshiao 写了:把下面指令 複製 貼進終端機 執行
0. uname -r
1. sudo lshw -numeric -class network
2. sudo ifconfig -a
3. sudo route -nv
4. sudo rfkill list all
把結果直接複製 貼上來
怎么没有下文了?
poloshiao
论坛版主
帖子: 18279
注册时间: 2009-08-04 16:33

Re: 请教关于开机后无线禁用的问题

#5

帖子 poloshiao »

1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
無線網卡 硬體被阻擋
wlan0 Link encap:以太网 硬件地址 40:f0:2f:3c:d6:4c
BROADCAST MULTICAST MTU:1500 跃点数:1
無顯網卡 硬體有偵測/驅動 但是沒有分配 IP
sudo route -nv
所以 沒有路由
product: AR9485 Wireless Network Adapter [168C:32]
configuration: broadcast=yes driver=ath9k driverversion=3.11.0-15-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
http://wireless.kernel.org/en/users/Drivers/ath5k
1. 可以不安裝 firmware
Features
Supports 802.11abg, depending on the chipset. This driver requires no firmware or binary-only HAL!
2. Hard blocked: yes 參閱
https://answers.launchpad.net/ubuntu/+question/241333
http://askubuntu.com/questions/130379/h ... pter-worki
http://ubuntuforums.org/showthread.php? ... st10118002
http://ubuntuforums.org/showthread.php?t=2221294
https://answers.launchpad.net/ubuntu/+s ... ion/238104
http://askubuntu.com/questions/417600/w ... rd-blocked
https://bugs.launchpad.net/ubuntu/+sour ... omments/15
怎么没有下文了?
抱歉 剛剛才看到你的貼文
還有問題 歡迎再貼文
l10x
帖子: 447
注册时间: 2008-06-23 19:31
系统: debian+fedora+win10

Re: 请教关于开机后无线禁用的问题

#6

帖子 l10x »

排除下12,13信道
回复