Bash - 如何知道我的 Linux 服务器 IP 地址?

发布于 2024-11-30 18:16:36 字数 1459 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南渊 2024-12-07 18:16:36

使用:

ifconfig - 在本例中,您的 IP 将位于 inet addr: 之后 1.1.1.1

示例输出:

root@server [~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0A:E4:89:0B:97
          inet addr:1.1.1.1  Bcast:1.1.1.63  Mask:255.255.255.192
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1/or modify
          RX packets:14804377317 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11766937374 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:13799286299902 (12.5 TiB)  TX bytes:4891709752100 (4.4 TiB)
          Interrupt:169 Memory:fa000000-fa012800  will be useful,

http://www.debianadmin.com/network-interface-configuration-using-ifconfig.html

use:

ifconfig - your ip will be after the inet addr: in this case 1.1.1.1

sample output:

root@server [~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0A:E4:89:0B:97
          inet addr:1.1.1.1  Bcast:1.1.1.63  Mask:255.255.255.192
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1/or modify
          RX packets:14804377317 errors:0 dropped:0 overruns:0 frame:0
          TX packets:11766937374 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:13799286299902 (12.5 TiB)  TX bytes:4891709752100 (4.4 TiB)
          Interrupt:169 Memory:fa000000-fa012800  will be useful,

http://www.debianadmin.com/network-interface-configuration-using-ifconfig.html

遗失的美好 2024-12-07 18:16:36
ip -4 a l dev $DEVICE  | grep inet | awk '{ print $2 }'

将 $DEVICE 替换为设备名称。大多数情况下 eth0 应该是正确的

ip -4 a l dev $DEVICE  | grep inet | awk '{ print $2 }'

replace $DEVICE with the device name. eth0 should be the right in the most cases

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文