Rede não sobe no Windows

1. Rede não sobe no Windows

jonatan rader
RADER

(usa Ubuntu)

Enviado em 18/11/2016 - 13:39h

Tenho um servidor instalei o Ubuntu 16, Configurei as 2 interfaces de rede enp2s0 (rede externa) enp3s0 (rede local), no servidor tem internet, mas ele não navega nas estações windows, rede tem, mas internet não.

Chain INPUT (policy ACCEPT)
target prot opt source destination

Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere

Chain OUTPUT (policy ACCEPT)
target prot opt source destination
root@FIREWALL:/home/spark# iptables -S
-P INPUT ACCEPT
-P FORWARD ACCEPT
-P OUTPUT ACCEPT
-A FORWARD -i enp3s0 -j ACCEPT
-A FORWARD -i enp3s0 -j ACCEPT
-A FORWARD -i enp3s0 -j ACCEPT
-A FORWARD -i enp3s0 -j ACCEPT


dhcp.conf

ddns-update-style none;
default-lease-time 600;
max-lease-time 7200;

authoritative;

log-facility local7;

subnet 192.168.0.0 netmask 255.255.255.0 { #network
range 192.168.0.2 192.168.0.250; # Range
option domain-name-servers 8.8.8.8, 8.8.4.4;
#option domain-name "krizna.com"; #Domain name
option routers 192.168.0.1; #Gateway
option broadcast-address 192.168.0.255; #Broadcast
default-lease-time 600;
max-lease-time 7200;
}

grato



  


2. Re: Rede não sobe no Windows

Fabiano
fpires

(usa Debian)

Enviado em 18/11/2016 - 16:54h

Duas coisas:
1) Verifique se o IP Forwarding está ativo:
cat /proc/sys/net/ipv4/ip_forward 

Deve estar como 1. Se não estiver, edite o arquivo /etc/sysctl.conf e inclua a seguinte linha:
net.ipv4.ip_forward = 1 


2) Não vi nenhuma regra de NAT ... Essa regra vai depender do seu ambiente.




3. Re: Rede não sobe no Windows

jonatan rader
RADER

(usa Ubuntu)

Enviado em 18/11/2016 - 17:25h

Sim já verifiquei, e esta correto, quanto ao NAT tambem não esta subindo, eu não encontrei de onde ele esta tirando aquelas regras.
pois as regras que criei foi esta:
#limparegras
$IPTABLES -F
$IPTABLES -F INPUT
$IPTABLES -F OUTPUT
$IPTABLES -F FORWARD
$IPTABLES -t mangle -F
$IPTABLES -t nat -F
$IPTABLES -X


# Carrega os módulos
modprobe iptables
modprobe iptable_nat

# Compartilha a conexão
modprobe iptable_nat
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o enp2s0 -j MASQUERADE

iptables -A INPUT -i enp2s0 -p tcp -m tcp --dport 80 -j ACCEPT
iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
iptables -A INPUT -p tcp -m tcp --dport 1021 -j ACCEPT
iptables -A INPUT -p tcp -m tcp --dport 1080 -j ACCEPT
iptables -A OUTPUT -p tcp -m tcp --dport 80 -j ACCEPT
iptables -A OUTPUT -p tcp -m tcp --dport 443 -j ACCEPT
iptables -A OUTPUT -p tcp -m tcp --dport 21 -j ACCEPT
iptables -A OUTPUT -p tcp -m tcp --dport 1863 -j ACCEPT
iptables -A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
iptables -A OUTPUT -p udp -m udp --dport 53 -j ACCEPT

interfaces:
auto lo
iface lo inet loopback

auto enp2s0
iface enp2s0 inet static
address 192.168.1.100
netmask 255.255.255.0
network 192.168.1.1
broadcast 192.168.1.255
gateway 192.168.1.3


# Segunda placa de Rede (local)
auto enp3s0
iface enp3s0 inet static
address 192.168.0.2
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255

o DHCP esta ok, , ele entrega os IPs, mas não identifica a rede ou seja não reconhece o Gateway






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts