Networkinterface: Difference between revisions

From Piszczynski
piszczynski>Aleks
(Created page with " == Network Interface Issues NIC == Check DHCP settings + assigned IP address Check Cables Check for incorrectly uninstalled network adapters in device manager > show hidden...")
 
piszczynski>Aleks
No edit summary
Line 10: Line 10:


If the issue is with NIC teaming this can be removed for all adapters with the command: "LbfoAdmin /Resetconfig"
If the issue is with NIC teaming this can be removed for all adapters with the command: "LbfoAdmin /Resetconfig"
== Enable Ping / ICMP using netsh ==
#IPv4
*netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol="icmpv4:8,any" dir=in action=allow
#IPv6
*netsh advfirewall firewall add rule name="ICMP Allow incoming V6 echo request" protocol="icmpv6:8,any" dir=in action=allow

Revision as of 11:40, 25 August 2022

Network Interface Issues NIC

Check DHCP settings + assigned IP address Check Cables

Check for incorrectly uninstalled network adapters in device manager > show hidden devices then uninstall

Reset the TCP/IP stack with the following command: "netsh IP reset" (will clear all network configuration)

If the issue is with NIC teaming this can be removed for all adapters with the command: "LbfoAdmin /Resetconfig"


Enable Ping / ICMP using netsh

  1. IPv4
  • netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol="icmpv4:8,any" dir=in action=allow
  1. IPv6
  • netsh advfirewall firewall add rule name="ICMP Allow incoming V6 echo request" protocol="icmpv6:8,any" dir=in action=allow