본문 바로가기

로그 저장소 :)/리눅스.Linux

Linux Network Setting

1. 명령어(장점:즉시반영/단점:재부팅시 초기화)
#ifconfig
 - ip확인 및 변경 , ethenet 카드 시작/종료
#route
 - Network, Gateway 변경/확인

2. 유틸리티
#setup => Network Configuration =>Text기반(강추)
#system-config-network or neat =>windowX기반(비추)

3. 파일설정(강추)
/etc/sysconfig/network ->network, gateway 변경
/etc/sysconfig/network-scripts/ifcfg-eth0 ->ip 변경
/etc/resolv.conf

설정 후 #service network restart

#ifconfig

※ip & netmask변경
#ifconfig eth0 203.247.50.176 netmask 255.255.255.128 up(up은 생략가능,비활성화 down)
#ifconfig eth0

#route

할당된 주소를 변경하는 경우(Gateway, Netmask)
#route del default gw 203.247.50.1
#route del -net 203.247.50.0 netmask 255.255.255.0
#route add -net 203.247.50.128 netmask 255.255.255.128 eth0
#route add default gw 203.247.50.254 eth0


setup 유틸리티



'로그 저장소 :) > 리눅스.Linux' 카테고리의 다른 글

가상메모리(Swap)  (0) 2009.07.28
리눅스 스케쥴링(Scheduling)  (0) 2009.07.28
Linux Mount(unmount) & File System  (0) 2009.07.27
LVM  (0) 2009.07.24
RAID  (0) 2009.07.23