MauroFontoura
(usa CentOS)
Enviado em 23/01/2014 - 07:36h
Cara configura a placa de rede no arquivo:
/etc/network/interfaces
Se voce configurar com o ifconfig toda a vez que reiniciar o servidor tera que rodar o comando novamente.
# vi /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.0.96
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.252
=================================================
Reinicia a interface de rede
# /etc/init.d/networking stop
# /etc/init.d/networking start
=================================================
Roda o ifconfig para ver como ficou
# ifconfig
=================================================
Configura a rota
# # route add -net 192.168.0.0/24 gateway 192.168.0.252
=================================================
Roda o route -n para ver como ficou a rota
# route -n
=================================================