Wi-fi heeft geen geldige IP-configuratie

lady42

Gebruiker
Lid geworden
10 feb 2007
Berichten
333
Sinds een poosje krijg ik 1 van mijn 3 laptops niet meer op de wifi aan de gang. Die ellende begon toen ik thuisnetwerk van Ziggo instelde, die heb ik daarop weer uitgezet, maar de gewone wifi wil niet meer terug komen. Ik heb veel geprobeerd en zelfs Win10 opnieuw geinstalleerd, maar niets helpt. Alles wat op deze site staat
https://support.hp.com/nl-nl/document/ish_2759728-2541424-16
heb ik geprobeerd om een lang verhaal kort te maken. Laptop doet het wel met een draadje en het thuisnetwerk doet het ook, via mijn smartphone doet ie het ook niet. Het grote probleem is dat de DHCPserver geen IP adres aan mijn laptop geeft. Dus wat nu?
 
Heeft die laptop misschien een vast IP adres ingesteld staan?
Dus een wel geldig adres dat niet door de DHCP wordt uitgedeeld?
 
Nu in het nederlands
Vast ingesteld op adres achterhalen

Via de opdrachtprompt (CMD)​

  1. Druk op Windows-toets + R, typ cmd en druk op Enter.
  2. Typ het volgende commando in de opdrachtprompt:
    <span><span>ipconfig /all<br></span></span>
  3. Zoek naar je actieve netwerkadapter, bijvoorbeeld:
    • "Ethernet adapter"
    • "Wireless LAN adapter Wi-Fi"
  4. Daar zie je:
    • IPv4 Address (je IP-adres)
    • DHCP Enabled: No = Vast IP-adres (statisch), Yes = Dynamisch (via DHCP)
    • Default Gateway (je router)
 
Via een batch file > Run as administrator. Opslaan als Wi-Fi Configuratie.bat

PHP:
@Echo Off
echo -------------------------------------------------------------
echo To get your current Wi-Fi configuration using the Command Prompt,
echo open CMD as an administrator and type ipconfig /all to view your
echo IP address and other network settings, or use netsh wlan show interfaces
echo for wireless-specific details like your connection status and SSID.
echo:
echo For saved Wi-Fi network information, use netsh wlan show profile name="Wi-FiName"
echo key=clear, replacing "Wi-FiName" with the name of your saved network to reveal its
echo password.
pause
echo:
echo ---------------------------------------------------------------
echo: 1.View your current network and IP configuration
echo:
echo Open Command Prompt and Run as administrator
echo:
echo Run ipconfig /all
echo:
echo Find your Wi-Fi details:
echo Look for your wireless adapter (e.g., "Wireless LAN adapter echo Wi-Fi") in
echo the output to see your IPv4 Address, Default Gateway, and other
echo relevant information.
pause
ipconfig /all
pause
echo ---------------------------------------------------------------
echo: 2. View your current Wi-Fi interface details
echo:
echo Open Command Prompt and Run as administrator
echo:
echo Run netsh wlan show interfaces:
echo Type netsh wlan show interfaces and press Enter.
echo:
echo Check the output:
echo This command provides details about your Wi-Fi adapter, including the
echo currently connected SSID (Wi-Fi name), the physical address,
echo and the connection state.
pause
netsh wlan show interfaces
pause
echo ----------------------------------------------------------------
echo: 3. View a saved Wi-Fi network's profile and password
echo:
echo Open Command Prompt as administrator.
echo:
echo Find your Wi-Fi profile name:
echo First, run netsh wlan show profiles to get a list of all saved Wi-Fi
echo networks.
echo:
echo Show the profile with the key:
echo Then, type netsh wlan show profile name="Wi-FiName" key=clear,
echo replacing "Wi-FiName" with the actual name of the Wi-Fi network you
echo want to inspect.
echo:
echo Locate the password:
echo In the output, find the "Key Content" field to see the password for that
echo saved network.
rem netsh wlan show profile name="Wi-FiName" key=clear
pause
echo -----------------------------------------------------------------
echo 4. Generate a wireless network report
echo:
echo Open Command Prompt as administrator.
echo:
echo Run netsh wlan wlanreport:
echo Type netsh wlan show wlanreport and press Enter.
echo:
echo Open the report:
echo This command creates an HTML file with detailed information about
echo your Wi-Fi events from the last three days. The file location will be
echo provided in the command output. You can open this file in a web browser
echo to analyze your wireless network history.
pause
netsh wlan show wlanreport
echo ----------------------------------------------------------------
pause
start C:\ProgramData\Microsoft\Windows\WlanReport
exit
 
Laatst bewerkt:
En welk apparaat deelt DHCP uit in jouw netwerk?

Kijk eens in dat apparaat of je de probleemlaptop handmatig uit de DHCP tabel kunt verwijderen. Ik zie dit probleem bij sommige Cisco devices ook wel eens optreden. Geen idee van de achterliggende oorzaak, maar handmatig verwijderen werkt dan altijd.
 
Via een batch file > Run as administrator. Opslaan als Wi-Fi Configuratie.bat

