Para Configurar uma placa de rede com IP estático em qualquer versão do Linux no terminal execute inicialmente o seu "editor" de texte preferido (vi/nano/mcedit), a interface de rede sendo eth0, eth1, para configurar o endereço IP, NetMask, route, gateway e DNS.
# ifconfig eth0 192.168.0.2 netmask 255.255.255.0
# route add default gw 192.168.0.1
Após configurada a sua placa de rede reinicie o serviço
# /etc/init.d/networking restart
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.x.x.x
netmask 255.255.255.0
gateway 192.x.x.x
dns-nameservers 192.x.x.x
dns-domain dns.com.be
auto lo
iface lo inet loopback
auto eth0
#provedor oi
iface eth0 inet static
address 192.x.x.x
netmask 255.255.255.0
gateway 192.x.x.x
auto eth1
#rede interna
iface eth0 inet static
address 192.x.x.x
netmask 255.255.255.0
gateway 192.x.x.x
#servidores dns
dns-nameservers 192.x.x.x
dns-domain dns.com.be