答案1
以下命令将在管理员命令提示符下运行。
- 要更改 IP,命令语法是:
netsh interface ip set address "interface name" "dhcp/static" "IPv4 address" "IPv4 mask" "gateway IPv4 address"
假设我的本地 IP 为 10.0.0.5,网关为 10.0.0.1,子网掩码为 255.0.0.0,则命令为:
netsh interface ip set address "Ethernet" static 10.0.0.5 255.0.0.0 10.0.0.1
- 要更改 DNS,命令语法是:
netsh int ipv4 add dnsserver "interface name" "DNS IPv4 address" "index=integer" "yes/no"
假设我的 DNS 服务器是 208.67.222.222 和 208.67.220.220,则命令为:
netsh int ipv4 add dnsserver "Ethernet" address=208.67.222.222 index=1 netsh int ipv4 add dnsserver "Ethernet" address=208.67.220.220 index=2
答案2
您可以尝试以下步骤:
- 单击键盘上的 Windows 键并按 X。在出现的菜单上单击控制面板。
在类别视图中单击网络和 Internet
单击网络和共享中心
- 点击更改适配器设置
- 右键单击本地连接,然后单击属性
- 单击 Internet 协议版本 4 (TCP/IP),然后单击属性
- 将“点”更改为使用以下 IP 地址并输入您的 IP 和 DNS 信息。
- 单击“确定”保存并应用您的设置。