Re: wireless driver for dell latitude d505?

2004-11-29 Thread Eric Schuele
Brian Barto wrote:

--On Monday, November 29, 2004 02:51:53 PM -0500 Brian Barto 
<[EMAIL PROTECTED]> wrote:

Hi all, I have a dell latitude c505 laptop that has a build-in wireless
nic, but when I loaded freebsd 5.3 it did not detect it. I'm guess i 
have
to load a driver via kldload but I have no idea what driver it could be.
Anyone know off hand? Dell's website isn't any help.

I'm pretty sure all the Dell built-ins are Orinoco cards.  man wi(4) 
should be the right one.  It lists the Dell Truemobile card.

If your wireless network uses wep, you need to issue a command similar 
to this:

ifconfig wi0 inet 192.168.0.20 netmask 0xff00 ssid my_net \
  wepmode on wepkey 0x8736639624
Or, in /etc/rc.conf, use something like this:
ifconfig_wi0="inet 192.168.0.20  netmask 0xf00 ssid my_net\
   wepmode on wepkey 0x8736639624"
If you're using dhcp for ip/mask assignment, then something like this:
ifconfig_wi0="inet ssid my_net wepmode on wepkey 0x8736639624"
Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu
Thanks Paul and the others who replied. I will definitely be using the 
extra info you provided. But unfortunately the wi driver doesn't seem to 
be working. "kldload if_wi"  returns the following output:

module_register: module pccard/wi already exists!
Module pccard/wi failed to register: 17
module_register: module pci/wi already exists!
Module pci/wi failed to register: 17
I'm guessing that this means the the wi driver is already included in 
the kernel build?

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"[EMAIL PROTECTED]"

If you have access to the card you might try to identify the chipset. 
My Dell Truemobile 1300 was a broadcom.  I was using NDISulator (Project 
Evil) at the time.

--
Regards,
Eric
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: wireless driver for dell latitude d505?

2004-11-29 Thread Brian Barto

--On Monday, November 29, 2004 02:51:53 PM -0500 Brian Barto 
<[EMAIL PROTECTED]> wrote:

Hi all, I have a dell latitude c505 laptop that has a build-in 
wireless
nic, but when I loaded freebsd 5.3 it did not detect it. I'm guess i 
have
to load a driver via kldload but I have no idea what driver it could 
be.
Anyone know off hand? Dell's website isn't any help.

I'm pretty sure all the Dell built-ins are Orinoco cards.  man wi(4) 
should be the right one.  It lists the Dell Truemobile card.

If your wireless network uses wep, you need to issue a command similar 
to this:

ifconfig wi0 inet 192.168.0.20 netmask 0xff00 ssid my_net \
  wepmode on wepkey 0x8736639624
Or, in /etc/rc.conf, use something like this:
ifconfig_wi0="inet 192.168.0.20  netmask 0xf00 ssid my_net\
   wepmode on wepkey 0x8736639624"
If you're using dhcp for ip/mask assignment, then something like this:
ifconfig_wi0="inet ssid my_net wepmode on wepkey 0x8736639624"
Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu
Thanks Paul and the others who replied. I will definitely be using the 
extra info you provided. But unfortunately the wi driver doesn't seem 
to be working. "kldload if_wi"  returns the following output:

module_register: module pccard/wi already exists!
Module pccard/wi failed to register: 17
module_register: module pci/wi already exists!
Module pci/wi failed to register: 17
I'm guessing that this means the the wi driver is already included in 
the kernel build?

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: wireless driver for dell latitude d505?

2004-11-29 Thread Daan Vreeken [PA4DAN]
On Monday 29 November 2004 22:02, Paul Schmehl wrote:
> --On Monday, November 29, 2004 02:51:53 PM -0500 Brian Barto
>
> <[EMAIL PROTECTED]> wrote:
> > Hi all, I have a dell latitude c505 laptop that has a build-in wireless
> > nic, but when I loaded freebsd 5.3 it did not detect it. I'm guess i have
> > to load a driver via kldload but I have no idea what driver it could be.
> > Anyone know off hand? Dell's website isn't any help.
>
> I'm pretty sure all the Dell built-ins are Orinoco cards.  man wi(4) should
> be the right one.  It lists the Dell Truemobile card.
>
> If your wireless network uses wep, you need to issue a command similar to
> this:
>
> ifconfig wi0 inet 192.168.0.20 netmask 0xff00 ssid my_net \
>wepmode on wepkey 0x8736639624
>
> Or, in /etc/rc.conf, use something like this:
>
> ifconfig_wi0="inet 192.168.0.20  netmask 0xf00 ssid my_net\
> wepmode on wepkey 0x8736639624"
>
> If you're using dhcp for ip/mask assignment, then something like this:
>
> ifconfig_wi0="inet ssid my_net wepmode on wepkey 0x8736639624"
That will result in errors...
You're trying to set the ip-address of the interface to "ssid".

