how do i view/edit ip settings manually - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Network Problems (https://www.linux-noob.com/forums/forum-58.html) +--- Thread: how do i view/edit ip settings manually (/thread-3590.html) |
how do i view/edit ip settings manually - anyweb - 2004-02-29 to view or edit your ip settings manually for eth0 or eth1 (your network cards) go here vi /etc/sysconfig/network-scripts/ifcfg-ethx where x= the number of your network card for example vi /etc/sysconfig/network-scripts/ifcfg-eth1 will show you the config file for eth1 here is a sample one below for my wireless card Code: # Please read /usr/share/doc/initscripts-*/sysconfig.txt how do i view/edit ip settings manually - grep420 - 2004-03-01 also note that these changes only take effect if the network service is restarted or the interface is cycled. i.e. service network restart how do i view/edit ip settings manually - rSmEt - 2005-04-15 What's the terminal command for fedora 3 (2.6.x) kernel? All I can find is the ifconfig eth0 down/up but that doesn't work in fedora apparently. how do i view/edit ip settings manually - anyweb - 2005-04-16 you said Quote:All I can find is the ifconfig eth0 down/up but that doesn't work in fedora apparently. are you doing this correctly ? if you are getting a command not found error then you need to login as root correctly and that is done by typing su - Code: su - more info about the su and the - (dash) right here on linux-noob.com read this [/url][url=<___base_url___>/index.php?showtopic=549][/url][url=<___base_url___>/index.php?showtopic=549]https://www.linux-noob.com/forums/index.php?showtopic=549 once done, try Code: ifup eth0 cheers anyweb |