如何在 Linux 上创建本地环回?

如何在 Linux 上创建本地环回?

我需要创建本地环回,如下所示:对快速以太网和千兆位以太网接口执行环回测试

摘抄

配置本地环回操作

要配置本地环回而不将传输端口物理连接到接收端口,请按照下列步骤操作:

  1. 在配置模式下,转到以下层次结构级别:

    [编辑]

    user@host# 编辑接口接口名称 (fastether-options | gigether-options)

  2. 配置本地环回:

    [编辑接口接口名称(fastether-options | gigether-options)]

    用户@主机#设置环回

答案1

这是他们关于界面创建的文档,标题为:Red Hat Enterprise Linux 3:参考指南 - 第 8 章 网络接口

  1. 如果不存在则添加此行/etc/hosts

    127.0.0.1       localhost       localhost.localdomain
    
  2. 以 root 身份运行以下命令

    # ifconfig lo 127.0.0.1
    
    # route add 127.0.0.1
    
  3. 测试接口

    # ifconfig lo
    lo    Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:3924  Metric:1
          RX packets:60 errors:0 dropped:0 overruns:0 frame:0
          TX packets:60 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
    
    # ping localhost
    PING localhost (127.0.0.1): 56 data bytes
    64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=0.3 ms
    64 bytes from 127.0.0.1: icmp_seq=1 ttl=255 time=0.2 ms
    64 bytes from 127.0.0.1: icmp_seq=2 ttl=255 time=0.1 ms
    64 bytes from 127.0.0.1: icmp_seq=3 ttl=255 time=0.1 ms
    64 bytes from 127.0.0.1: icmp_seq=4 ttl=255 time=0.2 ms
    64 bytes from 127.0.0.1: icmp_seq=5 ttl=255 time=0.1 ms
    
    --- localhost ping statistics ---
    6 packets transmitted, 6 packets received, 0% packet loss
    round-trip min/avg/max = 0.1/0.1/0.3 ms
    

相关内容