Sponsored Content
Operating Systems BSD Internet connection with PC BSD Post 302290544 by zer0sig on Monday 23rd of February 2009 02:57:07 PM
Old 02-23-2009
if you're running wireless and trying to connect to an unencrypted network, try this in your /etc/rc.conf

ifconfig_ath0="up"

you would replace ath0 with your detected wifi device (try dmesg |less for this) - you can try rebooting, or /etc/rc.d/netif restart to get it to latch on once you do this. for a WEP network, try (/etc/rc.conf again)

ifconfig_ath0="ssid SSID wepmode mixed weptxkey 1 wepkey KEY DHCP"

where SSID is, that's right, your ssid and KEY is your WEP key. use 0x at the beginning of the key for hex or nothing preceding for ascii.

to retry your device connection, try this simple script:

#!/bin/sh
rm /var/db/dhcli*lease*ath0
ifconfig ath0 down
ifconfig ath0 up
dhclient ath0


if these answers don't help, it's time to read the freebsd handbook. check out /usr/share/doc/en/books/handbook and look for the network-wireless chapter.

best of luck.
 

10 More Discussions You Might Find Interesting

1. IP Networking

Unix Internet Connection

I am trying to set up my internet connection for my unix system and cannot seem to do it. I have a optimum on line service, and use a cable modem, with a usb. The 3 com ethernet card in my Gateway Labtop is recognized but when I hook up the usb and try and connect the usb is unrecognized. I... (14 Replies)
Discussion started by: kdelph
14 Replies

2. UNIX for Advanced & Expert Users

setting up internet connection!!

HI unix guru.. i need your help again.. i tring to setup my sun box for internet connection, i am using @home cable service i have 8 pc running different operating systems. every other computer can go online but this sun box for some reason alway give me and error, i enter my ip address... (1 Reply)
Discussion started by: souldier
1 Replies

3. Solaris

Internet Connection via Lan

I have a sun wokstation running solaris 9 , I want to configuring my lan card to access internet . my IP address : 192.168.144.20 ISP gateway : 192.168.144.1 DNS address : 202.56.250.5 all helps will be appreciated thanks (2 Replies)
Discussion started by: una
2 Replies

4. UNIX for Dummies Questions & Answers

solaris internet connection

Hi everyone, I just installed Solaris 10 in my PC. However, once I finished installing it, I lost my internet connection. When I switch to windows, the internet can run smoothly. Does anyone know how to set up internet connection in Solaris ? I am so sorry, I am new in UNIX (7 Replies)
Discussion started by: qqq
7 Replies

5. UNIX for Dummies Questions & Answers

Connection of SUN to internet and to PC

Hi, 1)If someone could help me out that how could i connect to internet. Below is the system specification, and i have dial up connection. Sun UltraSPARC-IIi 270MHz processor 256 MB memory 8.4 GB HDD 100/10BaseT Ethernet CD-ROM drive 3.5" Floppy drive 2)Also, how to connect Sun to... (0 Replies)
Discussion started by: younics
0 Replies

6. Linux

setting up internet connection

I'm having fedora core4.I have a ADSL modem and can access through Windows.I tried setting up internet connection in linux using setup command and netconfig,but doesn't work. can anybody help me with the steps in detail.also can i use the same ip address as in windows? (7 Replies)
Discussion started by: laddu
7 Replies

7. UNIX for Dummies Questions & Answers

RHEL Internet connection

Hi all :) I got a problem that I need to solve here, its kinda confusing me. I got servers which is RHEL that its not supposed to connect to internet, but right now I want this server to connect to internet, so firewall and everything already open. but I have no idea why it still unable to... (2 Replies)
Discussion started by: flekzout
2 Replies

8. UNIX for Dummies Questions & Answers

check Internet connection?

I am using SUSE OS and want to check internet connection... I have tried: ping -c3 google.com The output i have got is: Unknown host google.com does it means that i do not have Internet connection?? Or please help me with any Command to find Internet connection? Thanks for any help. (1 Reply)
Discussion started by: salil2012
1 Replies

9. Solaris

Internet connection

I got solaris 10 works, but I cannot set up my internet connection. When I ping a website and i open the web browser, it doesn't work. When the installation asked 'Am I in a network?' i answerd 'no'. I think this is my minstake. How can i get Internet, now? I have a ADSL modem (not router).... (5 Replies)
Discussion started by: mghis
5 Replies

10. IP Networking

Sharing internet connection

Hello all, Recently took a dive into Unix using Fedora 12 atm. I have cable modem with DHCP and a linksys 8 port router. With windows I was able to simple use the uplink port and plug each computer into the switch and use the internet connection. Having no luck doing the same in Unix. I have... (0 Replies)
Discussion started by: Fingerz
0 Replies
WPI(4)							   BSD Kernel Interfaces Manual 						    WPI(4)

NAME
wpi -- Intel 3945ABG Wireless LAN IEEE 802.11 driver SYNOPSIS
To compile this driver into the kernel, place the following lines in your kernel configuration file: device wpi device wpifw device pci device wlan device wlan_amrr device firmware Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): if_wpi_load="YES" DESCRIPTION
The wpi driver provides support for the Intel 3945ABG Wireless network adapter. wpi supports station, adhoc, and monitor mode operation. Only one virtual interface may be configured at any time. For more information on configuring this device, see ifconfig(8). This driver requires the firmware built with the wpifw module to work. FILES
/usr/share/doc/legal/intel_wpi/LICENSE wpi firmware license EXAMPLES
Join an existing BSS network (i.e., connect to an access point): ifconfig wlan0 create wlandev wpi0 inet 192.168.0.20 netmask 0xffffff00 Join a specific BSS network with network name ``my_net'': ifconfig wlan0 create wlandev wpi0 ssid my_net up Join a specific BSS network with 64-bit WEP encryption: ifconfig wlan0 create wlandev wpi0 ssid my_net wepmode on wepkey 0x1234567890 weptxkey 1 up Join a specific BSS network with 128-bit WEP encryption: ifconfig wlan0 create wlandev wpi0 wlanmode adhoc ssid my_net wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 DIAGNOSTICS
wpi%d: could not load firmware image '%s' The driver failed to load the firmware image using the firmware(9) subsystem. Verify the wpifw firmware module is installed. wpi%d: fatal firmware error An unknown error has occurred in the uploaded firmware, you may have to unload/reload the driver to continue. wpi%d: Radio transmitter is switched off The hardware switch controlling the radio is currently turned off. Data transmission is not possi- ble in this state. SEE ALSO
pci(4), wlan(4), wlan_ccmp(4), wlan_tkip(4), wlan_wep(4), wpifw(4), ifconfig(8), wpa_supplicant(8) AUTHORS
The original wpi driver was written for OpenBSD by Damien Bergamini <damien.bergamini@free.fr>. Benjamin Close <benjsc@FreeBSD.org> ported wpi to FreeBSD. BUGS
Not all the error messages are documented here. Background scanning is not currently supported. BSD
October 5, 2008 BSD
All times are GMT -4. The time now is 10:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy