View Poll Results: Has this thread been helpful?

Voters
811. You may not vote on this poll
  • Yes

    550 67.82%
  • No

    104 12.82%
  • Somewhat

    157 19.36%
Page 153 of 184 FirstFirst ... 53103143151152153154155163 ... LastLast
Results 1,521 to 1,530 of 1832

Thread: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

  1. #1521
    Join Date
    Nov 2005
    Beans
    82

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    I just bought a trendnet TEW-424UB:
    Code:
    wesley@kids-desktop:~$ lsusb
    Bus 002 Device 001: ID 0000:0000  
    Bus 001 Device 002: ID 0bda:8189 Realtek Semiconductor Corp. 
    Bus 001 Device 001: ID 0000:0000
    I used the modified driver from here: http://www.datanorth.net/~cuervo/rtl8187b/.

    This seemed to work to get the hardware portion working:

    Code:
    wesley@kids-desktop:~$ iwconfig
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    wlan0     802.11b/g  Mode:Managed  Channel=8  
              Access Point: Not-Associated   Bit Rate:11 Mb/s   
              Retry:on   Fragment thr:off
              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:0   Missed beacon:0
    Code:
    wesley@kids-desktop:~$ sudo iwlist wlan0 scan
    wlan0     Scan completed :
              Cell 01 - Address: 00:18:F8:6D:97:E6
                        ESSID:"linksys"
                        Protocol:IEEE 802.11bg
                        Mode:Master
                        Channel:11
                        Encryption key:on
                        Bit Rates:54 Mb/s
                        Extra: Rates (Mb/s): 1 2 5.5 6 9 11 12 18 24 36 48 54 
                        Quality:17  Signal level:0  Noise level:77
                        Extra: Last beacon: 1850ms ago
    Code:
    wesley@kids-desktop:~$ ifconfig
    eth0      Link encap:Ethernet  HWaddr 00:17:9a:39:e1:5a  
              inet addr:192.168.1.103  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: fe80::217:9aff:fe39:e15a/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:12234 errors:0 dropped:0 overruns:0 frame:0
              TX packets:9497 errors:0 dropped:0 overruns:0 carrier:0
              collisions:31 txqueuelen:1000 
              RX bytes:13714273 (13.0 MB)  TX bytes:1316310 (1.2 MB)
              Interrupt:11 Base address:0x2000 
    
    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:2324 errors:0 dropped:0 overruns:0 frame:0
              TX packets:2324 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:116640 (113.9 KB)  TX bytes:116640 (113.9 KB)
    
    wlan0     Link encap:Ethernet  HWaddr 00:14:d1:48:1e:1c  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:48 dropped:232 overruns:0 frame:0
              TX packets:4308 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:180936 (176.6 KB)
    
    wlan0:avahi Link encap:Ethernet  HWaddr 00:14:d1:48:1e:1c  
              inet addr:169.254.3.147  Bcast:169.254.255.255  Mask:255.255.0.0
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
    After setting up my interfaces file:

    Code:
    auto lo
    iface lo inet loopback
    
    auto wlan0
    iface wlan0 inet dhcp
    wpa-driver wext
    wpa-ssid linksys 
    wpa-ap-scan 1
    wpa-proto RSN
    wpa-pairwise CCMP
    wpa-group CCMP
    wpa-key-mgmt WPA-PSK 
    wpa-psk KEY_GOES_HERE

    And restarting networking, I get the following error:

    Code:
    wesley@kids-desktop:~$ sudo /etc/init.d/networking restart
     * Reconfiguring network interfaces...                                          There is already a pid file /var/run/dhclient.wlan0.pid with pid 7344
    killed old client process, removed PID file
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    Listening on LPF/wlan0/00:14:d1:48:1e:1c
    Sending on   LPF/wlan0/00:14:d1:48:1e:1c
    Sending on   Socket/fallback
    There is already a pid file /var/run/dhclient.wlan0.pid with pid 134519072
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    Listening on LPF/wlan0/00:14:d1:48:1e:1c
    Sending on   LPF/wlan0/00:14:d1:48:1e:1c
    Sending on   Socket/fallback
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 14
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 11
    No DHCPOFFERS received.
    No working leases in persistent database - sleeping.
    Did I grab the wrong driver, or did I set up my interfaces file incorrectly?

  2. #1522
    Join Date
    May 2006
    Location
    United Kingdom
    Beans
    469
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    Even though the hardware is detected that doesn't mean the driver is 100% working. Output your dmesg too from terminal.

    You aren't being issued an IP address hence the 169.254.x.x address for wlan0.

    Take a look here where someone else used ndiswrapper to fix their problem.

    HTH

  3. #1523
    Join Date
    Nov 2005
    Beans
    82

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    Here is what I see in dmesg:

    Code:
    [  452.413726] ieee80211_crypt: registered algorithm 'NULL'
    [  452.435893] ieee80211_crypt: registered algorithm 'WEP'
    [  452.473905] ieee80211_crypt: registered algorithm 'TKIP'
    [  452.523760] ieee80211_crypt: registered algorithm 'CCMP'
    [  452.740907] r8187: no version for "ieee80211_reset_queue" found: kernel tainted.
    [  452.746219] 
    [  452.746225] Linux kernel driver for RTL8187/RTL8187B based WLAN cards
    [  452.746233] Copyright (c) 2004-2005, Andrea Merello
    [  452.746237] rtl8187: Initializing module
    [  452.746240] rtl8187: Wireless extensions version 22
    [  452.746243] rtl8187: Initializing proc filesystem
    [  452.752008] rtl8187: Reported EEPROM chip is a 93c46 (1Kbit)
    [  453.834905] rtl8187: Card MAC address is 00:14:d1:48:1e:1c
    [  455.204566] rtl8187: PAPE from CONFIG2: 0
    [  455.205657] rtl8187: Driver probe completed
    [  455.205660] 
    [  455.205697] usbcore: registered new interface driver rtl8187
    [  455.506361] rtl8187: Card successfully reset
    [  455.506386] This is RTL8187B Reset procedure
    [  467.055203] WIRELESS_MODE_G
    [  467.088127] Set chan.call ieee80211_start_bss.in start bss call check.<6>ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  467.384829] Set chan.call ieee80211_start_bss.in start bss call check.<6>rtl8187: Setting SW wep key
    [  467.682930] rtl8187: Setting SW wep key
    [  467.682970] rtl8187: Setting SW wep key
    [  467.683005] rtl8187: Setting SW wep key
    [  477.715144] Linking with linksys
    [  477.831991] Associated successfully
    [  477.832007] Using G rates
    [  477.931211] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [  481.805266] rtl8187: Setting SW wep key
    [  481.805326] rtl8187: Setting SW wep key
    [  481.805362] rtl8187: Setting SW wep key
    [  481.805397] rtl8187: Setting SW wep key
    [  481.805430] rtl8187: Setting SW wep key
    [  481.913804] Associated successfully
    [  481.913823] Using G rates

    The setting SW wep key is repeated constantly (about every 4 seconds)..... Then when I tried to restart /etc/init.d/networking

    Code:
    [  597.060695] rtl8187: Setting SW wep key
    [  597.060754] rtl8187: Setting SW wep key
    [  597.060789] rtl8187: Setting SW wep key
    [  597.060823] rtl8187: Setting SW wep key
    [  597.060859] rtl8187: Setting SW wep key
    [  597.429841] Associated successfully
    [  597.429862] Using G rates
    [  597.835807] rtl8180_close process 
    [  597.835824] rtl8180_down process 
    [  597.850688] RX Status Error!
    [  597.850710] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.851542] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.853558] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.854539] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.855537] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.856535] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.857535] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.858533] RX process aborted due to explicit shutdown (ffffff8d) RX Status Error!
    [  597.859535] RX process aborted due to explicit shutdown (fffffffe) RX Status Error!
    [  597.861560] RX process aborted due to explicit shutdown (fffffffe) RX Status Error!
    [  597.862532] RX process aborted due to explicit shutdown (fffffffe) RX Status Error!
    [  597.863529] RX process aborted due to explicit shutdown (fffffffe) RX Status Error!
    [  597.864530] RX process aborted due to explicit shutdown (fffffffe) RX Status Error!
    [  597.865529] RX process aborted due to explicit shutdown (fffffffe) RX Status Error!
    [  597.866526] RX process aborted due to explicit shutdown (fffffffe) RX Status Error!
    [  597.867528] RX process aborted due to explicit shutdown (fffffffe) <6>rtl8187: Setting SW wep key
    [  597.973462] rtl8187: Setting SW wep key
    [  597.973501] rtl8187: Setting SW wep key
    [  597.973535] rtl8187: Setting SW wep key
    [  597.973570] rtl8187: Setting SW wep key
    [  598.281306] rtl8187: Card successfully reset
    [  598.281328] This is RTL8187B Reset procedure
    [  610.447488] WIRELESS_MODE_G
    [  610.477423] Set chan.call ieee80211_start_bss.in start bss call check.<6>ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [  610.771168] Set chan.call ieee80211_start_bss.in start bss call check.<6>Linking with linksys
    [  610.993886] Associated successfully
    [  610.993905] Using G rates
    [  611.068846] rtl8187: Setting SW wep key
    [  611.068918] rtl8187: Setting SW wep key
    [  611.068962] rtl8187: Setting SW wep key
    [  611.069004] rtl8187: Setting SW wep key
    [  611.123193] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [  614.945138] rtl8187: Setting SW wep key
    [  614.945227] rtl8187: Setting SW wep key
    [  614.945265] rtl8187: Setting SW wep key
    [  614.945300] rtl8187: Setting SW wep key
    [  614.945337] rtl8187: Setting SW wep key
    [  615.052727] Associated successfully
    [  615.052743] Using G rates
    Unfortunately the link you gave me for the ndiswrapper is for a different chipset:

    Code:
    wesley@kids-desktop:~/tmp/rtl8187b-modified$ lsusb
    Bus 002 Device 001: ID 0000:0000  
    Bus 001 Device 002: ID 0bda:8189 Realtek Semiconductor Corp. 
    Bus 001 Device 001: ID 0000:0000
    Does the dmesg tell you anything?

  4. #1524
    Join Date
    May 2006
    Location
    100acrewood
    Beans
    7,294
    Distro
    Kubuntu 17.10 Artful Aardvark

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    Quote Originally Posted by sputnikkk View Post
    Is the info in the change log highlited in RED, still true 1 year later, or has it just not been tried since then?
    Yes, it sadly is.

  5. #1525
    Join Date
    May 2006
    Location
    United Kingdom
    Beans
    469
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    If you can get the windows .inf driver for your USB adapter then it should work. I personally would try ndiswrapper (ndisgtk for frontend in Synaptic) to get an exact driver match for your device.

    You could also try fixed IP address too as DHCP isn't assigning an IP for you.

  6. #1526
    Join Date
    May 2006
    Location
    100acrewood
    Beans
    7,294
    Distro
    Kubuntu 17.10 Artful Aardvark

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    Quote Originally Posted by geezerone View Post
    If you can get the windows .inf driver for your USB adapter then it should work. I personally would try ndiswrapper (ndisgtk for frontend in Synaptic) to get an exact driver match for your device.

    You could also try fixed IP address too as DHCP isn't assigning an IP for you.
    +1

    Way to go.

  7. #1527
    Join Date
    Jun 2008
    Location
    Virginia, USA
    Beans
    56
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    Hi. I've been struggling with this for the past few days, and I still can't get connected with WPA. I have a Linksys WMP300N PCI adapter and can connect with > WPA on XP, but not with ubuntu. I can connect fine on an unsecured router. I've tried wicd, but that isn't helping either.

    Here's my interfaces file:

    auto lo
    iface lo inet loopback

    auto wlan0
    iface wlan0 inet dhcp
    #wireless-essid dlink

    wpa-driver wext
    wpa-ssid tasha
    wpa-ap-scan 1
    wpa-proto RSN WPA
    wpa-pairwise CCMP TKIP
    wpa-group CCMP TKIP
    wpa-key-mgmt WPA-PSK
    wpa-psk xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

    My wpa_supplicant.conf file:

    ap_scan=1
    ctrl_interface=/var/run/wpa_supplicant

    network={
    ssid="tasha"
    scan_ssid=0
    key_mgmt=WPA-PSK
    proto=WPA
    #psk="zzzzzzzzzzzzzzzzzzzzz"
    psk=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx x
    pairwise=TKIP
    group=TKIP
    }

    tim@linux-loft:/etc/network$ iwconfig
    lo no wireless extensions.

    eth0 no wireless extensions.

    wlan0 IEEE 802.11g ESSID:"dlink"
    Mode:Managed Frequency:2.412 GHz Access Point: 00:1E:58:E9:2E:23
    Bit Rate=130 Mb/s Tx-Power:32 dBm
    RTS thr:2347 B Fragment thr:2346 B
    Power Managementff
    Link Quality:60/100 Signal level:-57 dBm Noise level:-96 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0


    tim@linux-loft:/etc/network$ ndiswrapper -l
    bcmwl5 : driver installed
    device (14E4:4329) present

    (I want essid tasha)

    tim@linux-loft:/etc/network$ iwlist scan
    lo Interface doesn't support scanning.

    eth0 Interface doesn't support scanning.

    wlan0 Scan completed :
    Cell 01 - Address: 00:1E:58:E9:2E:23
    ESSID:"dlink"
    Protocol:IEEE 802.11g
    Mode:Managed
    Frequency:2.412 GHz (Channel 1)
    Quality:60/100 Signal level:-57 dBm Noise level:-96 dBm
    Encryption keyff
    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
    11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
    48 Mb/s; 54 Mb/s
    Extra:bcn_int=100
    Extra:atim=0
    Cell 02 - Address: 00:15:E9:1E:BC:4A
    ESSID:"default"
    Protocol:IEEE 802.11g
    Mode:Managed
    Frequency:2.412 GHz (Channel 1)
    Quality:42/100 Signal level:-69 dBm Noise level:-96 dBm
    Encryption keyff
    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
    12 Mb/s; 24 Mb/s; 36 Mb/s; 9 Mb/s; 18 Mb/s
    48 Mb/s; 54 Mb/s
    Extra:bcn_int=100
    Extra:atim=0
    Cell 03 - Address: 00:1C:10:CB:E8:92
    ESSID:"tasha"
    Protocol:IEEE 802.11g
    Mode:Managed
    Frequency:2.412 GHz (Channel 1)
    Quality:35/100 Signal level:-73 dBm Noise level:-96 dBm
    Encryption keyn
    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
    24 Mb/s; 36 Mb/s; 54 Mb/s; 6 Mb/s; 9 Mb/s
    12 Mb/s; 48 Mb/s
    Extra:bcn_int=100
    Extra:atim=0
    IE: WPA Version 1
    Group Cipher : TKIP
    Pairwise Ciphers (1) : TKIP
    Authentication Suites (1) : PSK
    Cell 04 - Address: 00:18:01:F8:5C:AF
    ESSID:"RCZE4"
    Protocol:IEEE 802.11g
    Mode:Managed
    Frequency:2.412 GHz (Channel 1)
    Quality:42/100 Signal level:-69 dBm Noise level:-96 dBm
    Encryption keyn
    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
    11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
    48 Mb/s; 54 Mb/s
    Extra:bcn_int=100
    Extra:atim=0
    Cell 05 - Address: 00:18:01:E5:78:A0
    ESSID:""
    Protocol:IEEE 802.11g
    Mode:Managed
    Frequency:2.427 GHz (Channel 4)
    Quality:26/100 Signal level:-79 dBm Noise level:-96 dBm
    Encryption keyff
    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
    9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
    48 Mb/s; 54 Mb/s
    Extra:bcn_int=100
    Extra:atim=0
    Cell 06 - Address: 00:18:F8:FB:27:A5
    ESSID:"M&L"
    Protocol:IEEE 802.11g
    Mode:Managed
    Frequency:2.437 GHz (Channel 6)
    Quality:32/100 Signal level:-75 dBm Noise level:-96 dBm
    Encryption keyff
    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
    24 Mb/s; 36 Mb/s; 54 Mb/s; 6 Mb/s; 9 Mb/s
    12 Mb/s; 48 Mb/s
    Extra:bcn_int=100
    Extra:atim=0

    tim@linux-loft:/etc/network$



    When I try to restart my network after disconnecting from the unsecured access and quiting wicd I get this in daemon.log:

    Aug 5 19:40:08 linux-loft dhclient: There is already a pid file /var/run/dhclient.wlan0.pid with pid 12838
    Aug 5 19:40:08 linux-loft dhclient: removed stale PID file
    Aug 5 19:40:08 linux-loft dhclient: Internet Systems Consortium DHCP Client V3.0.6
    Aug 5 19:40:08 linux-loft dhclient: Copyright 2004-2007 Internet Systems Consortium.
    Aug 5 19:40:08 linux-loft dhclient: All rights reserved.
    Aug 5 19:40:08 linux-loft dhclient: For info, please visit http://www.isc.org/sw/dhcp/
    Aug 5 19:40:08 linux-loft dhclient:
    Aug 5 19:40:08 linux-loft dhclient: Listening on LPF/wlan0/00:1e:e5:fa:3a:09
    Aug 5 19:40:08 linux-loft dhclient: Sending on LPF/wlan0/00:1e:e5:fa:3a:09
    Aug 5 19:40:08 linux-loft dhclient: Sending on Socket/fallback
    Aug 5 19:40:08 linux-loft dhclient: DHCPRELEASE on wlan0 to 192.168.0.1 port 67
    Aug 5 19:40:08 linux-loft dhclient: send_packet: Network is unreachable
    Aug 5 19:40:08 linux-loft dhclient: send_packet: please consult README file regarding broadcast address.
    Aug 5 19:40:08 linux-loft avahi-daemon[5015]: Withdrawing address record for fe80::21e:e5ff:fefa:3a09 on wlan0.
    Aug 5 19:40:09 linux-loft dhclient: There is already a pid file /var/run/dhclient.wlan0.pid with pid 134519072
    Aug 5 19:40:09 linux-loft dhclient: Internet Systems Consortium DHCP Client V3.0.6
    Aug 5 19:40:09 linux-loft dhclient: Copyright 2004-2007 Internet Systems Consortium.
    Aug 5 19:40:09 linux-loft dhclient: All rights reserved.
    Aug 5 19:40:09 linux-loft dhclient: For info, please visit http://www.isc.org/sw/dhcp/
    Aug 5 19:40:09 linux-loft dhclient:
    Aug 5 19:40:10 linux-loft avahi-daemon[5015]: Registering new address record for fe80::21e:e5ff:fefa:3a09 on wlan0.*.
    Aug 5 19:40:10 linux-loft dhclient: Listening on LPF/wlan0/00:1e:e5:fa:3a:09
    Aug 5 19:40:10 linux-loft dhclient: Sending on LPF/wlan0/00:1e:e5:fa:3a:09
    Aug 5 19:40:10 linux-loft dhclient: Sending on Socket/fallback
    Aug 5 19:40:11 linux-loft dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6
    Aug 5 19:40:17 linux-loft dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15
    Aug 5 19:40:32 linux-loft dhclient: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10
    Aug 5 19:40:42 linux-loft dhclient: No DHCPOFFERS received.
    Aug 5 19:40:42 linux-loft dhclient: No working leases in persistent database - sleeping.
    Aug 5 19:40:42 linux-loft avahi-autoipd(wlan0)[15173]: Found user 'avahi-autoipd' (UID 105) and group 'avahi-autoipd' (GID 113).
    Aug 5 19:40:42 linux-loft avahi-autoipd(wlan0)[15173]: Successfully called chroot().
    Aug 5 19:40:42 linux-loft avahi-autoipd(wlan0)[15173]: Successfully dropped root privileges.
    Aug 5 19:40:42 linux-loft avahi-autoipd(wlan0)[15173]: Starting with address 169.254.5.236
    Aug 5 19:40:47 linux-loft avahi-autoipd(wlan0)[15173]: Callout BIND, address 169.254.5.236 on interface wlan0
    Aug 5 19:40:47 linux-loft avahi-daemon[5015]: Joining mDNS multicast group on interface wlan0.IPv4 with address 169.254.5.236.
    Aug 5 19:40:47 linux-loft avahi-daemon[5015]: New relevant interface wlan0.IPv4 for mDNS.
    Aug 5 19:40:47 linux-loft avahi-daemon[5015]: Registering new address record for 169.254.5.236 on wlan0.IPv4.
    Aug 5 19:40:51 linux-loft avahi-autoipd(wlan0)[15173]: Successfully claimed IP address 169.254.5.236
    Aug 5 19:41:11 linux-loft ntpdate[15236]: can't find host ntp.ubuntu.com
    Aug 5 19:41:11 linux-loft ntpdate[15236]: no servers can be used, exiting

    ####################

    Thanks for any help.

  8. #1528
    Join Date
    Jul 2008
    Beans
    5

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    so... i've tryed again and im still unable to conect
    to my wpa network, any idea of what might be wrong???
    i have a wrt160n. i must say also that i am new to linux
    and i have no idea really. im trying to use ubunto on
    an hp tx2000. 1 more thing ,i know tha my wifi works
    in ubuntu because if i dont use any type of security
    i will conect but thats not what i want to do i want
    to use either wpa or wap2

    ubuntu@ubuntu:~$ route
    Code:
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    link-local      *               255.255.0.0     U     0      0        0 wlan0
    link-local      *               255.255.0.0     U     0      0        0 eth0
    link-local      *               255.255.0.0     U     1000   0        0 wlan0
    default         *               0.0.0.0         U     1000   0        0 wlan0
    ubuntu@ubuntu:~$ iwconfig
    Code:
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    wlan0     IEEE 802.11g  ESSID:"0987654321"  
              Mode:Managed  Frequency:2.412 GHz  Access Point: 00:1E:E5:4F:CD:FD   
              Bit Rate=130 Mb/s   Tx-Power:32 dBm   
              RTS thr:2347 B   Fragment thr:2346 B   
              Power Management:off
              Link Quality:79/100  Signal level:-45 dBm  Noise level:-96 dBm
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:71  Invalid misc:13748   Missed beacon:0
    ubuntu@ubuntu:~$ sudo iwlist scan
    Code:
    [sudo] password for ubuntu: 
    lo        Interface doesn't support scanning.
    
    eth0      Interface doesn't support scanning.
    
    wlan0     Scan completed :
              Cell 01 - Address: 00:1E:E5:4F:CD:FD
                        ESSID:"0987654321"
                        Protocol:IEEE 802.11g
                        Mode:Managed
                        Frequency:2.437 GHz (Channel 6)
                        Quality:71/100  Signal level:-50 dBm  Noise level:-96 dBm
                        Encryption key:on
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 6 Mb/s; 9 Mb/s
                                  11 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
                                  48 Mb/s; 54 Mb/s
                        Extra:bcn_int=100
                        Extra:atim=0
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : TKIP
                            Authentication Suites (1) : PSK
              Cell 02 - Address: 00:1C:10:28:73:20
                        ESSID:"Tigress74"
                        Protocol:IEEE 802.11g
                        Mode:Managed
                        Frequency:2.437 GHz (Channel 6)
                        Quality:71/100  Signal level:-50 dBm  Noise level:-96 dBm
                        Encryption key:on
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                                  24 Mb/s; 36 Mb/s; 54 Mb/s; 6 Mb/s; 9 Mb/s
                                  12 Mb/s; 48 Mb/s
                        Extra:bcn_int=100
                        Extra:atim=0
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : TKIP
                            Authentication Suites (1) : PSK
              Cell 03 - Address: 00:0F:66:CC:28:80
                        ESSID:"linksys"
                        Protocol:IEEE 802.11g
                        Mode:Managed
                        Frequency:2.437 GHz (Channel 6)
                        Quality:28/100  Signal level:-78 dBm  Noise level:-96 dBm
                        Encryption key:on
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                                  24 Mb/s; 36 Mb/s; 54 Mb/s; 6 Mb/s; 9 Mb/s
                                  12 Mb/s; 48 Mb/s
                        Extra:bcn_int=100
                        Extra:atim=0
              Cell 04 - Address: 00:1E:2A:51:1E:B8
                        ESSID:"MEGAAHHHN"
                        Protocol:IEEE 802.11g
                        Mode:Managed
                        Frequency:2.462 GHz (Channel 11)
                        Quality:17/100  Signal level:-85 dBm  Noise level:-96 dBm
                        Encryption key:on
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                                  12 Mb/s; 24 Mb/s; 36 Mb/s; 9 Mb/s; 18 Mb/s
                                  48 Mb/s; 54 Mb/s
                        Extra:bcn_int=100
                        Extra:atim=0
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : TKIP
                            Authentication Suites (1) : PSK
              Cell 05 - Address: 00:1C:DF:8C:C7:37
                        ESSID:"Belkin_G_Plus_MIMO_8CC737"
                        Protocol:IEEE 802.11g
                        Mode:Managed
                        Frequency:2.412 GHz (Channel 1)
                        Quality:10/100  Signal level:-89 dBm  Noise level:-96 dBm
                        Encryption key:off
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                                  18 Mb/s; 36 Mb/s; 54 Mb/s; 6 Mb/s; 12 Mb/s
                                  24 Mb/s; 48 Mb/s
                        Extra:bcn_int=100
                        Extra:atim=0
    ubuntu@ubuntu:~$ sudo lshw -C network
    Code:
     *-network               
           description: Wireless interface
           product: BCM4328 802.11a/b/g/n
           vendor: Broadcom Corporation
           physical id: 0
           bus info: pci@0000:03:00.0
           logical name: wlan0
           version: 03
           serial: 00:1a:73:ff:50:58
           width: 64 bits
           clock: 33MHz
           capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
           configuration: broadcast=yes driver=ndiswrapper+bcmwl5 driverversion=1.52+Broadcom,10/12/2006, 4.100. latency=0 link=no module=ndiswrapper multicast=yes wireless=IEEE 802.11g
    ubuntu@ubuntu:~$ sudo cat /etc/network/interfaces
    Code:
    auto lo
    iface lo inet loopback
    
    auto wlan0
    iface wlan0 inet dhcp
    wpa-driver wext
    wpa-ssid 0987654321
    wpa-ap-scan 1
    wpa-proto WPA RSN
    wpa-pairwise TKIP CCMP
    wpa-group TKIP CCMP
    wpa-key-mgmt WPA-PSK
    wpa-psk  b57bb5ed4ff49cb4ea629840c4ea4522d5344200e30fa22583defbf8a66c8410
    ubuntu@ubuntu:~$ sudo ifdown -v wlan0
    Code:
    Configuring interface wlan0=wlan0 (inet)
    run-parts --verbose /etc/network/if-down.d
    run-parts: executing /etc/network/if-down.d/avahi-autoipd
    run-parts: executing /etc/network/if-down.d/wpasupplicant
    dhclient3 -r -pf /var/run/dhclient.wlan0.pid -lf /var/lib/dhcp3/dhclient.wlan0.leases wlan0
    There is already a pid file /var/run/dhclient.wlan0.pid with pid 5784
    killed old client process, removed PID file
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    Listening on LPF/wlan0/00:1a:73:ff:50:58
    Sending on   LPF/wlan0/00:1a:73:ff:50:58
    Sending on   Socket/fallback
    DHCPRELEASE on wlan0 to 192.168.2.1 port 67
    ifconfig wlan0 down
    run-parts --verbose /etc/network/if-post-down.d
    run-parts: executing /etc/network/if-post-down.d/avahi-daemon
    run-parts: executing /etc/network/if-post-down.d/wireless-tools
    run-parts: executing /etc/network/if-post-down.d/wpasupplicant
    wpa_supplicant: terminating wpa_supplicant daemon via pidfile /var/run/wpa_supplicant.wlan0.pid
    Stopped /sbin/wpa_supplicant (pid 4823).
    ubuntu@ubuntu:~$ sudo ifup -v wlan0
    Code:
    Configuring interface wlan0=wlan0 (inet)
    run-parts --verbose /etc/network/if-pre-up.d
    run-parts: executing /etc/network/if-pre-up.d/wireless-tools
    run-parts: executing /etc/network/if-pre-up.d/wpasupplicant
    wpa_supplicant: wpa-driver wext
    wpa_supplicant: /sbin/wpa_supplicant -B -P /var/run/wpa_supplicant.wlan0.pid -i wlan0 -D wext -C /var/run/wpa_supplicant
    Starting /sbin/wpa_supplicant...
    wpa_supplicant: ctrl_interface socket located at /var/run/wpa_supplicant/wlan0
    wpa_supplicant: wpa-ap-scan 1 -- OK
    wpa_supplicant: configuring network block -- 0
    wpa_supplicant: wpa-ssid "0987654321" -- OK
    wpa_supplicant: wpa-psk ***** -- OK
    wpa_supplicant: wpa-pairwise TKIP CCMP -- OK
    wpa_supplicant: wpa-group TKIP CCMP -- OK
    wpa_supplicant: wpa-key-mgmt WPA-PSK -- OK
    wpa_supplicant: wpa-proto WPA RSN -- OK
    wpa_supplicant: enabling network block 0 -- OK
    
    dhclient3 -e IF_METRIC=100 -pf /var/run/dhclient.wlan0.pid -lf /var/lib/dhcp3/dhclient.wlan0.leases wlan0
    There is already a pid file /var/run/dhclient.wlan0.pid with pid 0
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    Listening on LPF/wlan0/00:1a:73:ff:50:58
    Sending on   LPF/wlan0/00:1a:73:ff:50:58
    Sending on   Socket/fallback
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10
    DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 7
    No DHCPOFFERS received.
    No working leases in persistent database - sleeping.
    run-parts --verbose /etc/network/if-up.d
    run-parts: executing /etc/network/if-up.d/avahi-autoipd
    run-parts: executing /etc/network/if-up.d/avahi-daemon
    run-parts: executing /etc/network/if-up.d/mountnfs
    run-parts: executing /etc/network/if-up.d/ntpdate
    run-parts: executing /etc/network/if-up.d/wpasupplicant
    Last edited by Ziggy8.04; August 9th, 2008 at 03:41 AM.

  9. #1529
    Join Date
    Aug 2008
    Beans
    2

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    Hello

    I've been struggling with this for few days and have searched many posts and forums and hope posting here will help.

    I've a dell inspiron 1525 with ubuntu 8.04/ vista dual boot and a WIRELESS DELL 1395 (802.B/G) MINI CARD F trying to connect to a netgear dg834g router using WPA-PSk. I've got WEP working on both OSs and WPA on vista but not on ubuntu.

    I installed wireless drivers using these instructions...
    http://ubuntuforums.org/showthread.p...ht=ndiswrapper

    here is my outputs before restarting networking - hope the formatting works.

    nome@nome-laptop:~$ sudo iwconfig
    Code:
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    eth1      IEEE 802.11bg  ESSID:""  Nickname:""
              Mode:Managed  Frequency:2.412 GHz  Access Point: Not-Associated   
              Bit Rate:54 Mb/s   Tx-Power:32 dBm   
              Retry min limit:7   RTS thr:off   Fragment thr:off
              Power Management:off
              Link Quality=5/5  Signal level=0 dBm  Noise level=0 dBm
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:0   Missed beacon:0
    nome@nome-laptop:~$ sudo iwlist scan
    Code:
    lo        Interface doesn't support scanning.
    
    eth0      Interface doesn't support scanning.
    
    eth1      Scan completed :
    
              Cell 04 - Address: 00:0F:B5:79:7F:74
                        ESSID:"n99"
                        Mode:Managed
                        Frequency:2.462 GHz (Channel 11)
                        Quality:5/5  Signal level:-41 dBm  Noise level:-27 dBm
                        IE: WPA Version 1
                            Group Cipher : TKIP
                            Pairwise Ciphers (1) : TKIP
                            Authentication Suites (1) : PSK
                        Encryption key:on
                        Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 22 Mb/s
                                  6 Mb/s; 9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s
                                  36 Mb/s; 48 Mb/s; 54 Mb/s
    nome@nome-laptop:~$ sudo cat /etc/network/interfaces
    Code:
    auto lo
    iface lo inet loopback
    
    auto eth1
    iface eth1 inet dhcp
    wpa-ssid n99
    wpa-driver wext
    wpa-proto WPA
    wpa-ap-scan 1
    wpa-pairwise TKIP
    wpa-group TKIP 
    wpa-key-mgmt WPA-PSK
    wpa-psk <my key>
    then I restart

    nome@nome-laptop:~$ sudo /etc/init.d/networking restart
    Code:
    * Reconfiguring network interfaces...                                          There is already a pid file /var/run/dhclient.eth1.pid with pid 5970
    killed old client process, removed PID file
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    Listening on LPF/eth1/00:1f:e1:c6:07:7a
    Sending on   LPF/eth1/00:1f:e1:c6:07:7a
    Sending on   Socket/fallback
    DHCPRELEASE on eth1 to 192.168.0.1 port 67
    There is already a pid file /var/run/dhclient.eth1.pid with pid 134519072
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/
    
    Listening on LPF/eth1/00:1f:e1:c6:07:7a
    Sending on   LPF/eth1/00:1f:e1:c6:07:7a
    Sending on   Socket/fallback
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 3
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 5
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 7
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 12
    DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
    No DHCPOFFERS received.
    No working leases in persistent database - sleeping.
    I run iwconfig during the restart I can see something being picked up and then dropped for some reason and am not sure why....


    nome@nome-laptop:~$ sudo iwconfig
    Code:
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    eth1      IEEE 802.11bg  ESSID:"n99"  Nickname:""
              Mode:Managed  Frequency:2.462 GHz  Access Point: 00:0F:B5:79:7F:74   
              Bit Rate=54 Mb/s   Tx-Power:32 dBm   
              Retry min limit:7   RTS thr:off   Fragment thr:off
              Power Management:off
              Link Quality=5/5  Signal level=-40 dBm  Noise level=-89 dBm
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:0   Missed beacon:0
    nome@nome-laptop:~$ sudo iwconfig
    Code:
    lo        no wireless extensions.
    
    eth0      no wireless extensions.
    
    eth1      IEEE 802.11bg  ESSID:""  Nickname:""
              Mode:Managed  Frequency:2.462 GHz  Access Point: Not-Associated   
              Bit Rate:54 Mb/s   Tx-Power:32 dBm   
              Retry min limit:7   RTS thr:off   Fragment thr:off
              Power Management:off
              Link Quality=5/5  Signal level=-40 dBm  Noise level=-89 dBm
              Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
              Tx excessive retries:0  Invalid misc:0   Missed beacon:0

    The above behavior is exhibited if I do this manually using the interfaces file or through the network manager applet.

    Hope a ubuntu superhero can help!

    cheeeeeeeeeeeeeers

    n

  10. #1530
    Join Date
    May 2008
    Beans
    2

    Re: HOWTO: Wireless Security - WPA1, WPA2, LEAP, etc.

    michael@michael-desktop:~$ route
    Kernel IP routing table
    Destination Gateway Genmask Flags Metric Ref Use Iface
    link-local * 255.255.0.0 U 0 0 0 wlan1
    default * 0.0.0.0 U 1000 0 0 wlan1


    michael@michael-desktop:~$ iwconfig
    lo no wireless extensions.

    eth0 no wireless extensions.

    wlan1 IEEE 802.11g ESSIDff/any
    Mode:Managed Frequency:2.437 GHz Access Point: Not-Associated
    Bit Rate:108 Mb/s
    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:0 Missed beacon:0

    michael@michael-desktop:~$ sudo iwlist scan
    [sudo] password for michael:
    lo Interface doesn't support scanning.

    eth0 Interface doesn't support scanning.

    wlan1 Failed to read scan data : Resource temporarily unavailable



    michael@michael-desktop:~$ sudo lshw -C network
    *-network
    description: Ethernet interface
    product: 88E8056 PCI-E Gigabit Ethernet Controller
    vendor: Marvell Technology Group Ltd.
    physical id: 0
    bus info: pci@0000:02:00.0
    logical name: eth0
    version: 20
    serial: 00:1c:25:4e:a5:ea
    capacity: 1GB/s
    width: 64 bits
    clock: 33MHz
    capabilities: pm vpd msi pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
    configuration: autonegotiation=on broadcast=yes driver=sky2 driverversion=1.20 firmware=N/A latency=0 link=no module=sky2 multicast=yes port=twisted pair
    *-network
    description: Wireless interface
    physical id: 1
    logical name: wlan1
    serial: 00:1c:f0:a7:f6:8f
    capabilities: ethernet physical wireless
    configuration: broadcast=yes driver=ndiswrapper+neta5agu driverversion=1.52+D-Link,05/08/2006,1.5.202.2 link=no multicast=yes wireless=IEEE 802.11g



    michael@michael-desktop:~$ sudo cat /etc/network/interfaces
    auto wlan1
    iface wlan1 inet dhcp
    wpa-driver wext
    wpa-ssid blizzardman1219
    wpa-ap-scan 1
    wpa-proto WPA RSN
    wpa-pairwise TKIP CCMP
    wpa-group TKIP CCMP
    wpa-key-mgmt WPA-PSK
    wpa-psk (I put my psk here in hex, but I would rather not post it on a forum)




    michael@michael-desktop:~$ sudo ifdown -v wlan1
    Configuring interface wlan1=wlan1 (inet)
    run-parts --verbose /etc/network/if-down.d
    run-parts: executing /etc/network/if-down.d/avahi-autoipd
    run-parts: executing /etc/network/if-down.d/wpasupplicant
    dhclient3 -r -pf /var/run/dhclient.wlan1.pid -lf /var/lib/dhcp3/dhclient.wlan1.leases wlan1
    There is already a pid file /var/run/dhclient.wlan1.pid with pid 25297
    killed old client process, removed PID file
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/

    Listening on LPF/wlan1/00:1c:f0:a7:f6:8f
    Sending on LPF/wlan1/00:1c:f0:a7:f6:8f
    Sending on Socket/fallback
    ifconfig wlan1 down
    run-parts --verbose /etc/network/if-post-down.d
    run-parts: executing /etc/network/if-post-down.d/avahi-daemon
    grep: /etc/resolv.conf: No such file or directory
    run-parts: executing /etc/network/if-post-down.d/wireless-tools
    run-parts: executing /etc/network/if-post-down.d/wpasupplicant
    wpa_supplicant: terminating wpa_supplicant daemon via pidfile /var/run/wpa_supplicant.wlan1.pid
    Stopped /sbin/wpa_supplicant (pid 25256).

    michael@michael-desktop:~$ sudo ifup -v wlan1
    Configuring interface wlan1=wlan1 (inet)
    run-parts --verbose /etc/network/if-pre-up.d
    run-parts: executing /etc/network/if-pre-up.d/wireless-tools
    run-parts: executing /etc/network/if-pre-up.d/wpasupplicant
    wpa_supplicant: wpa-driver wext
    wpa_supplicant: /sbin/wpa_supplicant -B -P /var/run/wpa_supplicant.wlan1.pid -i wlan1 -D wext -C /var/run/wpa_supplicant
    Starting /sbin/wpa_supplicant...
    wpa_supplicant: ctrl_interface socket located at /var/run/wpa_supplicant/wlan1
    wpa_supplicant: wpa-ap-scan 1 -- OK
    wpa_supplicant: configuring network block -- 0
    wpa_supplicant: wpa-ssid "blizzardman1219" -- OK
    wpa_supplicant: wpa-psk ***** -- OK
    wpa_supplicant: wpa-pairwise TKIP CCMP -- OK
    wpa_supplicant: wpa-group TKIP CCMP -- OK
    wpa_supplicant: wpa-key-mgmt WPA-PSK -- OK
    wpa_supplicant: wpa-proto WPA RSN -- OK
    wpa_supplicant: enabling network block 0 -- OK

    dhclient3 -e IF_METRIC=100 -pf /var/run/dhclient.wlan1.pid -lf /var/lib/dhcp3/dhclient.wlan1.leases wlan1
    There is already a pid file /var/run/dhclient.wlan1.pid with pid 134519072
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/

    Listening on LPF/wlan1/00:1c:f0:a7:f6:8f
    Sending on LPF/wlan1/00:1c:f0:a7:f6:8f
    Sending on Socket/fallback
    DHCPDISCOVER on wlan1 to 255.255.255.255 port 67 interval 8
    DHCPDISCOVER on wlan1 to 255.255.255.255 port 67 interval 12
    DHCPDISCOVER on wlan1 to 255.255.255.255 port 67 interval 11
    No DHCPOFFERS received.
    No working leases in persistent database - sleeping.
    run-parts --verbose /etc/network/if-up.d
    run-parts: executing /etc/network/if-up.d/avahi-autoipd
    run-parts: executing /etc/network/if-up.d/avahi-daemon
    grep: /etc/resolv.conf: No such file or directory
    run-parts: executing /etc/network/if-up.d/mountnfs
    run-parts: executing /etc/network/if-up.d/ntpdate
    run-parts: executing /etc/network/if-up.d/wpasupplicant michael@michael-desktop:~$ sudo ifup -v wlan1
    Configuring interface wlan1=wlan1 (inet)
    run-parts --verbose /etc/network/if-pre-up.d
    run-parts: executing /etc/network/if-pre-up.d/wireless-tools
    run-parts: executing /etc/network/if-pre-up.d/wpasupplicant
    wpa_supplicant: wpa-driver wext
    wpa_supplicant: /sbin/wpa_supplicant -B -P /var/run/wpa_supplicant.wlan1.pid -i wlan1 -D wext -C /var/run/wpa_supplicant
    Starting /sbin/wpa_supplicant...
    wpa_supplicant: ctrl_interface socket located at /var/run/wpa_supplicant/wlan1
    wpa_supplicant: wpa-ap-scan 1 -- OK
    wpa_supplicant: configuring network block -- 0
    wpa_supplicant: wpa-ssid "blizzardman1219" -- OK
    wpa_supplicant: wpa-psk ***** -- OK
    wpa_supplicant: wpa-pairwise TKIP CCMP -- OK
    wpa_supplicant: wpa-group TKIP CCMP -- OK
    wpa_supplicant: wpa-key-mgmt WPA-PSK -- OK
    wpa_supplicant: wpa-proto WPA RSN -- OK
    wpa_supplicant: enabling network block 0 -- OK

    dhclient3 -e IF_METRIC=100 -pf /var/run/dhclient.wlan1.pid -lf /var/lib/dhcp3/dhclient.wlan1.leases wlan1
    There is already a pid file /var/run/dhclient.wlan1.pid with pid 134519072
    Internet Systems Consortium DHCP Client V3.0.6
    Copyright 2004-2007 Internet Systems Consortium.
    All rights reserved.
    For info, please visit http://www.isc.org/sw/dhcp/

    Listening on LPF/wlan1/00:1c:f0:a7:f6:8f
    Sending on LPF/wlan1/00:1c:f0:a7:f6:8f
    Sending on Socket/fallback
    DHCPDISCOVER on wlan1 to 255.255.255.255 port 67 interval 8
    DHCPDISCOVER on wlan1 to 255.255.255.255 port 67 interval 12
    DHCPDISCOVER on wlan1 to 255.255.255.255 port 67 interval 11
    No DHCPOFFERS received.
    No working leases in persistent database - sleeping.
    run-parts --verbose /etc/network/if-up.d
    run-parts: executing /etc/network/if-up.d/avahi-autoipd
    run-parts: executing /etc/network/if-up.d/avahi-daemon
    grep: /etc/resolv.conf: No such file or directory
    run-parts: executing /etc/network/if-up.d/mountnfs
    run-parts: executing /etc/network/if-up.d/ntpdate
    run-parts: executing /etc/network/if-up.d/wpasupplicant


    I've been trying to get this to work for like 3 months now, but it just isn't happening!!!

Page 153 of 184 FirstFirst ... 53103143151152153154155163 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •