Assigning IP to the server

There are 2 methods
1. Run a program using firefox
2. Using command line

Run a program using firefox

1.  On Firefox, click on Show and Setup IP as in the figure.
 
assip/assip01.png

2. On the screen, you may set IP as you neeed.
However, if the setup have problem, it does not work properly as you expected, use command line instead.

assip/assip02.png


Using command line

1. Open the terminal by click on Terminal icon on the panel at the bottom of the screen

assip/assip03.png

2. You will see terminal screen show up

assip/assip04.png

3. Start edit config in /etc/network/interfaces
by run below command on the terminal

sudo gedit /etc/network/interfaces

gedit window will open up and open file /etc/network/interfaces for you to config (look at ways to config below) After editing, save the file and close the window.  Then you must activate the new config using these commands on the terminal

sudo /etc/init.d/networking stop
sudo /etc/init.d/networking start

You may have to start web server with command:
sudo service apache2 start

You may have to start mysql server with command:
sudo service mysql start


Ways to config
-To specify loopback or localhost
auto lo
iface lo inet loopback

-To specify first ethernet card(eth0) to obtain IP auomatically from a dhcp server
iface eth0 inet dhcp
auto eth0

-To specify first ethernet card(eth0) to have a fixed IP
iface eth0 inet static
address 172.16.0.1
netmask 255.255.252.0
gateway 172.16.3.254
auto eth0

 For dns, use this command:
sudo gedit /etc/resolv.conf
Then add
nameserver y.y.y.y
where y.y.y.y is dns server ip

You can also force first ethernet card(eth0) to obtain automatically IP from a dhcp server at that moment by using command:
sudo dhclient eth0

To display server IP, use command:
ifconfig
To be specific, use command:
ifconfig eth0