Page 11 of 16 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 154

Thread: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

  1. #101
    Join Date
    Jan 2011
    Beans
    8

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    I too have lost all sightings of wlan0, on my broadcom BCM4318...

    I had it for awhile but I reinstalled this patch and now its gone completely.

  2. #102
    Join Date
    Jan 2011
    Beans
    8

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    I have it working now. What I had to do was uninstall everything, get rid of aircrack 1.1 and install 1.0. reinstall compat with the patch described here except I did this instead.
    (Notice the date change, shouldn't matter but its the latest one.) <driver-name> is the driver you use for you wireless card.

    Code:
    wget http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2011-01-27.tar.bz2
    tar -jxf compat-wireless-2011-01-27.tar.bz2
    cd compat-wireless-2011-01-27
    wget http://patches.aircrack-ng.org/mac80211.compat08082009.wl_frag+ack_v1.patch
    wget http://patches.aircrack-ng.org/channel-negative-one-maxim.patch
    patch -p1 < mac80211.compat08082009.wl_frag+ack_v1.patch
    patch ./net/wireless/chan.c channel-negative-one-maxim.patch
    gedit scripts/update-initramfs
    #*** FIND LINE 13: KLIB=/lib/modules/2.6.31-wl/build
    #*** REPLACE WITH: KLIB=/lib/modules/$(uname -r)/build
    ./script/driver-select <driver-name>
    make
    sudo make install
    sudo make wlunload
    sudo modprobe <driver-name>
    but now everytime I restart my computer I have to do

    Code:
    cd compat-wireless-11.01.27
    sudo make wlunload
    sudo modprobe b43
    Anyway to have the b43 driving start up automatically?
    Last edited by hodginsa; January 29th, 2011 at 07:20 PM.

  3. #103
    Join Date
    Oct 2005
    Beans
    4

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    I am not an expert but maybe you can load b43 adding 'b43' without commas at the end of /etc/modules.

    regards

  4. #104
    Join Date
    Jan 2011
    Beans
    8

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    Hmm, I thought that might work too and changed it before you mentioned it, but still nothing.

    It still loads 'ssb' and 'mac80211' on start up and not b43, because when I do 'sudo make wlunload' it says those two things are unloading.

    What should be in my /etc/modprobe.d/options?

    I have 'options b43 nohwcrypt=1' I'm not sure why I put that in there.

    Whats telling my computer to load ssb and mac80211 and not b43?

  5. #105
    Join Date
    Jan 2011
    Beans
    8

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    Okay so I think I got it working. Hopefully this helps someone else.

    This works for my case cause I have mac80211 and ssb running on start up. So it may not work for you if mac80211 or ssb isn't on your machine/interfering.

    You're going to edit /etc/rc.local (boot up commands)


    Code:
    Sudo gedit /etc/rc.local
    add lines before 'exit 0'

    Code:
    rmmod mac80211
    rmmod ssb
    sleep 3
    modprobe b43
    the 'rmmod' removes those modules upon startup and the 'modprobe b43' is what I had to enter in manually before but now it waits and enters it automatically.

    My wifi starts automatically now.

  6. #106
    Join Date
    Jan 2011
    Location
    North Carolina
    Beans
    Hidden!
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    Hi all,

    Working with:
    ASUS K50IJ Best buy Edition
    Atheros AR9285
    Basic kernel drivers, SqurrelScript's Compat-Wireless driver patch.


    When i run command:
    Code:
    sudo aireplay-ng -1 0 -a BS:SS:ID -h MY:MA:CA:DD:Y0 mon0
    I get "Association successful" with the smiley

    But after running:
    Code:
    sudo aireplay-ng -3 -b BS:SS:ID -h MY:MA:CA:DD:Y0 wlan0
    I get "wlan0 on channel 14 but AP is on channel 1"

    **Side note** when i start airmon i do it like this:

    Code:
    sudo airmon-ng start wlan0 1
    My AP being on channel 1, if i dont start airmon like that, I dont get the "Successful" Notif. instead I
    get channel error.

    Anyone shed some light?

    Thanx,
    -JD

    The thing I love about experience is that it's such an honest thing.

  7. #107
    Join Date
    Jan 2011
    Location
    North Carolina
    Beans
    Hidden!
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    To any and all it may help, after playing and searching around I found a somewhat solution.

    Using:

    Code:
    sudo airodump-ng wlan0 --channel X
    Channel X being your AP's channel.
    and:

    Code:
    sudo aireplay-ng -1 0 -e SSID -a BSSID -h FAKEMAC mon0
    This helped TREMENDOUSLY with staying connected to the AP.
    And finally, using aircrack:

    Code:
    aircrack-ng -b BSSID filename*.cap
    Instead of:

    Code:
    aircrack-ng -b BSSID filename-01.cap
    Worked flawlessly, cracked my NETGEAR in under 5 minutes.

    Hoped this helped someone.
    -JD

    The thing I love about experience is that it's such an honest thing.

  8. #108
    Join Date
    Jan 2011
    Beans
    8

    Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    I was going to mention you were using mon0 you have to use mon0 for aireplay and airodump as well.

    I find you should reset the mon0 with the channel you want to use like
    Code:
    sudo airmon-ng wlan0 <channel>
    also you can try switching the channel by using

    Code:
    sudo ifconfig mon0 <channel>
    But I can't recall

  9. #109
    Join Date
    Feb 2009
    Beans
    85
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Arrow Re: [Tutorial] Fix: Compat wireless - 'fixed channel mon0: -1'

    please BUMP... fixed in kernel 2.6.35-25.
    If someone says it can't be done, then they haven't tried Linux yet!

  10. #110
    Join Date
    Dec 2010
    Beans
    61

    Re: [Tutorial] Fix: Compat wireless & aircrack-ng

    Quote Originally Posted by SquirrelScript View Post
    After upgrading to Ubuntu 10.10, I found that airodump-ng and aireplay-ng didn't want to work:
    Setup
    OS: Ubuntu 10.10
    Kernel: 2.6.35-22-generic-pae
    WiFi Card: Intel iwlwifi iwlagn Intel Corporation WiFi Link 5100

    How?
    Code:
    wget http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2010-10-16.tar.bz2
    tar -jxf compat-wireless-2010-10-16.tar.bz2
    cd compat-wireless-2010-10-16
    wget http://patches.aircrack-ng.org/mac80211.compat08082009.wl_frag+ack_v1.patch
    patch -p1 < mac80211.compat08082009.wl_frag+ack_v1.patch
    wget http://patches.aircrack-ng.org/channel-negative-one-maxim.patch
    patch ./net/wireless/chan.c channel-negative-one-maxim.patch
    gedit scripts/update-initramfs
    #*** FIND LINE 13: KLIB=/lib/modules/2.6.31-wl/build
    #*** REPLACE WITH: KLIB=/lib/modules/$(uname -r)/build
    make
    sudo make install
    sudo make unload
    sudo reboot
    Hope it helps someone[/I]




    thx to u man...i've solve my problem that have been 5 month waiting for solution...

Page 11 of 16 FirstFirst ... 910111213 ... 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
  •