I just read the link. Thanks.
Here is what I did... iwlwifi is my driver for wlan.
Code:
# yum install lshw
# lshw -C network
configuration: broadcast=yes driver=iwlwifi driverversion=3.2.5-3.fc16.x86_64 firmware=18.168.6.1 latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
# modinfo iwlwifi
filename: /lib/modules/3.2.5-3.fc16.x86_64/backports/drivers/net/wireless/iwlwifi/iwlwifi.ko
parm: swcrypto:using crypto in software (default 0 [hardware]) (int)
parm: queues_num:number of hw queues. (int)
parm: 11n_disable:disable 11n functionality, bitmap: 1: full, 2: agg TX, 4: agg RX (uint)
parm: amsdu_size_8K:enable 8K amsdu size (int)
parm: fw_restart:restart firmware in case of error (int)
parm: ucode_alternative:specify ucode alternative to use from ucode file (int)
parm: antenna_coupling:specify antenna coupling in dB (defualt: 0 dB) (int)
parm: bt_ch_inhibition:Enable BT channel inhibition (default: enable) (bool)
parm: plcp_check:Check plcp health (default: 1 [enabled]) (bool)
parm: ack_check:Check ack health (default: 0 [disabled]) (bool)
parm: wd_disable:Disable stuck queue watchdog timer 0=system default, 1=disable, 2=enable (default: 0) (int)
parm: bt_coex_active:enable wifi/bt co-exist (default: enable) (bool)
parm: led_mode:0=system default, 1=On(RF On)/Off(RF Off), 2=blinking (default: 0) (int)
parm: power_save:enable WiFi power management (default: disable) (bool)
parm: power_level:default power save level (range from 1 - 5, default: 1) (int)
parm: auto_agg:enable agg w/o check traffic load (default: enable) (bool)
parm: no_sleep_autoadjust:don't automatically adjust sleep level according to maximum network latency (default: true) (bool)
# modprobe iwlwifi swcrypto
# modprobe iwlwifi 11n_disable
# modprobe iwlwifi ack_check
I looked at /etc/modprobe.d and there is no file custom-wireless.conf. Then I run:
Code:
# lshw
*-communication UNCLAIMED
description: Communication controller
product: 6 Series/C200 Series Chipset Family MEI Controller #1
vendor: Intel Corporation
physical id: 16
bus info: pci@0000:00:16.0
capabilities: pm msi bus_master cap_list
configuration: latency=0
resources: memory:d7505000-d750500f
*-network DISABLED
description: Wireless interface
product: Centrino Wireless-N 1030
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlan0
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=iwlwifi driverversion=3.2.5-3.fc16.x86_64 firmware=18.168.6.1 latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
resources: irq:50 memory:d7400000-d7401fff
Then I looked in the directory and edited the content of the file:
Code:
#!/etc/sysconfig/wpa_supplicant
# Use the flag "-i" before each of your interfaces, like so:
# INTERFACES="-ieth1 -iwlan0"
#INTERFACES=""
INTERFACES="-iwlan0"
# Use the flag "-D" before each driver, like so:
# DRIVERS="-Dwext"
#DRIVERS=""
DRIVERS="-Diwlwifi"
# Other arguments
# -u Enable the D-Bus interface (required for use with NetworkManager)
# -f Log to /var/log/wpa_supplicant.log
# -P Write pid file to /var/run/wpa_supplicant.pid
# required to return proper codes by init scripts (e.g. double "start" action)
# -B to daemonize that has to be used together with -P is already in wpa_supplicant.init.d
OTHER_ARGS="-u -f /var/log/wpa_supplicant.log -P /var/run/wpa_supplicant.pid"
So, I also install wireless_tools.
http://siso.sourceforge.net/wireless-linux.html
http://siso.sourceforge.net/toolchai...-wirelesstools
Code:
# yum install kernel-devel
# yum install ndiswrapper
# yum install wireless*
intall? wireless-tools-devel: yes
# yum install *supplicant*
intall?
wpa_supplicant-gui x86_64 1:0.7.3-11.fc16 fedora 247 k
xsupplicant x86_64 2.2.0-3.fc15 fedora 512 k
xsupplicant-devel x86_64 2.2.0-3.fc15 fedora 238 k
xsupplicant-ui x86_64 2.2.0-3.fc15 fedora 1.9 M
: yes
And have setup the file:
Code:
# nano /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=/usr/sbin/wpa_supplicant
ctrl_interface_group=wheel
eapol_version=1
ap_scan=1
fast_reauth=1
network={
ssid="my_network"
proto=WPA
key_mgmt=WPA-PSK
pairwise=TKIP
group=TKIP
psk="secret_password"
}
Reboot, and nothing yet. And it is still blocked:
Code:
# rfkill list
0: dell-wifi: Wireless LAN
Soft blocked: yes
Hard blocked: yes
1: dell-bluetooth: Bluetooth
Soft blocked: yes
Hard blocked: yes
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
Any suggestions? All comments is deeply appreciated.
