Raspberry Pi_Kor_11.3.2 Host name을 이용한 통신


Published Book on Amazon


All of IOT

Starting with the Latest Raspberry Pi from Beginner to Advanced – Volume 1

All of IOT

Starting with the Latest Raspberry Pi from Beginner to Advanced – Volume 2


출판된 한글판 도서


최신 라즈베리파이(Raspberry Pi)로 시작하는 사

물인터넷(IOT)의 모든 것 – 초보에서 고급까지 (상)

최신 라즈베리파이(Raspberry Pi)로 시작하는 사

물인터넷(IOT)의 모든 것 – 초보에서 고급까지 (하)


Original Book Contents


11.3.2  Host name을 이용한 통신

 

먼저 Raspberry Pi 시스템에서 "ping" 명령을 실행해 보면 다음과 같은 내용이 표시된다.

 

pi@raspberrypi ~ $ ping  raspberrypi

PING raspberrypi (127.0.1.1) 56(84) bytes of data.

64 bytes from raspberrypi (127.0.1.1): icmp_req=1 ttl=64 time=0.182 ms

64 bytes from raspberrypi (127.0.1.1): icmp_req=2 ttl=64 time=0.183 ms

64 bytes from raspberrypi (127.0.1.1): icmp_req=3 ttl=64 time=0.189 ms

64 bytes from raspberrypi (127.0.1.1): icmp_req=4 ttl=64 time=0.208 ms

64 bytes from raspberrypi (127.0.1.1): icmp_req=5 ttl=64 time=0.186 ms

64 bytes from raspberrypi (127.0.1.1): icmp_req=6 ttl=64 time=0.233 ms

^C

--- raspberrypi ping statistics ---

6 packets transmitted, 6 received, 0% packet loss, time 5005ms

rtt min/avg/max/mdev = 0.182/0.196/0.233/0.025 ms

 

local에서는 loop back에 해당하는 127.0.1.1 IP address가 지정되어 있는 것을 알 수 있다.

 

다른 컴퓨터에서 다음과 같이 host name을 이용해서 "ping" 명령을 실행해 보면 IP address를 사용하는 것과 동일하게 정상적으로 작동하는 것을 확인할 수 있다. 다음은 MS Windows를 사용하는 컴퓨터에서 확인한 결과이다.

 

C:\>ping raspberrypi

Ping raspberrypi [192.168.1.202] 32바이트 데이터 사용:

192.168.1.202의 응답: 바이트=32 시간=2ms TTL=64

192.168.1.202의 응답: 바이트=32 시간=1ms TTL=64

192.168.1.202의 응답: 바이트=32 시간=1ms TTL=64

192.168.1.202의 응답: 바이트=32 시간=1ms TTL=64

 

192.168.1.202에 대한 Ping 통계:

    패킷: 보냄 = 4, 받음 = 4, 손실 = 0 (0% 손실),

왕복 시간(밀리초):

    최소 = 1ms, 최대 = 2ms, 평균 = 1ms

 

remote 컴퓨터에서는 Ethernet에 해당하는 192.168.1.202 IP address가 지정되어 있는 것을 알 수 있다.


 

Leave a Reply