본문 바로가기

IT/Ubuntu

Ubuntu 20.04 설정 network에 wired connection이 없어짐

DNS를 임의로 조작하다가, 원인 모르게 인터넷 연결이 갑자기 되지 않았다.

 

인터넷 연결을 확인해보니, 아래와 같이.. 충격적이게도 Wired connection 자체가 없어졌다 ㅇㅁㅇ...

 

그래서 이 것을 해결해보겠다고, 손짓발짓몸짓 다해가며 반나절을 쏟았는데... ㅜㅜ 다 안되더라...

 

https://askubuntu.com/questions/1075139/ubuntu-18-04-network-icon-disappeared-and-no-internet-access-in-vmware

 

Ubuntu 18.04 network icon disappeared and no internet access in VMware

Im using Ubuntu in VMWare14. I have a 2 virtual machine, Ubuntu 14.04.02 and Ubuntu 18.04.1. They all works well before. Today the network icon disappeared in Ubuntu 18.04.1, and I cant access int...

askubuntu.com

방법 1) interfaces를 생성후 우분투 재시작

 

여러 링크들을 보면 그냥 network manager 를 리스타트하면 쉽게 된다고 했는데, 난 이것조차 먹통이라..

 

근데, 다른 vm과 환경을 비교해보니 /etc/network/interfaces 에 파일이 존재하지 않았다..(왜그런지는 아직도 미스터리)

 

그래서 아래와 같이 내 환경설정에 맞게끔 interfaces를 만들어서 저장한 후, 우분투를 리스타트했다.

 

1
vi /etc/network/interfaces
cs

 

1
2
3
4
5
6
7
8
9
10
11
12
13
# 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 static
address 000.00.00.00
netmask 111.111.111.0
gateway 222.22.22.22
dns-nameservers 333.33.3.33
 
cs

 

다시 확인해본 결과, Wired - Eternet connetion이 정상적으로 생겼고, 인터넷도 정상적으로 동작했다..

 

원인은 잘 모르겠지만, 일단.. 이런식으로 해결했다.

 

네트워크 매니저 상태 지우고 재시작

 

근데 이게 주 원인인줄 알았는데, 이렇게 해도 안되는 경우가 있었다?!

 

터미널을 키고 다음과 같이 네트워크 매니저를 재시작하면 되는 경우도 있었다.

1
2
3
4
5
6
7
8
# 네트워크 멈추기
sudo service network-manager stop
 
# 상태(state) 파일 제거
sudo rm /var/lib/NetworkManager/NetworkManager.state
 
# 네트워크 매니저 재시작
sudo service network-manager start
cs

 

에러를 어떻게 재발시키는지 몰라서 테스트는 못하겠다만, 일단 이런식으로 해결 됐다는 내용을 정리하며...