2017. 7. 10. 15:30ㆍ리눅스
우분투는 처음 사용해 보는데 CentOS 계열과 명령어 및 세팅 방법이 많이 다른 것 같다.
1. vim /etc/network/interfaces ( CentOS의 /etc/sysconfig/network-scripts/ifcfg-eth0 와 비슷한 파일로 보면 된다.)
root@xen1:~# cat /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto enp0s25 iface enp0s25 inet static address 192.168.8.201 --> 설정하려는 IP netmask 255.255.255.0 --> netmask gateway 192.168.8.1 --> gateway dns-nameservers 8.8.8.8 --> DNS 서버
|
2. vim /etc/resolv.conf
root@xen1:~# cat /etc/resolv.conf # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN nameserver 8.8.8.8
|
3. 네트워크 재시작
root@xen1:~# systemctl restart networking.service |
4. IP 확인
- ifconfig
※ 만약, 네트워크 재시작해도 IP가 변경되지 않으면, 재부팅을 한다.
'리눅스' 카테고리의 다른 글
[우분투] 부팅시 서비스 자동실행 등록 (0) | 2017.07.17 |
---|---|
[우분투] root 계정 ssh 로그인 허용 (0) | 2017.07.10 |
/etc/fstab 설정 (1) | 2016.06.07 |
소스 rpm (src.rpm) 파일 설치하기 (0) | 2016.04.28 |
오라클 버추얼박스 익스포트(export) (0) | 2016.04.17 |