設定固定IP: 10.10.0.10, 子網路遮罩: 255.255.255.0, 預設閘道: 10.10.0.1, DNS servers: 10.12.0.1 + 10.12.0.2
1. 使用命令提示工具(指令 Netsh)設定:
Netsh interface ipv4 set address name="網路(卡)名稱" source=static addr=10.10.0.10 mask=255.255.255.0 gateway=10.10.0.1
Netsh interface ipv4 set dns name="網路(卡)名稱" source=static addr=10.12.0.1
Netsh interface ipv4 add dns name="網路(卡)名稱" 10.12.0.2 index=2
2. 使用 PowerShell 設定:
New-NetIPAddress -InterfaceAlias "網路(卡)名稱" -IPAddress 10.10.0.10 -PrefixLength 24 -DefaultGateway 10.10.0.1
Set-DNSClientServerAddress -InterfaceAlias "網路(卡)名稱" -ServerAddresses 10.12.0.1,10.12.0.2
如果為設定自動IP(使用DHCP), 則 PowerShell 指令為:
Set-NetIPInterface -InterfaceAlias "網路(卡)名稱" -Dhcp Enabled
Restart-NetAdapter -Name "網路(卡)名稱"
沒有留言:
張貼留言