You need to update and/or edit the network configuration files. This tutorial provides procedures to configure a static IP address on a computer running the following operating systems:
- RHEL / Red hat / Fedora / CentOS Linux eth0 config file - /etc/sysconfig/network-scripts/ifcfg-eth0
- RHEL / Red hat / Fedora / CentOS Linux eth1 config file - /etc/sysconfig/network-scripts/ifcfg-eth1
- Debian / Ubuntu Linux - /etc/network/interfaces
Sample Setup: Linux Static TCP/IP Settings
In this example you will use the following Internet Protocol Version 4 (TCP/IPv4) Properties including IP, default gateway, and preferred DNS servers:- IP address: 192.168.1.10
- Netmask: 255.255.255.0
- Hostname: server1.cyberciti.biz
- Domain name: cyberciti.biz
- Gateway IP: 192.168.1.254
- DNS Server IP # 1: 192.168.1.254
- DNS Server IP # 2: 8.8.8.8
- DNS Server IP # 3: 202.54.2.5
RHEL / Red hat / Fedora / CentOS Linux Static IP Configuration
For static IP configuration you need to edit the following files using a text editor such as vi. Edit /etc/sysconfig/network as follows, enter:# cat /etc/sysconfig/networkSample static ip configuration:
NETWORKING=yes HOSTNAME=server1.cyberciti.biz GATEWAY=192.168.1.254Edit /etc/sysconfig/network-scripts/ifcfg-eth0, enter:
# cat /etc/sysconfig/network-scripts/ifcfg-eth0 Sample static ip configuration:
# Intel Corporation 82573E Gigabit Ethernet Controller (Copper) DEVICE=eth0 BOOTPROTO=static DHCPCLASS= HWADDR=00:30:48:56:A6:2E IPADDR=192.168.1.10 NETMASK=255.255.255.0 ONBOOT=yesEdit /etc/resolv.conf and setup DNS servers, enter:
# cat /etc/resolv.confSample static IP configurations:
search cyberciti.biz nameserver 192.168.1.254 nameserver 8.8.8.8 nameserver 202.54.2.5Finally, you need to restart the networking service, enter:
# /etc/init.d/network restartTo verify new static ip configuration for eth0, enter:
# ifconfig eth0
# route -n
# ping 192.168.1.254
# ping google.comDebian / Ubuntu Linux Static IP Configuration
Edit /etc/hostname, enter:# cat /etc/hostnameSample ip config:
server1.cyberciti.bizEdit /etc/network/interfaces, enter:
# cat /etc/network/interfacesSample static ip config:
iface eth0 inet static
address 192.168.1.10
network 192.168.1.0
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.254
Edit /etc/resolv.conf and setup DNS servers, enter:# cat /etc/resolv.confSample dns static IP configurations:
search cyberciti.biz nameserver 192.168.1.254 nameserver 8.8.8.8 nameserver 202.54.2.5Finally, you need to restart the networking service under Debian / Ubuntu Linux, enter:
# /etc/init.d/networking restartType the following commands to verify your new setup, enter:
# ifconfig eth0
# route -n
# ping google.comSee also:
- RHEL / Redhat / CentOS / Fedora Linux network configuration tutorial using GUI and config files.
- Debian / Ubuntu Linux network configuration tutorial
Source Cyberciti.





0 comments:
Post a Comment