Tips: How to setting static IP Address On Linux Ubuntu 10.10

Created By: -
Tips: How to setting Static IP Address On Linux Ubuntu 10.10 is quite different when compared with how to set ip address on windows .

Tips: How to setting static IP Address On Linux Ubuntu 10.10 New

Suppose There is a case like this , Connect 2 computers ( Linux Ubuntu and Windows XP )

Ubuntu Linux computer will be at SET
IP = 192.168.1.1
Subnet Mask = 255.255.255.0 his

Windows Xp computer will be at SET
IP = 192.168.1.2
Subnet Mask = 255.255.255.0 his

Before the first IP Setting switch from a normal user ( $ ) go into super user root ( # ) first
$ sudo su - l
enter the password ( blank password is not visible , if it is filled press enter )
after that it will switch to root with no sign traits #

Step Setting IP Address :

1.Lakukan change / edit files on the interfaces file
 # nano /etc/network/interfaces

2 . Fill As the examples below

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.1.1 < --- IP Address LINUX UBUNTU
netmask 255.255.255.0 < --- Subnet Mask its
broadcast 192.168.1.255
network 192.168.1.0

3 . If It Do storage by pressing ( Ctrl + X ) and press enter

4 . Upon the restart the service IP Addressnya
# /etc/init.d/networking restart

5 . Settings To check the results of the success or failure
# ifconfig

6 . Checks connection to the windows ip 192.168.1.2 ,
# ping 192.168.1.2

7 . If SUCCESSFUL will display a no results message Reply TTL .

* Hopefully Helpful

[Static IP Address]