PHP:
@Echo Off
echo -------------------------------------------------------------
echo To get your current Wi-Fi configuration using the Command Prompt,
echo open CMD as an administrator and type ipconfig /all to view your
echo IP address and other network settings, or use netsh wlan show interfaces
echo for wireless-specific details like your connection status and SSID.
echo:
echo For saved Wi-Fi network information, use netsh wlan show profile name="Wi-FiName"
echo key=clear, replacing "Wi-FiName" with the name of your saved network to reveal its
echo password.
pause
echo:
echo ---------------------------------------------------------------
echo: 1.View your current network and IP configuration
echo:
echo Open Command Prompt and Run as administrator
echo:
echo Run ipconfig /all
echo:
echo Find your Wi-Fi details:
echo Look for your wireless adapter (e.g., "Wireless LAN adapter echo Wi-Fi") in
echo the output to see your IPv4 Address, Default Gateway, and other
echo relevant information.
pause
ipconfig /all
pause
echo ---------------------------------------------------------------
echo: 2. View your current Wi-Fi interface details
echo:
echo Open Command Prompt and Run as administrator
echo:
echo Run netsh wlan show interfaces:
echo Type netsh wlan show interfaces and press Enter.
echo:
echo Check the output:
echo This command provides details about your Wi-Fi adapter, including the
echo currently connected SSID (Wi-Fi name), the physical address,
echo and the connection state.
pause
netsh wlan show interfaces
pause
echo ----------------------------------------------------------------
echo: 3. View a saved Wi-Fi network's profile and password
echo:
echo Open Command Prompt as administrator.
echo:
echo Find your Wi-Fi profile name:
echo First, run netsh wlan show profiles to get a list of all saved Wi-Fi
echo networks.
echo:
echo Show the profile with the key:
echo Then, type netsh wlan show profile name="Wi-FiName" key=clear,
echo replacing "Wi-FiName" with the actual name of the Wi-Fi network you
echo want to inspect.
echo:
echo Locate the password:
echo In the output, find the "Key Content" field to see the password for that
echo saved network.
rem netsh wlan show profile name="Wi-FiName" key=clear
pause
echo -----------------------------------------------------------------
echo 4. Generate a wireless network report
echo:
echo Open Command Prompt as administrator.
echo:
echo Run netsh wlan wlanreport:
echo Type netsh wlan show wlanreport and press Enter.
echo:
echo Open the report:
echo This command creates an HTML file with detailed information about
echo your Wi-Fi events from the last three days. The file location will be
echo provided in the command output. You can open this file in a web browser
echo to analyze your wireless network history.
pause
netsh wlan show wlanreport
echo ----------------------------------------------------------------
pause
start C:\ProgramData\Microsoft\Windows\WlanReport
exit
In welke map moet ik dit bestand opslaan?
 
Dat maakt niet uit en mag je dus zelf bepalen.
 
En welk apparaat deelt DHCP uit in jouw netwerk?

Kijk eens in dat apparaat of je de probleemlaptop handmatig uit de DHCP tabel kunt verwijderen. Ik zie dit probleem bij sommige Cisco devices ook wel eens optreden. Geen idee van de achterliggende oorzaak, maar handmatig verwijderen werkt dan altijd.
Als ik het volgende doe, dan staat er bij wireless LAN adapter: Media disconnected en dat is al zo sinds ik in het modem het Ziggo thuisnetwerk had aangezet:
Probleemoplossing zonder het script:
Als je een specifieke netwerkconfiguratie wilt uitvoeren, kun je dit ook handmatig doen via de opdrachtprompt:


  1. Opdrachtprompt openen:
    Zoek naar "Opdrachtprompt" in de Windows zoekbalk, klik erop en selecteer "Als administrator uitvoeren".
  2. Opdrachten typen:
    Voer de benodigde commando's in, zoals ipconfig /release, ipconfig /renew
Bericht automatisch samengevoegd:

Via een batch file > Run as administrator. Opslaan als Wi-Fi Configuratie.bat

