Difference between revisions of "Set a static IP"
Jump to navigation
Jump to search
(Created page with '===Set a static IP on the server machine=== open /etc/network/interfaces <pre>sudo nano /etc/network/interfaces</pre> then edit your interface entry (likely eth0) to look someth...') |
(No difference)
|
Revision as of 05:30, 8 June 2011
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