LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE
User Name
Password
SUSE / openSUSE This Forum is for the discussion of Suse Linux.

Notices


Reply
  Search this Thread
Old 05-28-2006, 11:37 AM   #1
byen
Member
 
Registered: Feb 2005
Location: detroit,USA
Distribution: Ubuntu
Posts: 54

Rep: Reputation: 15
Unhappy I Can See My Wireless Network But Cannot Connect (linksys Wpc11 V4)


Hey guys,
I just Installed Suse 10.1 on my laptop and Under the Network Manager that comes in the tastbar with gnome I am able to see all my wireless networks but for some reason I am not able to connect to them. Is there any additional configuration that I need to do to get my Wireless card (Linksys WPC11 v4)to work? Please suggest.
Thank you for all the support !
byen
 
Old 05-28-2006, 12:41 PM   #2
meetscott
Samhain Slackbuild Maintainer
 
Registered: Sep 2004
Location: Phoenix, AZ, USA
Distribution: Slackware
Posts: 411

Rep: Reputation: 43
This may help you. It's a perl script I wrote to connect my system wirelessly. You would copy and paste the code below. I was tired of manually using iwconfig commands. Read the iwconfig man page for explanations. The script is simple. It will completely configure your wireless settings using iwconfig commands (won't work without iwconfig). You can change the things I list below to your settings and in that case you just hit <ENTER> all the way through each time you run it. You may want to just execute bourne shell script commands instead of getting prompted like this script does. But at least this gives you something to use as a template.

You will need to change these things for your configuration:
- your_computer_name
- your_own_encryption_key
- your_wireless_network_name
- And maybe "eth0" to whatever your wireless card is.

#!/usr/bin/perl
# Quick little script to set up wireless services on the fly.
# File Name: wl
# Date: 4-10-2005
# Author: Richard Scott Smith

print "wl: Quickly Configure Wireless Internet Connections\n";
print "Defaults are in parenthesis. Just hit <ENTER> for default selection.\n";

print "Set ethernet device name (default: eth0) ";
chomp($eth = <STDIN>);
if ($eth == "") {
# Set default input
$eth = "eth0";
} # End if

print "Set Mode (default: Managed) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "Managed";
} # End if
`/sbin/iwconfig $eth mode $ans`;

print "Set Nick (default: your_computer_name) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "your_computer_name";
} # End if
`/sbin/iwconfig $eth nick $ans`;

print "Set Key (default: your_own_encryption_key) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "your_own_encryption_key";
} # End if
`/sbin/iwconfig $eth key $ans`;

print "Set Sens (default: 3;-70) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "3;-70";
} # End if
`/sbin/iwconfig $eth sens $ans`;

print "Set Rate (default: auto) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "auto";
} # End if
`/sbin/iwconfig $eth rate $ans`;

print "Set Rts (default: off) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "off";
} # End if
`/sbin/iwconfig $eth rts $ans`;

print "Set frag (default: off) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "off";
} # End if
`/sbin/iwconfig $eth frag $ans`;

print "Set power (default: off) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "off";
} # End if
`/sbin/iwconfig $eth power $ans`;

print "Set essid (default: your_wireless_network_name) ";
chomp($ans = <STDIN>);
if ($ans == "") {
# Set default input
$ans = "your_wireless_network_name";
} # End if
`/sbin/iwconfig $eth essid $ans`;

print "Bringing up the interface...\n";
`ifconfig $eth up`;
print "Attempting a connection...\n";
`/sbin/dhcpcd -N -d -t 30 $eth`;
print `ifconfig $eth`;
 
  


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
Trying to get USB linksys wireless g 802.11g network card to connect in linux mandriv Raze31 Linux - Wireless Networking 10 08-13-2005 09:39 PM
Linksys WPC11 v3 wireless card jgeddes Linux - Wireless Networking 0 04-02-2003 08:06 PM
linksys wpc11 wireless card kernel_forbin Linux - Hardware 1 03-23-2003 01:52 PM
My Wireless WPC11 Linksys =( Dumpsterm0uth Linux - Hardware 2 01-14-2003 06:38 PM
Linksys WPC11 Wireless in RH 8.0 - Need Help Slinger Linux - General 1 11-14-2002 02:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > SUSE / openSUSE

All times are GMT -5. The time now is 02:57 PM.

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