ubuntu network 설정하기
Posted 2013. 1. 15. 14:21CentOS 와는 또다른 형태이다.
레드헷 계열의 CentOS는
/etc/sysconfig/network-scripts/ifcfg-eth0 이 네트워크 세팅관련 스크립트 파일의 위치였는데,
ubuntu는
/etc/network/interfaces 파일이 관련 파일이다.
내부 설정내용은 비슷하지만 참고삼아 메모한다.
vi /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.100.220
gateway 192.168.100.1
netmask 255.255.255.0
network 192.168.100.0
broadcast 192.168.100.255
interfaces 파일이 없다면 만들어준다.
'OS & System' 카테고리의 다른 글
diskpart를 이용한 부트매니저(bootmgr) 복구 (1) | 2013.10.06 |
---|---|
[팁]Linux에서 깨진글자의 파일 지우기 (0) | 2013.07.01 |
Windows 2008 R2 삭제된 디스크 파티션을 복구하다 (0) | 2012.11.13 |
[Tip] find 를 이용한 파일내용 검색 (0) | 2012.10.24 |
Hyper-V에서 CentOS 6.3 설치부터 네트웤연결까지 따라해보자.[2/2] (0) | 2012.09.10 |
- Filed under : OS & System