Ubuntu 설치 이후 interface가 dhcp로 설정되어 있으면 telnet접속이 불편하다.
이 때 /etc/network/interfaces 파일을 수정한다.

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).# The loopback network interface

auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp

“iface eth0 inet dhcp”를 삭제하거나 주석처리하고 IP를 설정해 준다.

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).# 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.0.100
netmask 255.255.255.0
dns-nameservers 168.126.63.1
gateway 192.168.0.1

설정이 끝난 다음 network서비스를 다시 시작한다.
sudo service networking restart

By yaplab

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다