Skip to content

Instantly share code, notes, and snippets.

@jimishjoban
Created September 24, 2015 15:03
Show Gist options
  • Save jimishjoban/fba755fe995f22340b02 to your computer and use it in GitHub Desktop.
Save jimishjoban/fba755fe995f22340b02 to your computer and use it in GitHub Desktop.
Static IP Configuration
# The loopback interface
auto lo
iface lo inet loopback
# Configuration for eth0
# We no longer need to use aliases (eg. eth0:0 eth0:1 eth0:2)
# This line ensures that the interface will be brought up during boot
auto eth0
allow-hotplug eth0
# The address and gateway are necessary.
# The netmask is taken automatically from the block.
# Example: /24 is considered to be a public IP address: netmask 255.255.255.0
iface eth0 inet static
address 139.162.25.91/24
gateway 139.162.25.1
# This is a second public IP address
#iface eth0 inet static
# address 192.0.2.6/24
# This is a private IP address. Private IPs do not have a gateway (they are not publicly routable).
# All you need to specify is the address and the block. The netmask is taken from the block.
# Example: /17 is considered to be a private IP address: netmask 255.255.128.0
iface eth0 inet static
address 192.168.159.95/17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment