Raspberry Pi_Kor_11.7.2 “ifconfig” 명령을 이용한 활성화 및 중단


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.7.2  "ifconfig" 명령을 이용한 활성화 및 중단 

 

우리는 앞에서 network 의 현재 상태를 조회할 때 "ifconfig" 명령을 사용했었다. 그런데 이 "ifconfig" 명령도 option으로 "up" 또는 "down"을 사용하여 network를 활성화하거나 중단하는데 사용할 수 있다.  

 

network 장치를 활성화할 때 사용하는 명령 형식은 다음과 같다

 

[명령 형식]

ifconfig     [option]   [interface]  up

 

network 장치를 중단시킬 때 사용하는 명령 형식은 다음과 같다

 

[명령 형식]

ifconfig     [option]   [interface]  down

 

 

[사용 Example]

아래는 ifconfig 명령을 사용하여 network를 중단한 사례이다.

pi@raspberrypi ~ $ ifconfig down

 

pi@raspberrypi ~ $ ifconfig

 

 

아래는 ifconfig 명령을 사용하여 network를 다시 활성화한 사례이다.

pi@raspberrypi ~ $ ifconfig up

 

pi@raspberrypi ~ $ ifconfig

 

 

 


 

Leave a Reply