솔라리스 reboot 없이 네트웍 재시작
svcadm restart network/physical# ifconfig vmxnet0 192.168.150.111 netmask 255.255.255.0 broadcast 192.168.150.255
OS : Open Solaris Version 10 u3
Vmware 를 이용한 가상서버 설치함
시스템상에서 IP를 변경하거나 서버 이름을 변경할때 ...
1. Server의 IP가 변경되었을때.
#
# ifconfig -a
lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
vmxnet0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 192.168.100.100 netmask ffffff00 broadcast 192.168.100.255
ether 0:c:29:c0:38:df
#
#
# more /etc/defaultrouter
192.168.100.2
#
# more /etc/netmasks
#
# The netmasks file associates Internet Protocol (IP) address
# masks with IP network numbers.
#
# network-number netmask
#
#
192.168.100.0 255.255.255.0
#
: 현재 Lan Card 이름은 vmxnet0 이고
: IP는 192.168.100.100
: Gateway는 192.168.100.2
: netmask는 255.255.255.0
: netmask 주소대역 192.168.100.0 입니다.
이 IP를 아래로 변경하기
IP : 192.168.150.111
Gateway : 192.168.150.254
netmask : 255.255.255.0
netmask대역 : 192.168.150.0
호스트 네임 변경
# hostname santafe2
IP변경에 따른 수정해 주어야 할 System file list
/etc/hosts
/etc/defaultrouter
/etc/netmasks
: 솔라리스 9 버젼까지만 해도 위의 3가지만 설정해 주면되었었다
/etc/inet/ipnodes
: 솔라리스 10 버젼부터는 이파일까지 바꿔 줘야만한다
모두 변경 후 꼭 재부팅
재부팅 없이 네트웍 재시작 하려면 아래와 같이
# ifconfig vmxnet0 192.168.150.111 netmask 255.255.255.0 broadcast 192.168.150.255
# svcadm restart network/physical
'IT' 카테고리의 다른 글
iptables (0) | 2013.09.14 |
---|---|
톰켓 시작 데몬 등록 (0) | 2013.09.14 |
FileZilla Server (0) | 2013.09.11 |
net use /delete (0) | 2013.09.10 |
yum 간단사용법 (0) | 2013.09.10 |