UFW não abre portas no Fedora

0

Estou usando o UFW no Fedora Server 28 e quando eu permito a porta 80 e tenho certeza de que o apache está rodando, nenhum servidor aparece no meu navegador. Eu estou fazendo isso via ssh, então eu sei que o dispositivo está conectado. Usar o nmap em outro computador indica que a porta 80 não está aberta, mas 22 (ssh) é. Alguma idéia?

Status do UFW:

Status: active

To                         Action      From
--                         ------      ----
22                         ALLOW       Anywhere                  
80                         ALLOW       Anywhere                  
22 (v6)                    ALLOW       Anywhere (v6)             
80 (v6)                    ALLOW       Anywhere (v6)             

Status do Apache:

Warning: The unit file, source configuration file or drop-ins of httpd.service changed on disk. Run 'systemctl daemon-reload' to reload units.
● httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled)
  Drop-In: /usr/lib/systemd/system/httpd.service.d
           └─php-fpm.conf
   Active: active (running) since Mon 2018-05-28 12:20:35 CDT; 15h ago
     Docs: man:httpd.service(8)
  Process: 15958 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=0/SUCCESS)
 Main PID: 13757 (httpd)
   Status: "Running, listening on: port 80"
    Tasks: 213 (limit: 4500)
   Memory: 19.7M
   CGroup: /system.slice/httpd.service
           ├─13757 /usr/sbin/httpd -DFOREGROUND
           ├─15959 /usr/sbin/httpd -DFOREGROUND
           ├─15960 /usr/sbin/httpd -DFOREGROUND
           ├─15961 /usr/sbin/httpd -DFOREGROUND
           └─15965 /usr/sbin/httpd -DFOREGROUND
    
por Jersh 15.11.2018 / 14:13

1 resposta

1

A ferramenta de firewall padrão no Fedora é firewalld. Está instalado e funcionando por padrão. Se você optar por não usá-lo e usar o ufw, terá que desabilitar o firewalld.

systemctl stop firewalld
systemctl mask firewalld

Reinicie o ufw ou reinicie o computador depois de desabilitar o firewalld.

ufw disable
ufw enable

É claro que o firewalld é a ferramenta de firewall recomendada, e provavelmente é tão fácil de usar quanto o ufw para coisas básicas, enquanto oferece muito mais flexibilidade se você precisar mais tarde.

    
por 15.11.2018 / 15:48