WI-FI stuff ?

2003-09-30 Thread Frank Bonnet
Hi

Is there some Wi-Fi related stuff somewhere
on FreeBSD area ?

I need to test some HP/compaq notebooks with 
integrated WI-FI interfaces with FreeBSD and Linux.

Thanks a lot.
-- 
Frank Bonnet 
Groupe ESIEE Paris

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


Re: WI-FI stuff ?

2003-09-30 Thread Andrew L. Gould
On Tuesday 30 September 2003 04:03 am, Frank Bonnet wrote:
 Hi

 Is there some Wi-Fi related stuff somewhere
 on FreeBSD area ?

 I need to test some HP/compaq notebooks with
 integrated WI-FI interfaces with FreeBSD and Linux.

 Thanks a lot.

The handbook's always a good place to start:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-wireless.html

and then there's:

http://www.onlamp.com/pub/a/bsd/2001/04/05/Big_Scary_Daemons.html
http://www.onlamp.com/pub/a/bsd/2001/04/19/Big_Scary_Daemons.html
http://bsdvault.net/sections.php?op=viewarticleartid=115

or if you have, or know someone who has, SysAdmin archive cd's:

http://www.samag.com/documents/s=7121/sam0205a/sam0205a.htm

last, but not least, search google.

Best of luck,

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


Re: WI-FI stuff ?

2003-09-30 Thread Andrew L. Gould
On Tuesday 30 September 2003 11:08 am, Frank Bonnet wrote:
 Best of luck,
 
 Andrew Gould

 it's working ! ... except I cannot use DHCP for the moment to bootup the
 client
 but if I enter an IP address manually it works

Since I need various wifi configurations on my laptop, I use startup scripts 
in /usr/local/etc/rc.d.  They are turned off (that is, they don't end in 
'.sh') so that I can choose the configuration manually after bootup.

The text to /usr/local/etc/rc.d/wi0.dhcp.sh.off is below.  It assumes that the 
laptop is a client to an access point that uses WEP.  Replace the ssidname 
and wepkey in the start section.  Change 'wi0' to the interface device, if 
needed.  If you want it to start at bootup, rename the file without the 
'.off'.


#!/bin/sh
# /usr/local/etc/rc.d/wi0.dhcp.sh.off
# Configure wireless interface using DHCP

case $1 in 
start)
ifconfig wi0 ssid ssidname authmode shared nwkey 0xaa
dhclient wi0
echo ' wi0'
;;
stop)
kill `cat /var/run/dhclient.pid`
ifconfig wi0 remove
echo ' wi0 removed'
;;
status)
ifconfig wi0
;;
*)
echo 'usage: /usr/local/etc/rc.d/wi0.dhcp.sh.off [start|stop|status]'
;;
esac

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