Caros amigos estou configurando um novo servidor e vim novamente "beber na fonte de conhecimento a comunidade". Quero deixar ele funcionando da seguinte maneira: (serviço de rede)--(Servidor com duas placas de rede)--(roteador wireless)--(estações de trabalho). Seguindo as dicas
http://www.hardware.com.br/livros/servidores-linux/compartilhando-conexao.html estou com difiuldades de fazer as estações funcionarem com o dhcp.
O meu /etc/network está assim.
# 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 eth0 eth1
iface lo inet loopback
iface eth0 inet static
address 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
iface eth0 inet dhcp
O meu /etc/default/isc-dhcp-server ficou deste modo.
# Defaults for isc-dhcp-server initscript
# sourced by /etc/init.d/isc-dhcp-server
# installed at /etc/default/isc-dhcp-server by the maintainer scripts
#
# This is a POSIX shell fragment
#
# Path to dhcpd's config file (default: /etc/dhcp/dhcpd.conf).
#DHCPD_CONF=/etc/dhcp/dhcpd.conf
# Path to dhcpd's PID file (default: /var/run/dhcpd.pid).
#DHCPD_PID=/var/run/dhcpd.pid
# Additional options to start dhcpd with.
# Don't use options -cf or -pf here; use DHCPD_CONF/ DHCPD_PID instead
#OPTIONS=""
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACES="eth0"
Deste modo o servidor está funcionado eu navego sem problemas mas as estações não.
Estou usando o Debian 7.
Valeuu