Wi-fi heeft geen geldige IP-configuratie

lady42

Gebruiker
Lid geworden
10 feb 2007
Berichten
328
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:
Terug
Bovenaan Onderaan