如何查看主机名和IP地址
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何查看主机名和IP地址相关的知识,希望对你有一定的参考价值。
查看主机名和IP地址可以在网络适配器的详细信息里进行查看,具体的操作方法如下:
1、这里以笔记本电脑为相关的例子,首先在页面的右下角方向点击【网络图标】。
2、接下来在弹出来的页面点击【打开网络和共享中心】。
3、进入到此页面后,就可以看到电脑的主机名了;然后点击【更改适配器设置】去查看电脑的ip地址信息。
4、接着选择电脑已经连接上的无线网络连接并且鼠标双击它。
5、进入到WiFi的属性页面以后,然后在弹出来的页面点击【详细信息】。
6、进入到计算机的详细信息的页面以后,最后就可以看到自己电脑的ip地址信息了。
参考技术A1、使用Windows+R键打开“运行”窗口,然后输入CMD进入命令提示窗口
2、进入命令窗口之后,输入:ipconfig/all 回车即可看到整个电脑的详细的IP配置信息
3、查看主机名很简单右键“我的电脑”——属性
4、然后点击计算机名称就可以看到了。
本回答被提问者采纳 参考技术B 查看主机名和IP地址用命令来查询即可工具原料:电脑
查看主机名和IP地址地址方法如下:
一、用组合键win+r打开运行,输入cmd,点击确定。
二、输入IPCONFIG /ALL回车就可以看到主机名和ip地址了 参考技术C 局域网内是可以的,公网上一般查不到。
1、如果是局域网内知道某台主机的IP地址可以使用一下方法获得其主机名称。
a)、依次打开“开始”——>“运行”——>“cmd”打开dos窗口,如下图:
b)、输入命令“nbtstat -a IP地址”回车,结果如下图:
c)、在列表中看到的就是该IP对应的主机名称 参考技术D 1, 计算机名:右键单击-我的电脑(计算机),选择“属性”,会看到界面如下:
就能看到了。
2,IP地址:
打开控制面板----选择“网络和Internet”----“网络和共享中心”会看到:
双击红色圈里的----本地连接。出现:
点击中间的“详细信息”:
里面的Ipv4地址 就是常说的IP
Solaris10 修改主机名和IP地址
一、修改主机ip
1、配置hosts
[email protected]:/ # cat /etc/hosts
#
# Internet host table
#
::1 localhost
127.0.0.1 localhost
172.16.251.130 solaris10 loghost
2、查看网卡信息
[email protected]:/ # ifconfig -a
lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
e1000g0: flags=1004843<UP,BROADCAST,RUNNING,MULTICAST,DHCP,IPv4> mtu 1500 index 2
inet 172.16.251.130 netmask ffffff00 broadcast 172.16.251.255
ether 0:c:29:44:3b:b9
3、修改hostname.e1000g0
[email protected]:/ # cat /etc/hostname.e1000g0
solaris10
4、修改netmask
[email protected]:/ # cat /etc/netmasks
#
# The netmasks file associates Internet Protocol (IP) address
# masks with IP network numbers.
#
# network-number netmask
#
# The term network-number refers to a number obtained from the Internet Network
# Information Center.
#
# Both the network-number and the netmasks are specified in
# "decimal dot" notation, e.g:
#
# 128.32.0.0 255.255.255.0
#
172.16.251.0 255.255.255.0
5、修改网关信息
[email protected]:/ # cat /etc/defaultrouter
172.16.251.2
[email protected]:/ # netstat -nr
Routing Table: IPv4
Destination Gateway Flags Ref Use Interface
-------------------- -------------------- ----- ----- ---------- ---------
default 172.16.251.2 UG 1 0 e1000g0
172.16.251.0 172.16.251.130 U 1 2 e1000g0
224.0.0.0 172.16.251.130 U 1 0 e1000g0
127.0.0.1 127.0.0.1 UH 3 86 lo0
二、修改主机名
1、配置hosts
[email protected]:/ # cat /etc/hosts
#
# Internet host table
#
::1 localhost
127.0.0.1 localhost
172.16.251.130 solaris10 loghost
2、修改hostname.e1000g0
[email protected]:/ # cat /etc/hostname.e1000g0
solaris10
3、修改nodename
[email protected]:/ # cat /etc/nodename
solaris10
4、查看ipnodes
[email protected]:/ # cat /etc/inet/ipnodes
#
# Internet host table
#
::1 localhost
127.0.0.1 localhost
172.16.251.130 solaris10 loghost
以上是关于如何查看主机名和IP地址的主要内容,如果未能解决你的问题,请参考以下文章
求一个linux c程序,来查看局域网的主机名和mac地址?
如何从 Elastic Beanstalk 中的 Spring Boot 应用程序中获取客户端主机名和/或客户端 IP 地址?