Solaris 10 Network - IP구성 및 network restart
2013.04.09 06:01
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
원문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
출처 : http://escapetowork.tistory.com/48
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
-> 해당 장비에 사용할 IP [tab key] hostname [tab key] 도메인(.hostname) [tab key] localhost
nic (lan card) 추가 방법 <<<<<
사용중인 서버에 새로운 network interface card 추가하여 사용하는 방법.
network card를 설치 했다는 전제 하에서 아래 작업을 하시면 됩니다.
1. booting
ok boot -r
또는 #reboot -- -r
2. booting후 /etc>/path_to_inst file에 추가된 network interface card가 있는지 확인
예 )
---------------------------
"/ssm@0,0/pci@1c,700000/pci@1/SUNW,hme@0,1" 0 "hme" <--- 기존에 있던것
"/ssm@0,0/pci@1c,700000/bootbus-controller@4" 2 "sgsbbc"
"/ssm@0,0/pci@1b,600000" 7 "pcisch"
"/ssm@0,0/pci@1c,600000" 9 "pcisch"
"/ssm@0,0/pci@1b,700000" 6 "pcisch"
"/ssm@0,0/pci@1e,700000" 12 "pcisch"
"/ssm@0,0/pci@1e,700000/bootbus-controller@4" 3 "sgsbbc"
"/ssm@0,0/pci@1e,700000/pci@1" 1 "pci_pci"
"/ssm@0,0/pci@1e,700000/pci@1/SUNW,qfe@3,1" 3 "qfe" <--- 신규로 추가한것
"/ssm@0,0/pci@1e,700000/pci@1/SUNW,qfe@2,1" 2 "qfe" <--- 신규로 추가한것
"/ssm@0,0/pci@1e,700000/pci@1/SUNW,qfe@1,1" 1 "qfe" <--- 신규로 추가한것
"/ssm@0,0/pci@1e,700000/pci@1/SUNW,qfe@0,1" 0 "qfe" <--- 신규로 추가한것
----------------------------------
3. 현재 network interface 확인 (hme0만 있슴)
root@crmdm:/etc>ifconfig -a
lo0: flags=1000849 mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
hme0: flags=1000843 mtu 1500 index 2
inet 191.1.57.18 netmask ffff0000 broadcast 191.1.255.255
ether 0:3:ba:8:f3:6c
4. 추가한 qfe0 를 인식 시킴
root@crmdm:/etc>ifconfig qfe0 plumb
5. qfe0 추가 확인
root@crmdm:/etc>ifconfig -a
lo0: flags=1000849 mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
hme0: flags=1000843 mtu 1500 index 2
inet 191.1.57.18 netmask ffff0000 broadcast 191.1.255.255
ether 0:3:ba:8:f3:6c
qfe0: flags=1000842 mtu 1500 index 3
inet 0.0.0.0 netmask 0
ether 0:3:ba:8:f3:6c
7. 추가된 qfe에 ip , netmask,broadcast 할당
root@crmdm:/etc>ifconfig qfe0 inet 200.200.200.200 netmask 255.255.255.0 broadcast 100.100.100.255 up
8. 추가된 qfe0에 network signal이 있는지 확인
root@crmdm:/etc>snoop -d qfe0
Using device /dev/qfe (promiscuous mode)
----
--- CTRL+C(종료)
9. 만일 signal이 있으면 사용해도 됩니다.
10. booting후 자동적으로 인식 하게 하려면
/etc>/hostname.qfe0 (추가된 card) file에 ip를 넣어 주십시오.