Server Core 下为网卡配置动态或静态 IP 可以使用 netsh 命令,这里以配置静态 IP 为例,首先我们需要先查看计算机当前连接信息;为指定网卡分配一个静态 IP,并指定其子网掩码及默认网关;并根据需要为其配置所使用的 DNS 服务器。为此我们需要执行如下步骤:
2、netsh interface ipv4 set address name=ID(或连接名称) source=static address=IP mask=SubnetMask gateway=DefaultGateway_IP
3、netsh interface ipv4 add dnsserver name=ID(或连接名称) address=DNS_IP index=1
如果使用动态主机协议来获取 IP 则使用如下命令行: