1. ip설정
vi /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
# 자동으로 받을려면
# The primary network interface
auto eth0
iface eth0 inet dhcp
2. nameserver 설정
vi /etc/resolv.conf
dns-nameservers 168.126.63.1 168.126.63.2
'리눅스' 카테고리의 다른 글
[WSL] Windows Subsystem for Linux - SSH 서버 세팅하기 (0) | 2019.07.30 |
---|---|
우분투 - [Network] Device is unmanaged 메시지 관련 (0) | 2017.05.17 |
리눅스 기본명령 및 퍼미션(권한) 수정 (0) | 2017.05.16 |
우분투 16 원격 데스크탑 설치 (0) | 2017.05.16 |
RHEL/Centos7 원격데스크톱 연결 XRDP 설치 (0) | 2017.04.25 |