DNS 수정하기

알파로그·2023년 4월 17일
0

Linux 와 Docker

목록 보기
7/28
  • Hosts 파일을 수정해 원하는 도메인으로 ip 주소를 매핑시킬 수 있다.
    • hosts 파일은 운영체제가 호스트 이름을 IP 주소에 매핑할 때 사용하는 파일이다.

✏️ 도메인 등록하기

📍 hosts 파일 수정하기

  • 아래의 명령어를 입력해 hosts 파일 수정모드에 들어간다.
sudo vim /private/etc/hosts
  • 수정모드가 정삭적으로 작동되면 아래와 같은 페이지가 나온다.
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost
~                                                                                                       
~                                                                               
~                                                                               
"/private/etc/hosts" 10L, 256C
  • 수정모드 i 를 누르고 원하는 Ip 와 도메인을 입력한다.
    • 192.168.10.234 local.test.com 를 입력해줬다.
    • 수정이 완료되면 :wq 를 입력해 저장한다.
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost

127.0.0.1		site1.com
127.0.0.1		site2.com
127.0.0.1		site3.com
127.0.0.1		site4.com
127.0.0.1		site5.com
127.0.0.1		site6.com                                                                             
~                                                                                                       
~                                                                               
~                                                                               
-- INSERT --

📍 내가 추가한 domain 으로 접속하기

  • 이제 웹브라우저 url 에 내가 추가한 domain 을 입력하면 설정해놓은 ip 로 이동하게 된다.
  • 아니면 기본 OS bash 에서 ping 을 이용해 통신테스트를 해볼 수 있다.
ping site1.com
profile
잘못된 내용 PR 환영

0개의 댓글