네트워크 설정 파일
/etc/hosts
/etc/resolv.conf
/etc/sysconfig/network-scripts
네트워크 시작/중지 스크립트
/etc/init.d/network [start/stop/restart/reload/status]
인터페이스 확인
ifconfig
-a : 모든 인터페이스 출력
ex) ifconfig eth0 : eth0 장치 출력
ifconfig eth0 [up|down] : eth0 up/down
ifconfig eth0 192.168.0.1 : eth0 IP설정
라우팅 확인
route
-n : 숫자로 표시
ex) 호스트 라우팅
route add 1.1.1.1/32 gw 192.168.0.1 eth1
route del 1.1.1.1
네트웤 라우팅
route add -net 1.1.2.0/24 gw 192.168.0.2 eth2
route del -net 1.1.2.0/24
'#Linux' 카테고리의 다른 글
[Linux] 네트워크 접속 (0) | 2019.01.27 |
---|---|
[Linux] 네트워크 검사 (0) | 2019.01.27 |
[Linux] 패키지 관리 - YUM (0) | 2019.01.24 |
[Linux] 패키지 관리 - RPM (0) | 2019.01.24 |
[Linux] 파일 시스템 SWAP (0) | 2019.01.24 |