在Ubuntu系统中查看本机IP地址

zxl19 2023-02-27

记录一下如何在Ubuntu系统中查看本机IP地址。

使用ifconfig命令

  1. 安装:

     sudo apt install net-tools
    
  2. 语法说明:

     ifconfig [-v] [-a] [-s] [interface]
     ifconfig [-v] interface [aftype] options | address ...
    
  3. 示例:

     ifconfig        # 显示所有接口
     ifconfig -a     # 显示当前活动接口
    

使用hostname命令

  1. 语法说明:

     hostname [-a|--alias] [-d|--domain] [-f|--fqdn|--long] [-A|--all-fqdns]
              [-i|--ip-address] [-I|--all-ip-addresses] [-s|--short] [-y|--yp|--nis]
     hostname [-b|--boot] [-F|--file filename] [hostname]
     hostname [-h|--help] [-V|--version]
    
  2. 示例:

     hostname -I
    

使用ip命令

  1. 语法说明:

     ip [ OPTIONS ] OBJECT { COMMAND | help }
     ip [ -force ] -batch filename
    
  2. 示例:

     ip address
    

使用curl命令

  1. 语法说明:

     curl [options] [URL...]
    
  2. 示例:

     curl ifconfig.me        # 只显示IPv4
     curl ifconfig.me/ip     # 只显示IPv4
     curl ifconfig.me/all    # 显示所有数据
     curl cip.cc             # 显示IPv4和地址信息
    

参考

  1. linux用什么命令查看ip-PHP中文网
  2. 使用ifconfig.me返回你的ip和主机名-CSDN博客
  3. Linux查看公网IP和私网(内网)IP的方法-CSDN博客