Debian Static IP how to

Debian Static IP

Debian Static IPDebian Static IP. If you need to change your IP from Dynamic (DHCP) to static, I have presented a method here for doing it. There are other alternatives as well. You can reserve the IP in the router to a specific mac address.

In Debian (and Ubuntu, just remember sudo) the network card is stored here:
/etc/network/interfaces
Its up to you if you want to back it up before you go on and edit it.
Anyway, launch vim or something else you fancy.
vim /etc/network/interfaces

 

 

And it will probably look something like this:

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

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
auto eth0

That is how it looks when using a dhcp server instead of static ip. If we decide to use the ip 10.0.0.10 instead of a dynamic ip. And we want it to be able to talk to the internet, and the gateway is at 10.0.0.1. We replace the primary part with this:

# The primary network interface
auto eth0
iface eth0 inet static
address 10.0.0.10
gateway 10.0.0.1
netmask 255.255.255.0
network 10.0.0.0 # Not required
broadcast 10.0.0.255 # Not required

Then we need to restart the network card interface to activate the static ip.
/etc/init.d/networking restart

Happy communicating!

About Author

Related Posts

php8 gd

PHP8 gd Activate after installation

PHP8 GD activate after installation. GD doesn’t get activated by default. Not even a reboot after installation will activate it. So how do we do it? In…

Debian 12: linux-image-6.1.0-10amd64

Troubleshooting dependency issues in Debian 12: Resolving linux-image-6.1.0-10amd64 package dependency problems. If you installed the Debian 12 from the live image the issue is the raspi-firmware. Even…

4 Best Free Nas Software That Is Open Source

Free NAS software or operating systems that are free to use and will turn a computer into a NAS more advanced than the dedicated boxes sold. What…

Raspbian default password

Raspbian default password

Looking for the Raspbian default password? It is the most essential username and password that you will need for your raspberry. At least if you are running…

OpenMediaVault default password

OpenMediaVault default password

OpenMediaVault default password is printed in the documentation. I did not see it the first time I installed it either. So I had to do some detective…

Debian change dns

Debian change DNS settings to a new DNS

Debian change DNS settings for speed improvement or privacy. It is really easy to do. So let us see how it’s done and get to it. The…

Leave a Reply