python ip 출력
2017. 5. 11. 11:05
import socket
socket.gethostname()
#호스트이름
#Looka
socket.gethostbyaddr(socket.gethostname())
#호스트 이름, [], 호스트의 맥 주소 를 list로 반환
#('LooKa', [], ['0000:0000:0000:0000:0000:0000'])
socket.gethostbyname(socket.gethostname())
#호스트의 첫번째 ip, -> 첫번째?여러 ip 리스트 vm이깔려있으면 그에 따른 vmnet8,vmnet1...여러개있는데그중첫번째거인듯
#테스트상vmnet8의 ip를 가져옴
socket.gethostbyname_ex(socket.gethostname())
#호스트의 이름, 모든 아이피 list로 받아옴