Dd wrt выключить wifi

Как я могу отключить WPS на DD-WRT?

Краткий ответ: ваш WPS уже может быть отключен на вашем устройстве DD-WRT, даже если оно кажется активным. Это зависит только от значения wps_state в /tmp/path9_hostap.conf файла: 1 означает активный, 0 или 2 означает , что это не так .

Время испытать реальные вещи с AirCrack-NG. Если я сканирую с AiroDump-NG:

luis@Frambuesio:~$ sudo airodump-ng wlan1mon --wps -c 2 CH 2 ][ Elapsed: 1 min ][ 2015-12-15 00:48 BSSID PWR RXQ Beacons #Data, #/s CH MB ENC CIPHER AUTH WPS ESSID XX:XX:XX:XX:XX:XX -35 100 435 20 0 2 54e. WPA2 CCMP PSK Locked MyWiFiNetWork 

Кажется, есть какой-то WPS, но в заблокированном состоянии.

Если я попытаюсь атаковать его через WPS, скажем, с Bully:

luis@Frambuesio:~$ sudo bully wlan1mon --bssid 00:24:A5:XX:XX:XX -v 3 -c 2 [!] Bully v1.0-22 - WPS vulnerability assessment utility [+] Switching interface 'wlan1mon' to channel '2' [!] Using '00:1c:f0:9f:fc:84' for the source MAC address [+] Datalink type set to '127', radiotap headers present [+] Scanning for beacon from '00:24:a5:XX:XX:XX' on channel '2' [!] Excessive (3) FCS failures while reading next packet [!] Excessive (3) FCS failures while reading next packet [!] Excessive (3) FCS failures while reading next packet [!] Disabling FCS validation (assuming --nofcs) [+] Got beacon for 'MyWiFiNetWork' (00:24:a5:XX:XX:XX) [!] Beacon information element indicates WPS is locked [+] Loading randomized pins from '/root/.bully/pins' [!] Restoring session from '/root/.bully/0024a5c816a2.run' [+] Index of starting pin number is '0000000' [+] Last State = 'NoAssoc' Next pin '64121635' [!] WPS lockout reported, sleeping for 43 seconds . ^C Saved session to '/root/.bully/0024a5c816a2.run' 

Действительно, он заперт. Если я форсирую атаку даже для заблокированного состояния:

luis@Frambuesio:~$ sudo bully wlan1mon --bssid 00:24:A5:XX:XX:XX -v 3 -L -c 2 [!] Bully v1.0-22 - WPS vulnerability assessment utility [+] Switching interface 'wlan1mon' to channel '2' [!] Using '00:1c:f0:9f:fc:84' for the source MAC address [+] Datalink type set to '127', radiotap headers present [+] Scanning for beacon from '00:24:a5:XX:XX:XX' on channel '2' [!] Excessive (3) FCS failures while reading next packet [!] Excessive (3) FCS failures while reading next packet [!] Excessive (3) FCS failures while reading next packet [!] Disabling FCS validation (assuming --nofcs) [+] Got beacon for 'MyWiFiNetWork' (00:24:a5:XX:XX:XX) [!] Beacon information element indicates WPS is locked [+] Loading randomized pins from '/root/.bully/pins' [!] Restoring session from '/root/.bully/0024a5c816a2.run' [+] Index of starting pin number is '0000000' [+] Last State = 'NoAssoc' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' [+] Rx( M1 ) = 'EAPFail' Next pin '64121635' 

Таким образом, нет WPS или, по крайней мере, нет WPS для атаки.

Читайте также:  Одновременно две wi fi сети

Протестировано с обоими состояниями включения / выключения в Wireless —> AOSS (кто-то сообщил, что это может изменить состояние WPS):

В любом случае, если вы хотите сохранять полное спокойствие с этим сообщением WPS Enabled которое вы видите, скажем, на Android, выполните следующие действия:

1.- Найдите файл hostapd.conf для вашей беспроводной карты в /tmp . Мой это:

root@DD-WRT:/tmp# ls /tmp/*hostap.conf -la -rw-r--r-- 1 root root 580 Dec 15 00:48 /tmp/ath0_hostap.conf 

2.- Проверьте значение wps_state :

root@DD-WRT:/tmp# cat ath0_hostap.conf | grep "wps" -i wps_state=2 
  • 0 означает, что WPS отключен.
  • 1 означает, что WPS включен.
  • 2 означает WPS заблокирован.

3.- Измените его на 0 . Вы можете редактировать файл. Я предпочитаю использовать команду sed для прямого обмена 2 на 0 :

/bin/sed s/wps_state\=2/wps_state\=0/g -i /tmp/ath0_hostap.conf 

4.- Найдите процесс hostapd (с его параметрами):

root@DD-WRT:/tmp# ps | grep "apd" -i 60 root 0 SW< [kswapd0] 2093 root 1340 S hostapd -B /tmp/ath0_hostap.conf 

5.- Убить и перезапустить его (с точно такими же параметрами):

root@DD-WRT:/tmp# kill 2093 root@DD-WRT:/tmp# hostapd -B /tmp/ath0_hostap.conf 

И это должно быть все.
На этот раз AirCrack-NG:

luis@Frambuesio:~$ sudo airodump-ng wlan1mon --wps -c 2 CH 2 ][ Elapsed: 12 s ][ 2015-12-15 00:57 BSSID PWR RXQ Beacons #Data, #/s CH MB ENC CIPHER AUTH WPS ESSID 00:24:A5:XX:XX:XX -35 100 50 3 0 2 54e. WPA2 CCMP PSK MyWiFiNetWork BSSID STATION PWR Rate Lost Frames Probe 

Как можно видеть, он показывает, что WPS не включен в столбце.
И на этот раз Bully-WPS даже не попытается атаковать его:

luis@Frambuesio:~$ sudo bully wlan1mon --bssid 00:24:A5:XX:XX:XX -v 3 -c 2 [sudo] password for luis: [!] Bully v1.0-22 - WPS vulnerability assessment utility [+] Switching interface 'wlan1mon' to channel '2' [!] Using '00:1c:f0:9f:fc:84' for the source MAC address [+] Datalink type set to '127', radiotap headers present [+] Scanning for beacon from '00:24:a5:XX:XX:XX' on channel '2' [!] Excessive (3) FCS failures while reading next packet [!] Excessive (3) FCS failures while reading next packet [!] Excessive (3) FCS failures while reading next packet [!] Disabling FCS validation (assuming --nofcs) [+] Got beacon for 'MyWiFiNetWork' (00:24:a5:XX:XX:XX) [X] The AP doesn't appear to be WPS enabled (no WPS IE) 

Итак, наконец, мы можем сказать, что WPS отключен на вашем маршрутизаторе DD-WRT .

Читайте также:  Vcds hex net wifi

Протестировано с Buffalo WHR-HP-GN. Предполагается работа на любой модели (пожалуйста, подтвердите).

Дальнейшие детали:

  • Пока каталог /tmp соответствует оперативной памяти, это изменение является временным, и вы можете написать его любым способом для каждой перезагрузки.
  • В вышеупомянутой теме на форуме DD-WRT есть некоторые /bin/ps | /bin/grep '[h]ostapd' | /usr/bin/awk -F" " | /usr/bin/xargs /bin/kill -HUP Командная строка /usr /bin /xargs /bin /kill -HUP, которая непосредственно заменяет шаг 5.

Источник

How To Turn Off WiFi on a DD-WRT Router With the Press of a Button (FlashRouters FAQ)

How To Turn Off WiFi on a DD-WRT Router With the Press of a Button (FlashRouters FAQ)

When we keep hearing the same questions for DD-WRT, we try to address them with a FlashRouters FAQ post. We know that if one person asks something, 10 others probably have the same question.

Quick Overview

Worried about your Wi-Fi signal always being available? Easily turn it off with on a FlashRouter following the instructions in our guide!

Best FlashRouter to Control Wi-Fi Signal

Netgear R7000 DD-WRT FlashRouter – Great For Medium Homes / Perfect For 6-10 Devices / Works With All ISPs & Supported VPNs / 1 GHz Dual-Core Broadcom Processor SALE PRICE: $259.99 $299.99 | BUY NOW

A Common Query: Turning Off WiFi on a DD-WRT Router

Dear FlashRouters,

I love my DD-WRT router, but I’m not sure how to turn off the WiFi when I need to. I don’t like the idea of my WiFi broadcasting while I sleep. I also would like to set a deadline when the kids can even use the Internet by completely shutting it off.

Can you tell me what to do? Is there an easy way to turn off my WiFi?

-Confused in Columbus

How to Turn Off WiFi Radio On A DD-WRT Router

Thankfully, DD-WRT offers a few easy options that you can utilize for turning off the WiFi completely, or just disabling the public broadcast of a wireless signal.

Читайте также:  Пароль безопасности сети wifi

Please note, older versions of DD-WRT or certain router models may not support this feature. Instead, users can turn off Wi-Fi bands via DD-WRT Wireless settings, as explained below.

How Do I Turn Off Wi-Fi On Newer Versions of DD-WRT?

  1. Go to Wireless > Basic Settings page in DD-WRT settings
  2. Set Wireless Network Mode to Disabled for any band that you want to disable.
  3. Click Apply Settings

Please note, older versions of DD-WRT or certain router models may not support this feature. Instead, users can turn off Wi-Fi bands via DD-WRT Wireless settings, as explained below.

Once you save and apply your settings, the wireless network will no longer broadcast. It will be inaccessible until you change the settings back.

Disable Wifi on Newer Versions of DD-WRT – How to Turn Off Wi-Fi on a DD-WRT Router

Disable WiFi In Older Wireless Routers and DD-WRT Builds

On older models, you can turn the WPS button into a radio toggle! This will allow you to be able to turn the Wi-Fi radio off physically by pushing a button on the router.

Under the Services tab Scroll down SES/AOSS/EZ-SETUP/WPS Button on the router that allows you to turn the radio on and off.

How To Create a Wireless Off Button on a WiFi Router

This makes the WPS/AOSS/EZ-SETUP button on the router a functional button. While flashing to DD-WRT disables this button by default, it is now usable with a new purpose! The reason for disabling WPS and AOSS is that WPS is very simple to crack, and is a major security flaw that should never be used.

What’s the Right Method For Turning Off Wi-Fi On My DD-WRT Router?

The proper method for turning off Wi-Fi on DD-WRT depends on your router model and firmware version. You can easily just check in your router settings to see if they match what you see here. But if you have questions, our configuration specialists can assist you in finding the right solution, either via our customizable service plans or via our personalized Flash My Router plan.

Flash My Router – upgrade your router firmware remotely

Flash My Router

FEATURES

  • 1-on-1 Session With Expert Technician
  • Basic Internet/Wi-Fi/VPN Setup
  • Open Source Firmware "Flash" Upgrade
  • Includes a $30 Service Credit

Источник

Оцените статью
Adblock
detector