Nov 22, 2019 by Thibault Debatty | 2519 views
https://cylab.be/blog/46/modify-your-static-ip-on-ubuntu-server
This seems easy, but… When you modify your static IP address in /etc/network/interfaces, the old IP is not removed. The new IP is simply added to your interface.
You can check this using the command
ip address
To remove the old IP address you can either:
sudo ip addr del 172.20.104.128/16 dev enp0s8
sudo service networking restart
sudo ip addr flush dev enp0s8
sudo service networking restart
This blog post is licensed under
CC BY-SA 4.0
Sysadmin VPN
Sysadmin
SSH was created in 1995 by Tatu Ylönen, a researcher at the Helsinki University of Technology in Finland [1]. Over more than 30 years of existence, it has evolved to offer more security. But once in a while you may have to SSH into an older device that does not support modern SSH algorithms and mechanisms. This is typically the case to configure network devices like switches.Linux Sysadmin