após a atualização do software, site não acessível

0

Acabei de aplicar um monte de atualizações recomendadas esta manhã (que parece ter atualizado o kernel para 3.8.0-32.47) e, de repente, não consigo me conectar à máquina na porta 80 (http) ou 22 (ssh). Ping ainda funciona. Além disso, meu syslog e kern.log estão se enchendo de mensagens como

Oct 22 10:43:27 mu kernel: [ 4041.036862] Inbound IN=eth0 OUT= MAC=6c:62:6d:c8:b0:d3:18:03:73:34:81:b8:08:00 SRC=192.168.212.43 DST=192.168.212.56 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=17389 DF PROTO=TCP SPT=59502 DPT=80 WINDOW=8192 RES=0x00 SYN URGP=0 

Eu posso conectar-me ao servidor web localmente, então isso cheira a um problema de firewall para mim. Eu tentei:

  • fazendo "redefinir o firewall" dentro do GUFW
  • fazendo "sudo ufw allow 80" e "sudo ufw allow 22" na linha de comando

e isso não está funcionando. Então eu fui e olhei para "sudo iptables -L", e eu estou entendendo isso, mas eu não entendo a saída (eu escondi o domínio do meu empregador com "example.com")

Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
ACCEPT     tcp  --  ad1.example.com  anywhere             tcpflags:! FIN,SYN,RST,ACK/SYN
ACCEPT     udp  --  ad1.example.com  anywhere            
ACCEPT     tcp  --  ad2.example.com  anywhere             tcpflags:! FIN,SYN,RST,ACK/SYN
ACCEPT     udp  --  ad2.example.com  anywhere            
ACCEPT     tcp  --  ad3.example.com  anywhere             tcpflags:! FIN,SYN,RST,ACK/SYN
ACCEPT     udp  --  ad3.example.com  anywhere            
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     icmp --  anywhere             anywhere             limit: avg 10/sec burst 5
DROP       all  --  anywhere             255.255.255.255     
DROP       all  --  anywhere             192.168.212.255     
DROP       all  --  base-address.mcast.net/8  anywhere            
DROP       all  --  anywhere             base-address.mcast.net/8 
DROP       all  --  255.255.255.255      anywhere            
DROP       all  --  anywhere             0.0.0.0             
DROP       all  --  anywhere             anywhere             state INVALID
LSI        all  -f  anywhere             anywhere             limit: avg 10/min burst 5
INBOUND    all  --  anywhere             anywhere            
LOG_FILTER  all  --  anywhere             anywhere            
LOG        all  --  anywhere             anywhere             LOG level info prefix "Unknown Input"
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:http
ufw-before-logging-input  all  --  anywhere             anywhere            
ufw-before-input  all  --  anywhere             anywhere            
ufw-after-input  all  --  anywhere             anywhere            
ufw-after-logging-input  all  --  anywhere             anywhere            
ufw-reject-input  all  --  anywhere             anywhere            
ufw-track-input  all  --  anywhere             anywhere            
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:http

Alguma ideia do que eu fiz de errado? Ou como consertar isso? (Eu acho que estou prestes a aprender muito sobre o iptables.)

UPDATE

Não é novidade que outros serviços na máquina (MySQL) também não estão respondendo. nmap está me dizendo que as portas estão abertas, tho

chris@mu:/var/log$ nmap 192.168.212.56

Starting Nmap 6.00 ( http://nmap.org ) at 2013-10-22 10:55 EDT
Nmap scan report for sentry (192.168.212.56)
Host is up (0.00030s latency).
Not shown: 993 closed ports
PORT     STATE SERVICE
22/tcp   open  ssh
80/tcp   open  http
111/tcp  open  rpcbind
139/tcp  open  netbios-ssn
445/tcp  open  microsoft-ds
3306/tcp open  mysql
5666/tcp open  nrpe
    
por Chris Curvey 22.10.2013 / 16:53

1 resposta

1

Eu finalmente encontrei o comando sudo iptables -F que pode ser usado para apagar todas as regras do firewall (é uma máquina dev, então eu realmente não me importo), e usei. Agora tudo está acessível.

    
por Chris Curvey 23.10.2013 / 20:39