Trabalho em rede apenas em alguns sites

0

Eu tentei criar um servidor FTP para minha casa e eu fui para as configurações do meu roteador e pressionei habilitar na DMZ para o encaminhamento de porta ... agora nenhum site está funcionando, exceto Stackoverflow e AskUbuntu ... (IDK HOW). Eu tentei redefinir o roteador e desligar / ligar, mas nada funciona ... meu telefone e os outros computadores detectam a internet, mas estão carregando para sempre. ping assim me mostrando isso:

ping: www.google.com: Name or service not known

ou quando eu tento stackoverflow ou askubuntu com pings está me dando o mesmo erro que google ^^, mas eu posso acessar através do navegador web firefox. BTW: Eu publiquei este post da minha máquina que tem os problemas da Internet.

Estou usando o cabo e aqui está a saída: Desculpe, mas eu sou do telefone, então eu precisava digitar tudo:

cat / etc / network / interfaces:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto enp4s0
iface enp4a0 inet dhcp

E aqui está: sudo lshw -C network:

*-network
description: Ethernet interface
Product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
Vendor: Realtek Semiconductor Co., Ltd.
Physical id: 0
Bus info: pci@0000:04:00.0
Logical Name: enp4s0
Version: 0c
Serial: bc:ee:7b:8d:85:82
Size:  1Gbit/s
Capacity: 1Gbit/s
Width: 64 bits
Clock: 33 MHz
Capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation 
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168g-2_0.0.1 02/06/13 ip=10.100.102.7 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
Resources: irq:35 ioport:d000(size=256) memory:fe100000-fe100fff memory:f2100000-f2103fff

Desculpe pela bagunça que eu tentei tirar foto, mas eu tenho problema com isso e não consegui encontrar o no telefone ...

    
por therealcain 11.08.2017 / 14:44

1 resposta

1
  • Você tem um erro de digitação no arquivo / etc / network / interfaces:

Em terminal ...

gksudo gedit /etc/network/interfaces

Altere isto:

iface enp4a0 inet dhcp

Para isso:

iface enp4s0 inet dhcp

Em seguida, reinicie o seu computador.

  • E também, substitua seu driver r8169:

Em terminal ...

sudo apt-get update

sudo apt-get install r8168-dkms

reboot
  • Por fim, certifique-se de que sua configuração de MTU no seu perfil de rede Wired Connection esteja definida para 1500 ou automática. Mesma coisa no seu roteador.
por heynnema 11.08.2017 / 17:13