Olá Pessoal,
Primeiramente gostaria de pedir desculpas se já existe um tópico como esse, mas eu procurei no site e não encontrei uma solução. Perdoe-me se fiz algo duplicado
Preciso de ajuda!! rs sou iniciante!!!
Tenho um Dell Power Edge T310 com o ubuntu 9.10 (ainda não coloquei o 10.4)
Minha conexão é vírtua!
Tenho 15 máquinas na rede com windows 7, o problema é que elas não conseguem se conectar se eu colocar para detectar o ip automaticamente, só quando indico o local da rede.
Segue meus arquivos de config.
interfaces:auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet static
address 10.1.1.1
netmask 255.255.255.0
network 10.1.1.0
broadcast 10.1.1.255
Sendo que eth0 para o cabo do modem e eth1 para rede local
arquivo de dhcpd.conf
#
# Sample configuration file for ISC dhcpd for Debian
#
# Attention: If /etc/ltsp/dhcpd.conf exists, that will be used as
# configuration file instead of this file.
#
# $Id: dhcpd.conf,v 1.1.1.1 2002/05/21 00:07:44 peloy Exp $
#
# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;
# option definitions common to all supported networks...
option domain-name "x.com.br";
option domain-name-servers x.x.x.x, x.x.x.x;
default-lease-time 43200;
max-lease-time 43200;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.
#subnet 192.168.0.1 netmask 255.255.255.0 {
#}
# This is a very basic subnet declaration.
subnet 10.1.1.1 netmask 255.255.255.0 {
range 10.1.1.2 10.1.1.100;
# option routers
}
# This declaration allows BOOTP clients to get dynamic addresses,
# which we don't really recommend.
#subnet 192.168.0.1 netmask 255.255.255. {
# range dynamic-bootp 192.168.0.40 192.168.0.60;
# option broadcast-address 192.168.0.255;
# option routers 192.168.1.102;
#}
# A slightly different configuration for an internal subnet.
subnet 10.1.1.1 netmask 255.255.255.0 {
range 10.1.1.2 10.1.1.100;
option domain-name-servers x.x.x.x;
option domain-name "x.com.br";
option routers 10.1.1.1; acho que aqui esta errado
option broadcast-address 10.1.1.255;
default-lease-time 21600;
max-lease-time 43200;
}
Já rodei o comando
Modprobe iptable_nat
Echo 1 > /proc/sys/net/ipv4/ip_forward
Não sei mais o que fazer…
Poderiam me ajudar?
Desde já agradeço!