Guilherme_240
(usa Ubuntu)
Enviado em 22/02/2016 - 10:37h
Bom dia,
Criei um servidor DHCP usando ubuntu 15.10 e isc-dhcp-server, o problema é o seguinte, o servidor distribui IP normalmente, mas o cliente só pinga sites por alguns segundos assim que eu reinicio o servidor, depois para de pingar sites e só responde ping do servidor, segue minhas cofigurações:
auto lo
iface lo inet loopback
#Interface que recebe a Internet de um DHCP
auto enp0s25
iface enps025 inet dhcp
#Interface gateway
iface enp16s0 inet static
address 10.1.0.1
network 10.1.0.0
netmask 255.255.252.0
broadcast 10.1.3.255
#dhcp.conf
ddns-update-style none;
option domain-name "example.org";
option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600;
max-lease-time 7200;
subnet 10.1.0.0 natmask 255.255.252.0 {
range 10.1.0.50 10.1.3.254;
option domain-name-servers 8.8.8.8, 10.1.0.1
option routers 10.1.0.1;
option broadcast-address 10.1.3.255
default-lease-time 600;
max-lease-time 7200;
}
#NAT /home/administrador/firewall.sh
#!/bin/bash
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o enp0s25 -j MASQUERADE
#etc/rc.local
sh /home/administrador/firewall.sh
# /etc/default/isc-dhcp-server
INTERFACES="enp16s0"
# /etc/sysctl.conf
net.ipv4.ip_forward=1
Desde já obrigado!!!