If you want to use DHCP and also want to set specific options to the interface 
(like the ssid / wep-key), you'll need to create a startup-script for the 
interface.

In /etc/rc.conf you just say you want wi0 to get an address via DHCP :
ifconfig_wi0="DHCP"

And in a file named "/etc/start_if.wi0" :
ifconfig wi0 ssid "the name of the network" wepmode on wepkey 0x1234567890

grtz,
Daan








___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: wireless driver for dell latitude d505?

2004-11-29 Thread Paul Schmehl
--On Monday, November 29, 2004 02:51:53 PM -0500 Brian Barto 
<[EMAIL PROTECTED]> wrote:

Hi all, I have a dell latitude c505 laptop that has a build-in wireless
nic, but when I loaded freebsd 5.3 it did not detect it. I'm guess i have
to load a driver via kldload but I have no idea what driver it could be.
Anyone know off hand? Dell's website isn't any help.
I'm pretty sure all the Dell built-ins are Orinoco cards.  man wi(4) should 
be the right one.  It lists the Dell Truemobile card.

If your wireless network uses wep, you need to issue a command similar to 
this:

ifconfig wi0 inet 192.168.0.20 netmask 0xff00 ssid my_net \
  wepmode on wepkey 0x8736639624
Or, in /etc/rc.conf, use something like this:
ifconfig_wi0="inet 192.168.0.20  netmask 0xf00 ssid my_net\
   wepmode on wepkey 0x8736639624"
If you're using dhcp for ip/mask assignment, then something like this:
ifconfig_wi0="inet ssid my_net wepmode on wepkey 0x8736639624"
Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: wireless driver for dell latitude d505?

2004-11-29 Thread Mark
On Mon, Nov 29, 2004 at 02:51:53PM -0500, Brian Barto wrote:
> Hi all, I have a dell latitude c505 laptop that has a build-in wireless 
> nic, but when I loaded freebsd 5.3 it did not detect it. I'm guess i 
> have to load a driver via kldload but I have no idea what driver it 
> could be. Anyone know off hand? Dell's website isn't any help.
> 
> Thanks,
> Brian
> 
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Try "kldload if_wi"  then look in /var/log/messages

also looking in /boot/defaults/loader_config will give a list of moduals
you can load and try.
 
kldunload "mod_name" will remove them from the kernel   


-- 

==

The information contained in this communication is confidential, private,
proprietary, or otherwise privileged and is intended only for the use of the
addressee.  Unauthorized use, disclosure, distribution or copying is strictly
prohibited and may be unlawful.  If you have received this communication in
error, please notify the sender immediately.

==

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Wireless driver

2004-03-16 Thread Teilhard Knight
> On Thursday 11 March 2004 19:44, Teilhard Knight wrote:
> > I am writing my kernel config, and I do not know what wireless driver to
> > pick for an  SMC "SMC2662W" USB adapter.
> >
> > If you could also help me configure my wireless Internet reception, I
will
> > be grateful. I know the Handbook is there, but I have never succeeded
doing
> > what it says.
>
> Have a look at :
> http://vitsch.net/bsd/atuwi
>
> It's a driver for FreeBSD 5.1-RELEASE for these USB WLAN adapters that
I've
> written. It's not yet part of FreeBSD, but that's just a matter of time
since
> the FreeBSD team eagerly wants to have this driver into the main source
tree.
> If you can't get it to work with the step-by-step manual on the site
please
> contact me and I will try to help you.
>
> grtz,
> Daan

This is really cool, Daan. However, I am running FreeBSD 4.9. Do you think
it will work? I am not optimistic after reading a little of the web page. If
it doesn't work, do you know of a driver I can benefit from?

Thank you for taking the time to reply.

Teilhard



30MB & 250MB Web based, POP3 & IMAP4 e-mail.

Sign up now: http://www.ghostmailbox.com


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Wireless driver

2004-03-13 Thread Mark Weinem
On Thu, 11 Mar 2004, Teilhard Knight wrote:

> I am writing my kernel config, and I do not know what wireless driver
> to pick for an  SMC "SMC2662W" USB adapter.

No official support yet...

http://www.linux-wlan.org/docs/wlan_adapters.html.gz
http://at76c503a.berlios.de/devices.html
http://vitsch.net/bsd/



> If you could also help me configure my wireless Internet reception, I
> will be grateful. I know the Handbook is there, but I have never
> succeeded doing what it says.

man ifconfig

For example my wlan card is /dev/acx0 and I use:

ifconfig acx0 inet 192.168.1.4 netmask 255.255.255.0 ssid *** wepmode on 
wepkey *** up

Defaultrouter is the Access Point (AP) 192.168.1.1:

route add default 192.168.1.1


Add a namesever to /etc/resolv.conf:

nameserver IP_ADDRESS


If it works, make your configuration permanent using

/stand/sysinstall -> Configure -> Networking -> Interfaces

or editing /etc/rc.conf directly.


Good luck, Mark Weinem

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"