Skip to content

Instantly share code, notes, and snippets.

@esmaeelE
Created February 26, 2024 15:09
Show Gist options
  • Save esmaeelE/32ee1b3bad07d29312a469d11a8dc5a7 to your computer and use it in GitHub Desktop.
Save esmaeelE/32ee1b3bad07d29312a469d11a8dc5a7 to your computer and use it in GitHub Desktop.
Networking commands

Networks

Change IP in debian based systems

/etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug enp0s3
#iface enp0s3 inet dhcp
iface enp0s3 inet static
  address 192.168.1.105
  netmask 255.255.255.0
  gateway 192.168.1.1
  dns-nameservers 4.2.2.4 8.8.8.8

Restart Networking service to take effect.

$ sudo systemctl restart networking.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment