출처 : http://isulnara.com/tt/12?TSSESSION=3fd341612fcd891871634dde73f15500
솔라리스에서 DNS, IP 및 기타 Gateway 등 네트워크 설정 방법입니다.
* Solaris 에서 변경해야 될 파일들
/etc/nodename# if you need to change the name of the machine
/etc/hostname.interface# eg. hostname.hme0
/etc/hosts # Update to reflect new name
/etc/nsswitch.conf # Update if your name resolution
/etc/resolv.conf
# Update if your name servers/domain changed (DNS only)
/etc/defaultdomain # set you default domain
/etc/defaultrouter # Set the default router's IP
/etc/inet/networks # Set your network name
/etc/inet/netmasks # Set your network number
/etc/n/etc/net/ticots/hosts# For the streams-level loopback
/etc/ticlts/hosts# For the streams-level loopback
/etc/net/ticotsord/hosts # For the streams-level loopback
* Solaris 에서 IP 변경 작업
/etc/hosts 파일을 수정함.
/etc/hostname.hme0 랜카드에 적용되는 호스명을 명시
$ ifconfig hme0 [ip] netmask 0xffffff00 broadcast + up
ex)
--- 영구적인 변경
$vi /etc/hostname.hme0
credilist
$ vi /etc/hosts
127.0.0.1 localhost
211.192.191.178 credilist loghost
--- 임시변경시 (컴퓨터가 켜져있는 동안, 리부팅되면 정보가 사라짐)
$ ifconfig -a
lo0: flags=1000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
hme0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 211.192.191.178 netmask ffffff00 broadcast 211.192.191.255
$ ifconfig hme0 211.192.191.171 netmask 0xffffff00 broadcast + up
* Solaris 에서 GATEWAY 변경 작업
$ netstat -rn
$ route add default [gateway ip]
$ vi /etc/defaultrouter
[gateway ip]
ex)
--- 영구적인 변경
$ vi /etc/defaultrouter
211.192.191.177
--- 임시적인 변경
route add default 211.192.191.177
* Solaris 에서 DNS 변경 작업
ex)
$ vi /etc/resolv.conf
nameserver 168.126.63.1
nameserver 168.126.63.2
nameserver 211.169.248.153
$ vi nsswitch.conf
# hosts: 부분을 수정한다.
# consult /etc "files" only if nis is down.
hosts:files dns
* 설정 변경 후 reboot , 시스템에 관한 내용이 변경된경우
reboot
'Unix환경' 카테고리의 다른 글
[Unix] AIX, Solaris, HP-UX, Linux들의 특징 및 명령 비교 (0) | 2010.04.12 |
---|---|
[Unix] 유닉스 명령어 요약 (Sun,AIX,HP) (0) | 2010.04.12 |
[솔라리스] 파일시스템 관리 팁( 하드디스크 관리) (0) | 2010.04.12 |
[Unix] find 사용방법 (0) | 2010.04.12 |
Informix 7.0을 설치 문서 (0) | 2010.04.01 |