네트워크 카드 확인
> grep e1000 /etc/path_to_inst
"/pci@0,0/pci15ad,790@11/pci15ad,750@0" 0 "e1000g"
네트워크 카드 인식
// 솔라리스 10
> ifconfig e1000g1 plumb
// 솔라리스 11
> ifconfig net1 plumb
IP 할당
// 솔라리스 10
> ifconfig e1000g1(네트워크 인터페이스명) 192.168.111.20 netmask 255.255.255.0 broadcast + up
// 솔라리스 11
> ifconfig net0 (네트워크 인터페이스명) 192.168.111.20 netmask 255.255.255.0 broadcast + up
가상 네트워크 사용
랜카드는 1개에 N개의 IP를 할당
// 솔라리스 10
> ifconfig e1000g0:1 plumb 192.168.64.21 up
> ifconfig -a
// 솔라리스 11
> ifconfig net0:1 plumb 192.168.64.21 up
> ifconfig -a
네트워크 인터페이스 내리기
1. down 먼저
2. unplumb
// 솔라리스 10
> ifconfig e1000g0:1 down
> ifconfig e1000g0:1 unplumb
// 솔라리스 11
> ifconfig net0:1 down
> ifconfig net0:1 unplumb
'솔라리스10(solaris10)' 카테고리의 다른 글
솔라리스10(solaris10) - 프로세스 상태 및 관리 (0) | 2019.07.08 |
---|---|
솔라리스10(solaris10) - SMF , 프로세스 관리 방식 (0) | 2019.07.08 |
솔라리스10(solaris10) - netstat , route 라우팅 테이블 정보 추가, 삭제, 확인 (0) | 2019.07.08 |
솔라리스10(solaris10) - netstat - 네트워크 상태 확인 및 라우팅 테이블 보기 (0) | 2019.07.08 |
솔라리스10(solaris10) - ndd - 네트워크 카드 파라메타 확인하기 (0) | 2019.07.08 |