U can run "netconfig" command for that...
Also "neat" also may help you..
which is written at /etc/sysconfig/network-scr
also do
service network restart
or
/etc/init.d/network restart
Main Topics
Browse All TopicsHow do I change IP Address of my linux machine.
Pls. provide a step by step documentation as I'm absolutely new to Linux & know absolutely nothing but ny boss has dropped this resposibility on me,
PLS. HELP. QUICKLY
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
[root@francoisvn ~]# vi /etc/sysconfig/network-scr
example of my eth0 after the change.
DEVICE=eth0
BOOTPROTO=none
BROADCAST=192.168.1.255
IPADDR=192.168.1.245
.......
......
etc....
changed my IPaddr from .18 to .245 and wrote and quit the file and then ran
[root@francoisvn ~]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:A0:C9:E8:17:B6
inet addr:192.168.1.245 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::2a0:c9ff:fee8:17b6/6
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:347144 errors:0 dropped:0 overruns:0 frame:0
TX packets:308963 errors:147 dropped:0 overruns:0 carrier:147
collisions:0 txqueuelen:1000
RX bytes:238158724 (227.1 MiB) TX bytes:39996874 (38.1 MiB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:2527 errors:0 dropped:0 overruns:0 frame:0
TX packets:2527 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:2820303 (2.6 MiB) TX bytes:2820303 (2.6 MiB)
Business Accounts
Answer for Membership
by: sunnycoderPosted on 2004-03-05 at 05:26:16ID: 10522241
Hi ankitmathur,
ifconfig eth0 address x.y.z.w
replace eth0 by your network device (which most likely will be eth0 anyway) and x.y.z.w with the required IP address
If you want permanent changes (across reboot), login as root and run netconfig and fill in the values in the dialog
Sunnycoder