In this example I will show how to setup network configuration using command line and graphical tool in Ubuntu 12.04. To start accessing internet or sharing other resources on the network you have to configure TCP/IP settings of you ethernet card. In ubuntu you can configure network settings through GUI and CLI. It can be a difficult task for newbie user who is switching from other OS to ubuntu as the look and feel of ubuntu will be different in comparison of other OS (specifically windows). In this tutorial we will be seeing how to configure TCP/IP setting via GUI as well as CLI.
Before starting the configuration part, you have to know whether you will be configuring IP manually or IP will be assigned directly through DHCP server.
In case of manual IP assignment you should know IP address, subnet mask, gateway and DNS. In this tutorial I am using following information. Remember you don’t require it in case of DHCP configuration.
IP : 192.168.1.100
NETMASK : 255.255.255.0
GATEWAY : 192.168.1.1
BROADCAST : 192.168.1.255
NETWORK : 192.168.1.0
DNS : 8.8.8.8
Method 1 : Configure network GUI mode
Step 1 : First find out the network interface to configure. Open a terminal and run ifconfig
ifconfig
Result will be something similar to below screenshot.
Step 2 : We will be assigning IP address to eth0 adapter. To do the same Click on “System Setting” and select “Network”
Step 3 : As eth0 is wired connection click on “wired”. Choose “ON” option and click on “Configure” button.
Step 4 : Go to “IPv4 Settings” tab. In case of DHCP / Automatic configuration choose “Automatic (DHCP)” option in “method”
In case of manual configuration select “Manual” option in “method”. Click on “Add” button. Enter IP Address, netmask and gateway information. Also enter DNS Server. In this example I am using google DNS server’s IP.

After finishing it up click on “Save” button.
To confirm the setting again run “ifconfig” command and check the “eth0″ interface settings. In case of successful configuration you will see something like below screenshot.

Method 2 : Configure network CLI Mode
Step 1 : First find out the network interface to configure. Open a terminal and run ifconfig
ifconfig
Result will be something similar to below screenshot.
Step 2 : We will be assigning IP address to eth0 adapter. Open a terminal and type
sudo vi /etc/network/interfaces
Step 3 : Now you need to add eth0 information in this file.
In case of DHCP / Automatic IP assignment enter following line and save this file.
iface eth0 inet dhcp
In case of manual IP assignment enter following line and save this file.
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
To configure DNS, enter following command. Remember to run it through “root” user
echo “nameserver 8.8.8.8″ >> /etc/resolve.conf
Step 4 : Now run following command to start eth0 interface
sudo ifup eth0
Step 5: To confirm the setting again run “ifconfig” command and check the “eth0″ interface settings. In case of successful configuration you will see something like below screenshot.
Hope that would be helpful for you.
Incoming search terms:
- ubuntu 12 04 manual network configuration (38)
- ubuntu 12 04 network configuration (35)
- ubuntu 12 04 network configuration command line (32)
- ubuntu 12 04 network configuration gui (30)
- ubuntu 12 04 static ip ifconfig (17)
- network settings command line ubuntu 12 04 (15)
- ubuntu 12 04 configure network (13)
- ubuntu 12 04 configure network command line (12)
- ubuntu 12 04 manual network (11)
- how to create gateway in ubuntu without GUI (10)



May 23rd, 2012
Sheikh Khalid










Posted in
Tags: 







