Skip to content

Instantly share code, notes, and snippets.

@etdsoft
Created October 9, 2013 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etdsoft/80df2dcbaa71067b78cb to your computer and use it in GitHub Desktop.
Save etdsoft/80df2dcbaa71067b78cb to your computer and use it in GitHub Desktop.
Configure the Dradis Pro appliance to use a static IP address

Using a static IP address

As root (or via sudo) edit @/etc/network/interfaces@. You will have something like this:

auto eth0
allow-hotplug eth0
iface eth0 inet dhcp

Comment these lines and add the following ones (replace with your values):

auto eth0
  iface eth0 inet static
    address 192.0.2.7
    netmask 255.255.255.0
    gateway 192.0.2.254

Tweak @/etc/resolv.conf@ if you need to adjust your DNS settings.

References

https://wiki.debian.org/NetworkConfiguration#Configuring_the_interface_manually

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment