다음과 같이 로컬 루프백을 생성해야 합니다.고속 이더넷 및 기가비트 이더넷 인터페이스에서 루프백 테스트 수행.
발췌로컬 루프백 작업 구성
전송 포트를 수신 포트에 물리적으로 연결하지 않고 로컬 루프백을 구성하려면 다음 단계를 따르십시오.
구성 모드에서 다음 계층 구조 수준으로 이동합니다.
[편집하다]
user@host# 인터페이스 인터페이스 이름 편집(fastether-options | gigether-options)
로컬 루프백을 구성합니다.
[인터페이스 인터페이스 이름 편집(fastether-options | gigether-options)]
User@host#이 루프백을 설정합니다.
답변1
다음은 인터페이스 생성에 대한 문서입니다.Red Hat Enterprise Linux 3: 참조 가이드 - 8장 네트워크 인터페이스.
존재하지 않는 경우 이 줄을 추가하세요.
/etc/hosts
127.0.0.1 localhost localhost.localdomain
루트로 다음 명령을 실행하십시오.
# ifconfig lo 127.0.0.1 # route add 127.0.0.1
테스트 인터페이스
# 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