在 Linux 查看 ip 的方法相信大家都很像了解,今天在这里就给大家介绍下 Linux 查看 ip 的 急个命令,供大家参考学习linux命令大全,以备用时之需。下面是具体介绍。 ifconfig Linux 查看 IP 地址的命令--ifconfig ifconfig 命令用于查看和更改网络接口的地址和参数 $ifconfig -a lo0: flags=849 mtu 8232 inet 127.0.0.1 netmask ff000000 hme0: flags=863 mtu 1500 inet 211.101.149.11 netmask ffffff00 broadcast 211.101.149.255 ether 8:0:20:a7:4d:21 系统会显示网络接口的名称,接口的状态(up or down)linux命令大全, 接口的 IP 地址和掩码等信息 更改网络接口的 IP 地址: #ifconfig hme0 down #ifconfig hme0 211.101.149.233 netmask 255.255.255.0 up 首先,使用 down 命令参数把网络接口 hme0 的服务暂时停止,然后再用 Linux 查看 ip 的 ifconfig 命令给 接口分配新的 IP 地址和掩码,并启动网络接口服务 也可以通过改变文件/etc/hosts 中的 IP 地址的值并重新启动系统来更改机器的 IP 地址。 /etc/hosts/: 211.101.149.11 sampdt 定义主机名在/etc/hostname.hme0 及 IP 地址。 更改了网卡/增加了网卡,系统不能自动启动该接口服务,这时需要手动创建网口服务: #ifconfig hme0 plumb Linux 查看 ip 即可以为接口 le0 创建网口服务 相应地,用 ifconfig 带 unplumb 参数可以停止服务并关闭网络. netconfig 用来设置 IP 地址