Benutzer:MovGP0/Core Server/IP

aus Wikipedia, der freien Enzyklopädie
Zur Navigation springen Zur Suche springen
   MovGP0        Über mich        Hilfen        Artikel        Weblinks        Literatur        Zitate        Notizen        Programmierung        MSCert        Physik      


IP Konfiguration

[Bearbeiten | Quelltext bearbeiten]
PS cmd
Get-NetAdapter netsh interface show Interface
Get-NetIpConfiguration -Detailed ipconfig -all
Get-NetIPInterface netsh interface ip 4 show interfaces
Set-NetIPInterface -InterfaceAlias "WiFi" -DHCP Enabled netsh interface ipv4 set address "WiFi" static
New-NetIPAddress -InterfaceAlias "WiFi" -IPAddress 192.168.0.12 -DefaultGateway 192.168.0.1 -PrefixLength 24 netsh interface ipv4 set address "WiFi"static 192.168.0.12 255.255.0.0 192.168.0.1
Set-NetIPInterface -InterfaceIndex 27 -NlMtuBytes 1400 -PolicyStore Persistent netsh interface ipv4 set subinterface 27 mtu=1400 Store=Persistent
Set-DNSClientServerAddress -InterfaceIndex 27 -ServerAddresses 192.168.0.1 netsh interface ipv4 set dnsservers 27 static 192.168.1.1
Get-NetNeighbor -AddressFamily IPv4 arp -a
Remove-NetNeighbor -IPAddress 192.168.0.15 arp -d 192.168.0.15
Remove-NetNeighbour netsh interface ip delete arpcache
Set-NetNeighbour -IPAddress '192.168.0.15' -LinkLayerAddress 'aa:bb:cc:dd:ee:ff' arp -s 192.168.0.15 aa:bb:cc:dd:es:ff
Test-NetConnection 192.168.0.1 ping 192.168.0.1
Test-NetConnection google.com ping google.com
Test-NetConnection -Computername 192.168.0.1 -Traceroute tracert 192.168.0.1
Resolve-DnsName google.com nslookup google.com

|}