PHP:
@Echo Off
echo -------------------------------------------------------------
echo To get your current Wi-Fi configuration using the Command Prompt,
echo open CMD as an administrator and type ipconfig /all to view your
echo IP address and other network settings, or use netsh wlan show interfaces
echo for wireless-specific details like your connection status and SSID.
echo:
echo For saved Wi-Fi network information, use netsh wlan show profile name="Wi-FiName"
echo key=clear, replacing "Wi-FiName" with the name of your saved network to reveal its
echo password.
pause
echo:
echo ---------------------------------------------------------------
echo: 1.View your current network and IP configuration
echo:
echo Open Command Prompt and Run as administrator
echo:
echo Run ipconfig /all
echo:
echo Find your Wi-Fi details:
echo Look for your wireless adapter (e.g., "Wireless LAN adapter echo Wi-Fi") in
echo the output to see your IPv4 Address, Default Gateway, and other
echo relevant information.
pause
ipconfig /all
pause
echo ---------------------------------------------------------------
echo: 2. View your current Wi-Fi interface details
echo:
echo Open Command Prompt and Run as administrator
echo:
echo Run netsh wlan show interfaces:
echo Type netsh wlan show interfaces and press Enter.
echo:
echo Check the output:
echo This command provides details about your Wi-Fi adapter, including the
echo currently connected SSID (Wi-Fi name), the physical address,
echo and the connection state.
pause
netsh wlan show interfaces
pause
echo ----------------------------------------------------------------
echo: 3. View a saved Wi-Fi network's profile and password
echo:
echo Open Command Prompt as administrator.
echo:
echo Find your Wi-Fi profile name:
echo First, run netsh wlan show profiles to get a list of all saved Wi-Fi
echo networks.
echo:
echo Show the profile with the key:
echo Then, type netsh wlan show profile name="Wi-FiName" key=clear,
echo replacing "Wi-FiName" with the actual name of the Wi-Fi network you
echo want to inspect.
echo:
echo Locate the password:
echo In the output, find the "Key Content" field to see the password for that
echo saved network.
rem netsh wlan show profile name="Wi-FiName" key=clear
pause
echo -----------------------------------------------------------------
echo 4. Generate a wireless network report
echo:
echo Open Command Prompt as administrator.
echo:
echo Run netsh wlan wlanreport:
echo Type netsh wlan show wlanreport and press Enter.
echo:
echo Open the report:
echo This command creates an HTML file with detailed information about
echo your Wi-Fi events from the last three days. The file location will be
echo provided in the command output. You can open this file in a web browser
echo to analyze your wireless network history.
pause
netsh wlan show wlanreport
echo ----------------------------------------------------------------
pause
start C:\ProgramData\Microsoft\Windows\WlanReport
exit

Dat maakt niet uit en mag je dus zelf bepalen.
Om een lang verhaal kort te maken: Media disconnected
Bericht automatisch samengevoegd:

En welk apparaat deelt DHCP uit in jouw netwerk?

Kijk eens in dat apparaat of je de probleemlaptop handmatig uit de DHCP tabel kunt verwijderen. Ik zie dit probleem bij sommige Cisco devices ook wel eens optreden. Geen idee van de achterliggende oorzaak, maar handmatig verwijderen werkt dan altijd.
Je bedoelt in het modem?
 
Laatst bewerkt:
Ik heb nu van alles geprobeerd en niets lijkt te werken, ben zo langzamerhand de wanhoop nabij . Ik heb zelfs een nieuwe schone installatie gedaan van Windows 10. Ik kan Ziggo bellen, maar ik denk niet dat die het probleem gaat oplossen.......
 
Welke laptop is het precies? Vaak is er een klein schakelaartje/schuifje waarmee is wifi-kaart uit kunt schakelen.
 
Dag Lady wanhoop is er niet kom je er niet uit probeer eens met 1 USB-A - WLAN / Wi-Fi dongle - N150 / 150 Mbps deze kun je bestellen op internet. Oplossing op mijn laptop interne wifi was defect.
 
Welke laptop is het precies? Vaak is er een klein schakelaartje/schuifje waarmee is wifi-kaart uit kunt schakelen.
HP 2560p Laptop Intel I7 2.7Ghz.
Bericht automatisch samengevoegd:

Dag Lady wanhoop is er niet kom je er niet uit probeer eens met 1 USB-A - WLAN / Wi-Fi dongle - N150 / 150 Mbps deze kun je bestellen op internet. Oplossing op mijn laptop interne wifi was defect.
Op vakantie heb k deze zelfde laptop en mijn smartphone gebruikt als modem, tot dat ik maanden later het gastnetwerk inschakelde in mijn modem en met mijn smartphone doet internet het ook niet meer.
Bericht automatisch samengevoegd:

Werkt helaas ook niet, erger nog de Advanced Driver Updater heb ik de wifi adapter geupdate en nu zijn alle netwerken weg
 
Laatst bewerkt:
@ Senso heb je de wifi adapter aangesloten op de laptop en deze werkt niet, is deze dan aangemeld in apparaten en kun je deze dan zien.
Als alle wiffi niet zichtbaar zijn dan is er waarschijnlijk wat met je modem.
Wiffi is ingesteld op zichtbaar of niet zichtbaar.
De adapter die ik gebruik laat alle wiffi zien die in mijn omgeving uitzendt.
 

@ Senso heb je de wifi adapter aangesloten op de laptop en deze werkt niet, is deze dan aangemeld in apparaten en kun je deze dan zien.
Als alle wiffi niet zichtbaar zijn dan is er waarschijnlijk wat met je modem.
Wiffi is ingesteld op zichtbaar of niet zichtbaar.
De adapter die ik gebruik laat alle wiffi zien die in mijn omgeving uitzendt.
Ik heb de wifi adapter verwijderd in apparaartbeheer en de laptop opnieuw ipgestart en heb ik de lijst van alle netwerken in de buurt weer terug, maar nog steeds geen draadloze verbinding. Ik heb nu geen idee wat ik verder nu nog kan doen om draadloze verbinding te krijgen. Het gastnetwerk doet het dus wel, das raar, want dan zou de gewone wifi het toch ook moeten doen? Weet ik in ieder geval wel dat het modem en de wifi adapter niet kapot zijn, maar dat er ergens iets niet goed staat.
 
Terug
Bovenaan Onderaan