Set Static IP Address for Ubuntu/Debian Server
May 29, 2011
Recent Posts
- AI in ERP: How Artificial Intelligence Is Changing the Way Businesses Work
- Your Data Is Talking. Are You Listening?
- Why Your Business Doesn’t Need More Software. It Needs Better Connected Software.
- Front Office vs. Back Office: 5 Signs Your CRM and ERP Are Having a Communication Breakdown
- From Excel Chaos to Automated Operations: How Power Apps Transformed a Field Service Business
Want to make your Microsoft 365 work harder for your business?
and we’ll tailor a solution that’s just right for you.
[vc_row][vc_column][vc_column_text]If you install an Ubuntu/Debian server, by default, it is only set up with DHCP and hence it fetches an IP address automatically from the DHCP server. In order to change the DHCP IP address to a static IP address you can edit /etc/network/interfaces file of your server and set it to static IP address as follows:
Content of original file:
{code}
# 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
auto eth0
iface eth0 inet dhcp
{/code}
Now, remove dhcp and change it to static. Below that enter the details of your static IP address.
Updated interfaces file:
{code}
# 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
auto eth0
iface eth0 inet static
address 10.0.0.243
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
gateway 10.0.0.1
{/code}[/vc_column_text][/vc_column][/vc_row]
