My problem is straightforward. I did a sudo apt dist-upgrade. Nothing came up for me to respond to whatever for me to say I tweaked something wrong
I did a sudo reboot
Now I don’t have access to any outbound traffic. I did the dist-upgrade yesterday, 3rd november.
This is frustrating.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Oke, I just found the solution. Maybe this is can help you.
First, the problem is the upgrade makes
eth0
changed to a different name, in my case changed toens3
. You can see it using commandifconfig -a
.So, the solution is simple.
eth0
toens3
. In my VPS, the config located in/etc/network/interfaces.d/50-cloud-init.cfg
. Generally, the config located in/etc/network/interfaces
.ens3
toeth0
. You could follow this tutorial. http://www.itzgeek.com/how-tos/mini-howtos/change-default-network-name-ens33-to-old-eth0-on-ubuntu-16-04.htmlLast step, just restart the networking
sudo systemctl restart networking
. And voila!