맥에서 hosts 파일 수정하기

맥에서 hosts 파일 수정하기


맥에서 hosts 파일 수정하기


Introduction
The hosts file is a text file that maps hostnames to IP addresses.
Upon typing a url address on the browser, the system is checking if there is a relevant entry on the hosts file and gets the corresponding IP address, else it resolves the IP via the active connection’s DNS servers.
The hosts file can be edited to block certain hostnames (like ad-serving/malicious hosts), or used for web development purposes, i.e. to redirect domains to local addresses.
hosts 파일은 IP 주소로 호스트 이름을 매핑하는 텍스트 파일입니다. 
이 호스트 파일에 관련 항목과 해당 IP 주소를 얻는 경우 브라우저에 URL 주소를 입력하면, 시스템은 다른이 활성 연결의 DNS 서버를 통해 IP를 확인, 검사입니다. 
호스트 파일 (ad-serving/malicious 호스트와 같은) 특정 ​​호스트 이름을 차단하기 위해, 편집 또는 로컬 주소에 도메인을 리디렉션하는 웹 개발을 목적으로, 즉 사용할 수 있습니다.

Editing the hosts file
Editing the hosts file in Mac OS X – Leopard, is a pretty easy task, especially if you are familiar with the terminal.
hosts 파일을 편집하기 위해 아래 절차따라 하세요.

Step 1 – Open the Terminal.app
Either by start typing Terminal on the Spotlight, or by going into Applications -> Utilities -> Terminal.

Step 2 – Open the hosts file
Open the hosts by typing on the Terminal that you have just opened:
아래와 같이 입력합니다.
1
$ sudo nano /private/etc/hosts
Type your user password when prompted.
사용자 암호를 입력하세요.

Step 3 – hosts 파일 편집
The hosts file contains some comments (lines starting with the # symbol), as well as some default hostname mappings
호스트 파일에는 간단한 설명 (# 기호로 시작하는 라인)뿐만 아니라, 몇 가지 기본 호스트 이름 매핑을 포함
 (e.g. 127.0.0.1 – localhost).
 
Simply append your new mappings underneath the default ones. Or edit one of the default values if you know what you are doing!
You can navigate the file using the arrow keys.

Step 4 – Save the hosts file
When done editing the hosts file, press control-o to save the file.
Press enter on the filename prompt, and control-x to exit the editor.
Ctrl+o 를 눌러 hosts 파일을 저장합니다.

Step 5 – Flush the DNS cache
On Leopard you can issue a simple Terminal command to flush the DNS cache, and have your host file changes to take immediate effect:
레오파드에서 당신은 DNS 캐시를 플러시하고, 즉시 적용하려면 호스트 파일을 변경해야하는 간단한 터미널 명령을 실행할 수 있습니다 :
1
$ dscacheutil -flushcache
You can now test your new mapping on the browser!






댓글 없음

댓글 쓰기

소중한 댓글은 사이트 운영에 도움이 됩니다^^