Set a static IP

From Archivematica
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Set a static IP on the server machine

open /etc/network/interfaces

sudo nano /etc/network/interfaces

then edit your interface entry (likely eth0) to look something like (you need to know your network details):

auto eth0
iface eth0 inet static
        address 192.168.0.100
        netmask 255.255.255.0
        gateway 192.168.0.1

reload network configuration:

/etc/init.d/networking restart