Linux查看ip的实例方法

Sure! Here is a step-by-step guide on how to view IP addresses in Linux, along with two examples:

  1. Open a terminal:
  2. Press Ctrl + Alt + T to open a new terminal window.
  3. Alternatively, you can search for \"Terminal\" in the applications menu and click on it.

  4. Use the ifconfig command:

  5. Type ifconfig in the terminal and press Enter.
  6. This command displays the network interfaces and their corresponding IP addresses.

Example 1:
```
$ ifconfig
eth0: flags=4163 mtu 1500
inet 192.168.1.10 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::a00:27ff:fe8e:5e4a prefixlen 64 scopeid 0x20 ether 08:00:27:8e:5e:4a txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73 mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10
loop txqueuelen 1000 (Local Loopback)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
```

In this example, the IP address of the eth0 interface is 192.168.1.10, and the IP address of the lo (loopback) interface is 127.0.0.1.

  1. Use the ip command:
  2. Type ip addr show or ip a in the terminal and press Enter.
  3. This command provides detailed information about the network interfaces, including their IP addresses.

Example 2:
$ ip addr show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 08:00:27:8e:5e:4a brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::a00:27ff:fe8e:5e4a/64 scope link
valid_lft forever preferred_lft forever

In this example, the IP address of the eth0 interface is 192.168.1.10, and the IP address of the lo (loopback) interface is 127.0.0.1.

These are two common methods to view IP addresses in Linux using the ifconfig and ip commands. You can choose the method that suits your needs and preferences.

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Linux查看ip的实例方法 - Python技术站

(0)
上一篇 2023年7月30日
下一篇 2023年7月30日

相关文章

  • 暗黑3登陆发生错误code18012解决方法

    下面我将为大家详细讲解”暗黑3登陆发生错误code18012解决方法”的完整攻略。 问题描述 在使用暗黑3游戏时,有时会出现“登陆发生错误,code18012”的提示,导致玩家无法正常进入游戏进行游戏体验。 解决方法 出现该问题的原因可能是因为暗黑3游戏客户端在与服务器进行通信时出现了错误,可能是因为网络不稳定、防火墙或杀毒软件的拦截等原因。因此,解决该问题…

    other 2023年6月27日
    00
  • 删除win10更新后的z盘符(已验证)

    删除Win10更新后的Z盘符(已验证) 最近,一些用户在更新Windows 10后发现,新的系统分配了一个Z盘符,并且无法删除。这是因为在新的更新版本中,Microsoft修改了默认的磁盘分区方式,从而导致了这一问题。在这篇文章中,我们将为您详细介绍如何删除Win10更新后的Z盘符。 步骤一:打开磁盘管理器 首先,我们需要打开Windows磁盘管理器。可以通…

    其他 2023年3月28日
    00
  • Java的三种代理模式简述

    Java的三种代理模式简述 Java的三种代理模式为静态代理、动态代理和CGLIB代理。 一、静态代理 静态代理指的是代理对象在编译期已经确定的情况下所使用的代理模式。代理类与委托类实现了相同的接口,代理类对目标对象进行了包装,所以在调用目标对象时需要通过代理对象来执行。静态代理在性能方面较差,但是实现较为简单,常用于简单业务场景。 示例: interfac…

    other 2023年6月26日
    00
  • mysql的group_concat()函数合并多行数据

    mysql的group_concat()函数合并多行数据 在MySQL中经常会遇到需要将多行数据合并成一行的情况,而MySQL提供了一个非常便捷的函数group_concat()来实现此功能。本文将详细介绍如何使用group_concat()函数来实现将多行数据合并成一行的操作。 group_concat()函数的使用 group_concat()函数可以将…

    其他 2023年3月28日
    00
  • JavaScript知识:构造函数也是函数

    JavaScript知识:构造函数也是函数 什么是构造函数 构造函数是一种特殊的函数,用于创建并初始化一个对象。在 JavaScript 中,构造函数是通过定义一个以大写字母开头的函数名称来定义的,而不是通过特殊的语法结构来定义。 在构造函数中,常用的方式是通过 this 关键字来引用当前正在创建的对象,并设置其属性/方法。构造函数定义的属性和方法可以被所有…

    other 2023年6月27日
    00
  • 浅谈Python类里的__init__方法函数,Python类的构造函数

    下面是对“浅谈Python类里的__init__方法函数,Python类的构造函数”的详细讲解: 1. Python类里的__init__方法函数 在 Python 中,__init__ 是一个特殊的方法,它被称作构造函数或初始化函数。它在创建对象时执行,并用来初始化对象的属性。在定义一个类时,无论是否显式地声明了构造函数,Python 都会为该类自动生成一…

    other 2023年6月26日
    00
  • CSS实现横向粒子变动加载动画

    通过CSS实现横向粒子变动加载动画的具体攻略如下: 1. 准备阶段 首先,在HTML文件头部加入以下代码,引入动画所需要用到的CSS样式文件: <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/riodw/css-particles-demo/css/rese…

    other 2023年6月25日
    00
  • 目标世界上最小的linux系统—ttylinux体验

    以下是关于“目标世界上最小的Linux系统—ttylinux体验”的完整攻略: 步骤1:下载ttylinux 首先,需要从ttylinux的官方网站ttylinux的ISO镜像文件。可以使用以下链接下载: http://www.minimalinux.org/download/ttylinux-16.1.iso 步骤2:创建虚机 在下载ttylinux后,需…

    other 2023年5月7日
    00
合作推广
合作推广
分享本页
返回顶部