How to configure static ip address
Debian Linux ( Classic way)
1. Check your interface name
ip a2. Edit interfaces file
sudo nano /etc/network/interfaces3. Example Static IP Configuration
auto enp0s3
iface enp0s3 inet static
address 192.168.1.69
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 1.1.1.14. Restart networking
5. Verify
Last updated