How to set static IP Address in Ubuntu 17.04 Zesty Zapus
A static IP address is an IP address that was manually configured for a device, versus one that was assigned via a DHCP server.
A static IP address is called static because it doesn’t change. This is the exact opposite of a dynamic IP address, which does change.
Static IP addresses are also sometimes referred to as fixed IP addresses or dedicated IP addresses.
lsb_release -a ; ip link show ; ip route show
interfaces :- ens33
router ip address :- 192.168.0.1
gedit /etc/network/interfaces
auto ens33
iface ens33 inet static
address 192.168.0.10
netmask 255.255.255.0
gateway 192.168.0.1
systemctl restart networking.service
ping -c 4 google.com
ip address