hello friends. i'm using ubuntu...and xfce desktop environment. I'm not able to open the network manager to add the Ip address. and i dont know how to do this via terminal. so please help me how i can open network manager to change my static IP and gateway and other info...
thanks in advance.
Hello all,
On Jan 16, 2008 5:27 PM, mukesh yadav mak.gnu@gmail.com wrote:
hello friends. i'm using ubuntu...and xfce desktop environment. I'm not able to open the network manager to add the Ip address. and i dont know how to do this via terminal. so please help me how i can open network manager to change my static IP and gateway and other info...
This can be done using the ifconfig command (/sbin/ifconfig). For example, to set an IP to the interface eth0, you need to give something like this
#ifconfig eth0 192.168.1.1 up
One other way of doing it is by editing the /etc/network/interfaces file and adding the required information there. An example would be
auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1
On Jan 16, 2008 5:40 PM, Balachandran Sivakumar benignbala@gmail.com wrote:
Hello all,
On Jan 16, 2008 5:27 PM, mukesh yadav mak.gnu@gmail.com wrote:
hello friends. i'm using ubuntu...and xfce desktop environment. I'm not able to open the network manager to add the Ip address. and i dont know how to do this via terminal. so please help me how i can open network manager to change my static IP and gateway and other info...
This can be done using the ifconfig command (/sbin/ifconfig). For example, to set an IP to the interface eth0, you need to give something like this
#ifconfig eth0 192.168.1.1 up
One other way of doing it is by editing the /etc/network/interfaces file and adding the required information there. An example would be
auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1
I don't know if network manager is really trustworthy. The status display is misleading. Recently I changed my setup from dhcp to static (by editing /etc/network/interfaces) and now the network manager status shows "No network connection" (tooltip). This is the status while I have proper network connectivity (I am writing this email!).
Regards, Mohan S N
On Jan 16, 2008 1:04 PM, Mohan Nayaka mohansn@gmail.com wrote:
On Jan 16, 2008 5:40 PM, Balachandran Sivakumar benignbala@gmail.com wrote:
Hello all,
On Jan 16, 2008 5:27 PM, mukesh yadav mak.gnu@gmail.com wrote:
hello friends. i'm using ubuntu...and xfce desktop environment. I'm not able to open the network manager to add the Ip address. and i dont know how to do this via terminal. so please help me how i can open network manager to change my static IP and gateway and other info...
I don't know if network manager is really trustworthy. The status display is misleading. Recently I changed my setup from dhcp to static (by editing /etc/network/interfaces) and now the network manager status shows "No network connection" (tooltip). This is the status while I have proper network connectivity (I am writing this email!).
This is more to do with network manager being a different set of tools .. moment you dip into configuring network yourself network manager goes for a hike.
I would have to agree that network manager is not as complete / resilient to changes. I've faced network drops more often with network manager than wpasupplicant.
regards, C
Balachandran Sivakumar wrote:
Hello all,
On Jan 16, 2008 5:27 PM, mukesh yadav mak.gnu@gmail.com wrote:
hello friends. i'm using ubuntu...and xfce desktop environment. I'm not able to open the network manager to add the Ip address. and i dont know how to do this via terminal. so please help me how i can open network manager to change my static IP and gateway and other info...
This can be done using the ifconfig command (/sbin/ifconfig). For example, to set an IP to the interface eth0, you need to give something like this
#ifconfig eth0 192.168.1.1 up
One other way of doing it is by editing the /etc/network/interfaces file and adding the required information there. An example would be
auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1
I use Debian Etch - Xfxe. Since the ip is static, the /etc/resolv.conf file should be edited too for adding DNS servers. Like
nameserver 203.94.227.70 nameserver 203.94.243.70
In case Xfce does not use vi, then use the nano editor which is easy on newbies. Eg.
sudo nano /etc/network/interfaces
and
sudo nano /etc/resolv.conf
After everything is edited, do a 'sudo /etc/init.d/networking restart' to apply your changes.
On Jan 16, 2008 5:27 PM, mukesh yadav mak.gnu@gmail.com wrote:
I'm not able to open the network manager to add the Ip address.
Try sudo network-admin from terminal and see if it throws any errors?