Static IP Address for Raspbian: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
= Static IP Address =
To create a static IP address for Raspbian.
To create a static IP address for Raspbian.
<pre>
<pre>
Line 23: Line 24:
</pre>
</pre>


== Add an IP Alias ==
<pre>
iface eth0:0 inet static
address 192.168.22.1
netmask 255.255.255.0
network 192.168.22.0
broadcast 192.168.22.255
</pre>
= Config Example =
Here is an example of my config file.
Here is an example of my config file.
<pre>
<pre>
auto lo
auto lo
iface lo inet loopback


iface lo inet loopback
iface eth0 inet static
iface eth0 inet static
address 192.168.13.252
address 192.168.13.252
netmask 255.255.255.0
netmask 255.255.255.0
Line 35: Line 45:
broadcast 192.168.13.255
broadcast 192.168.13.255
gateway 192.168.13.254
gateway 192.168.13.254
iface eth0:0 inet static
address 192.168.22.1
netmask 255.255.255.0
network 192.168.22.0
broadcast 192.168.22.255


allow-hotplug wlan0
allow-hotplug wlan0

Revision as of 21:11, 2 January 2014

Static IP Address

To create a static IP address for Raspbian.

vi /etc/network/interfaces

Change the line

iface eth0 inet dhcp

to

iface eth0 inet static

and add the following lines immediately after the line above otherwise adding the lines to the end of the file will assign the information to the wireless network wlan0.

address 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.254

Add an IP Alias

iface eth0:0 inet static
address 192.168.22.1
netmask 255.255.255.0
network 192.168.22.0
broadcast 192.168.22.255

Config Example

Here is an example of my config file.

auto lo
iface lo inet loopback

iface eth0 inet static
address 192.168.13.252
netmask 255.255.255.0
network 192.168.13.0
broadcast 192.168.13.255
gateway 192.168.13.254

iface eth0:0 inet static
address 192.168.22.1
netmask 255.255.255.0
network 192.168.22.0
broadcast 192.168.22.255

allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp