IP

查看本地IP

最简单的方法:

image.png

  1. hostname -i

查看远程IP

image.png

  1. # 查看外网ip的详细信息
  2. curl cip.cc
  3. # 查看纯ip
  4. curl ip.cip.cc

找不到IP怎么办

1、安装net-tools

hostname

  1. # 查看
  2. hostname
  3. # 临时修改
  4. hostname NewName
  5. # 永久修改
  6. vim /etc/hostname

本地Hosts

  1. vim /etc/hosts

不能识别域名

  1. # 查看
  2. ifconfig
  3. # 编辑网络配置文件
  4. vim /etc/sysconfig/network-scripts/ifcfg-ens33
  5. # ONBOOT=yes 激活网卡
  6. # 重启网络服务
  7. service network restart