更改Windows Server Core 2008计算机名字和配置网络连接

本文涉及的产品
云解析 DNS,旗舰版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
全局流量管理 GTM,标准版 1个月
简介:
更改Windows Server Core 2008计算机名字

步骤:

1. 以管理员的身份登录Windows Server核心服务器。

2. 运行“hostname”,显示当前计算机名字。

3. 运行netdom renamecomputer WIN-M95F5DFAZC0 /newname:FileServer 其中WIN-M95F5DFAZC0是现在的计算机名字,FileServer是新的计算机名字。

4. 运行shutdown /r /t 0 重启系统。

clip_image002[22]

配置网络连接

步骤:

1. 使用管理员账号登录Windows Server 核心操作系统。

2. 使用IPconfig /all 查看Ip地址。发现已经从DHCP请求得到了地址。

clip_image004[20]

Ping www.inhe.net测试到Internet的连接性。发现能够解析该域名的地址,并且能够从该地址返回数据包。

clip_image006[20]

如果网络上没有DHCP服务器给分配IP地址,你需要进行以下步骤人工指定静态地址。

输入netsh

输入interface

输入show interface显示接口

输入Exit退出

clip_image008[18]

输入netsh

输入interface ipv4 set address name=”本地连接” source=static addr=10.7.1.212 mask= 255.255.255.0 gateway=10.7.1.1

clip_image010[16]

以下配置指定使用的DNS服务器

输入netsh

输入interface ipv4 set dnsserver “本地连接” static 10.7.10.232 primary

clip_image012[17]

输入exit退出

输入Ipconfig /all查看配置的DNS

Ping www.inhe.net测试到Internet的连接性。发现能够解析该域名的地址,并且能够从该地址返回数据包。表明能够连接到Internet。


本文转自 onesthan 51CTO博客,原文链接:http://blog.51cto.com/91xueit/1110424,如需转载请自行联系原作者

相关文章
|
15天前
|
Ubuntu Oracle 关系型数据库
Oracle VM VirtualBox之Ubuntu 22.04LTS双网卡网络模式配置
这篇文章是关于如何在Oracle VM VirtualBox中配置Ubuntu 22.04LTS虚拟机双网卡网络模式的详细指南,包括VirtualBox网络概述、双网卡网络模式的配置步骤以及Ubuntu系统网络配置。
42 3
|
15天前
|
网络安全 虚拟化 Windows
windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题
windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题
|
16天前
|
Ubuntu
树莓派 —— ubuntu上通过netplan配置网络
树莓派 —— ubuntu上通过netplan配置网络
|
25天前
|
PHP Windows
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
|
13天前
|
域名解析 负载均衡 网络协议
Linux网络接口配置不当所带来的影响
总而言之,Linux网络接口的恰当配置是保证网络稳定性、性能和安全性的基础。通过遵循最佳实践和定期维护,可以最大程度地减少配置错误带来的负面影响。
44 0
|
18天前
|
监控 安全 网络安全
|
20天前
|
缓存 负载均衡 网络协议
Haskell网络编程:深入理解代理和TLS配置
Haskell网络编程:深入理解代理和TLS配置
|
1月前
|
开发框架 .NET API
Windows Server 2022 安装IIS 报错 访问临时文件夹 C:\WINDOWS\TEMP\3C 读取/写入权限 错误: 0x80070005
Windows Server 2022 安装IIS 报错 访问临时文件夹 C:\WINDOWS\TEMP\3C 读取/写入权限 错误: 0x80070005
68 0
|
1月前
|
Linux Docker Windows
Windows——Docker拉取Windows Server镜像
Windows——Docker拉取Windows Server镜像
100 0