본문으로 바로가기

우분투 18.04 인터넷 연결 애러(ubuntu network error)

 

 

우분투를 새로 설치한 후 네틍워크 연결이 되지 않는 경우 해결방안입니다.

ver 18.XX 부터는 /retc/netplan/ 디렉토리에 있는  00-installer-config.yaml 파일에서 설정해야 합니다.

 

먼저 # ip a 명령어로 네트워크의 인터페이스 이름을 확인합니다.

위 그림에서는 enp4s0 으로 확인이 됩니다.

 

 

다음으로 # cat /etc/netplan/50-cloud-init.yaml 명령으로 설정된 내용을 살펴봅니다.

참고로 50-cloud-init.yaml 파일은 앞부분의 숫자가 다를 수 있습니다.

 

# This file is generated from information provided by the datasource.  Changes

# to it will not persist across an instance reboot.  To disable cloud-inits

# network configuration capabilities, write a file

# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:

# network: {config: disabled}

network:

    version: 2

    renderer : networkd

    ethernets:

        enp4s0:

            dhcp4: true

 

설정된 내용이 상이하면 vi로 위와 같이 수정한 다음  

# netplan apply 

를 입력하면 바로 설정 사항이 적용됩니다.

 

네트워크 연결이 정상적으로 되는지를 확인하시면 됩니다.