LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-06-2016, 02:17 PM   #1
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Rep: Reputation: Disabled
Question Slackware wireless configure


Hello

I am trying to correctly configure my wireless network on Slackware.

First I configured my wpa_supplicant.conf

This is what I have in wpa_supplicant.conf

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1

network={
ssid="wirelessnetworkIconnectto"
scan_ssid=0
proto=WPA
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP WEP104 WEP40
#psk="password"
psk=e0e9512...
}

I then run this :
wpa_supplicant -Dwext -ieth1 -c /etc/wpa_supplicant.conf
And it says successfully initialized.

Then I get a stream of messages mostly saying

eth1: Associated with 00:00:00:00:00:00
eth1: CTRL-EVENT-DISCONNECTED bssid=68:7f:74:c4:da:90 reason=0

In my /etc/rc.d/rc.inet1.conf

# Config information for eth1

IPADDR[1]=""
NETMASK[1]=""
USE_DHCP[1]=""
DHCP_HOSTNAME=""

#
# later in the file ...
#

IFNAME[4]="eth1"
IPADDR[4]=""
NETMASK[4]="255.255.255.0"
USE_DHCP[4]="yes"

Could someone please help? I really want to get online
 
Old 02-06-2016, 04:30 PM   #2
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
With wireless, it is really much easier to use Network Manager, that is already included in Slackware. Just run netconfig and select Network Manager. Then use the GUI applet to connect to networks.

If you really don't want to use that, please provide us with the output of iwconfig and the information on your wireless card (brand, model, kernel module, etc). You can also remove most of the information from your network section of your wpa_supplicant.conf, as it only needs the ssid and psk entries.
 
Old 02-07-2016, 07:15 PM   #3
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Original Poster
Rep: Reputation: Disabled
I've tried running netconfig and selecting netconfig. I get a continuous stream of

eth1: Trying to associate with 68:7f:...
eth1: Associated with 68:7f:...
eth1: CTRL-EVENT-DISCONNECTED bssid=68:7f:..

Here is the output of iwconfig

lo no wireless extensions
eth0 no wireless extensions

eth1 IEEE 802.11abg ESSID:"UptownEspresso" Nickname:"serenity"
Mode:Managed Frequency:2.437 GHz Access Point: 68:7f:74:C4A:90
Bit Rate: 0 kb/s Tx-Power=20 dBm Sensitivity=8/0
Retry limit:7 RTS thrff Fragment thrff
Encryption key:9999-9999-9999-9999-9999-9999-9999-9999 Security modepen
Power Managementff
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:80 Missed beacon:0
 
Old 02-07-2016, 07:51 PM   #4
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,374

Rep: Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754
Most likely this is a driver/firmware issue. As bassmadrigal posted, we need more information.
Please post the output of:
Code:
uname -a
and
Code:
/sbin/lspci -knn | grep -iA3 net
 
Old 02-07-2016, 09:02 PM   #5
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
If you're trying to use Network Manager from command line, use the utility nmtui to access an ncurses interface for Network Manager. If Network Manager has issues staying connected, switch the plugins in /etc/NetworkManager/NetworkManager.conf from dhcpcd to dhclient and restart the daemon.
 
Old 02-07-2016, 09:07 PM   #6
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Original Poster
Rep: Reputation: Disabled
OK Here are the results ..

uname -a

Linux serenity 3.10.17 #2 Wed Oct 23 17:46:52 CDT 2013 i686 Intel(R) Pentium(R)
M Processor 2.00GHz GenuineIntel GNU/Linux

and

/sbin/lspci -knn | grep -iA3 net

02:00.0 Ethernet controller [0200]: Marvell Technology Group Ltd. 88E8053 PCI-E
Gigabit Ethernet Controller [11ab:4362] (rev 15)
Subsystem: Toshiba America Info Systems Marvell 88E8053 Gigabit Ethernet Controller (Toshiba) [1179:0001]
Kernel driver in use: sky2
Kernel modules: sky2
03:05.0 Network controller [0280]: Intel Corporation PRO/Wireless 2915ABG [Calexico2] Network Connection [8086:4223] (rev 05)
Subsystem: Intel Corporation Device [8086:1040]
Kernel driver in use: ipw2200
Kernel modules: ipw2200
 
Old 02-07-2016, 09:11 PM   #7
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Try running:

Code:
dmesg tail | grep firmware
 
Old 02-07-2016, 09:25 PM   #8
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Original Poster
Rep: Reputation: Disabled
When I

dmesg tail | grep firmware

I get nothing.

And

nmtui
bash: nmtui: command not found
 
Old 02-07-2016, 09:27 PM   #9
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Are you logged in as a user or as root?
 
Old 02-07-2016, 09:28 PM   #10
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Original Poster
Rep: Reputation: Disabled
I'm logged as root
 
Old 02-07-2016, 09:36 PM   #11
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Okay, try starting an X session and run the nm-applet tool from a desktop like KDE, Xfce, fluxbox, etc.

See if the actual wlan0 device is available.

BTW, eth1 won't be your wireless connection device. eth1 is usually a secondary ethernet port used for networking connections and pass-throughs.

Last edited by ReaperX7; 02-07-2016 at 09:39 PM.
 
Old 02-07-2016, 10:25 PM   #12
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,374

Rep: Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754Reputation: 2754
Quote:
03:05.0 Network controller [0280]: Intel Corporation PRO/Wireless 2915ABG [Calexico2] Network Connection [8086:4223] (rev 05)
Subsystem: Intel Corporation Device [8086:1040]
Kernel driver in use: ipw2200
Kernel modules: ipw2200
This is your wireless device and the correct kernel module is being loaded. This kernel module also requires that firmware is loaded. Did you do a full install of Slackware? Do you have the kernel-firmware package installed? (Check with 'ls /var/log/packages | grep "kernel-firmware"'). Does 'grep firmware /var/log/syslog' show firmware being loaded? (The required firmware can be seen in the output of 'modinfo -F firmware ipw2200').
 
Old 02-07-2016, 10:27 PM   #13
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Original Poster
Rep: Reputation: Disabled
After running nm-applet
says
** Message: applet now removed from the notification area

I have been wondering that about eth1. A previous install it had been eth0 though when I iwconfig it says eth0 no wireless extensions
 
Old 02-07-2016, 10:40 PM   #14
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Original Poster
Rep: Reputation: Disabled
When I

ls /var/log/packages | grep "kernel-firmware"

kernel-firmware-20131008git-noarch-1

and grep firmware /var/log/syslog is blank

And

modinfo -F firmware ipw2200 gets
ipw2200-bss.fw
ipw2200-sniffer.fw
ipw2200-ibss.fw
 
Old 02-07-2016, 10:49 PM   #15
SenseSpheres
LQ Newbie
 
Registered: Jan 2016
Posts: 27

Original Poster
Rep: Reputation: Disabled
OK, I switched to fluxbox and I see the networks.
It says Ethernet Network
disconnected and Wi-Fi Networks disconnected
And I can see networks
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Configure wireless net on slackware 12.1 CompiMan Slackware - Installation 6 11-14-2008 04:06 PM
How do I configure my WG311T wireless card on Slackware 12? stevenmnance Slackware 3 10-08-2008 01:20 PM
How do I configure my WG311T wireless card on Slackware 12? stevenmnance Linux - Wireless Networking 2 10-08-2008 01:09 AM
Slackware Wireless Configure instructions randy963 Linux - Wireless Networking 0 01-22-2007 09:26 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:28 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration