TOC
Histórico
Configuração minima do Linux baseado em CentOS 6.x. Tres arquivos são importantes nessa configuração:
ifcfg-eth0 (o nome eth0 pode mudar de acordo com o hardware), resolv.conf e network.
Configurando a interface eth0 mas ela pode ter diferentes nomes.
a) Editar o arquivo /etc/sysconfig/network-scripts/ifcfg-eth0 que contém a configuração da interface:
DEVICE=“eth0”
NM_CONTROLLED=“yes”
ONBOOT=yes
HWADDR=A4:BA:DB:37:F1:04
TYPE=Ethernet
BOOTPROTO=static
NAME=“System eth0”
UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03
IPADDR=192.168.1.44
NETMASK=255.255.255.0
b) Editar o arquivo /etc/sysconfig/network que define o default gateway:
NETWORKING=yes
HOSTNAME=centos6
GATEWAY=192.168.1.1
C) Editar o arquivo /etc/resolv.conf que contém a definição dos DNS:
nameserver 8.8.8.8 # Replace with your nameserver ip
nameserver 192.168.1.1 # Replace with your nameserver ip
d) Reiniciar os serviços de rede:
/etc/init.d/network restart
Documentos
Links
RBITS Mais info NETWORK Configuração da placa de rede Linux.