Windows에 해당 경로 C:\Windows\System32\drivers\etc\hosts 파일을 수정 한다.

반드시 관리자 권한으로 수정해야 한다. 아니면 해당 User에게 권한을 부여 한다. 파일을 열어보자.



# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#    127.0.0.1       localhost
#    ::1             localhost



위와 같은 화면이 나타난다. 주석에 달린 설명 대로 추가를 해보겠다.

[IP][\t[Tab]][호스트 명]



127.0.0.1    local.test.co.kr



위와 같이 아래 줄에 추가 한 후 저장 하면 127.0.0.1 대신 local.test.co.kr 로 접속이 되는 것을 확인 할 수 있다.


'Tools' 카테고리의 다른 글

Windows 네트워크 경로 확인하기  (0) 2012.12.08
Eclipse Project Explorer 트리 구조로 보기  (0) 2012.12.07
Windows 고정 IP 설정하기  (0) 2012.11.18
baretail 사용하기  (0) 2012.11.08
Eclipse 최적화 하기  (0) 2012.11.08


/etc/sysconfig/network 파일을 수정 한다.



NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=mail.whitelife.co.kr
GATEWAY=192.168.0.1


HOSTNAME을 등록 한다. 등록이 끝난 후 reboot 를 해주면 정상적으로 적용 된다.

DNS(nameserver)에 해당 hostname이 등록 되어있지 않다면, nslookup시 정상적인 IP를 받아올 수 없다.



/etc/resolv.conf 파일을 수정 한다.



# Generated by NetworkManager
search whitelife.co.kr
nameserver 61.41.153.2
nameserver 203.248.252.2



nameserver에 DNS 주소를 등록 한다. 보통 ISP(Internet Service Provider) 에서 제공을 한다.

등록이 끝난 후 reboot 를 해주면 정상적으로 적용 된다.



/etc/sysconfig/network-scripts/ifcfg-Auto_eth0 파일을 수정 한다.



HWADDR=00:00:00:00:00:00
TYPE=Ethernet
BOOTPROTO=static
BROADCAST=192.168.0.255
IPADDR=192.168.0.78
NETMASK=255.255.255.0
NETWORK=192.168.0.0
GATEWAY=192.168.0.1
DEFROUTE=yes
PEERDNS=yes
PEERROUTES=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="Auto eth0"
UUID=eba6c4c3-c3a6-4e93-abdf-b5f211c423fc
ONBOOT=yes
LAST_CONNECT=1353766285


BOOTPROTO=static

  • static: 고정 IP 방식
  • dhcp: 유동 IP 방식


ONBOOT=yes

부팅 시에 자동으로 활성화 된다. no로 설정하면 수동으로 해줘야 한다.


최종 적으로 수정이 끈나면 /etc/rc.d/init.d/network restart 를 실행 한다.



[root@whitelife etc]# /etc/rc.d/init.d/network restart
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface Auto_eth0:  Active connection state: activated
Active connection path: /org/freedesktop/NetworkManager/ActiveConnection/27
                                                           [  OK  ]
[root@whitelife etc]#


성공 적으로 적용 되는 모습을 볼 수 있다.


+ Recent posts