Como alterar o status do firewall Nginx para “ativo”

-1

Quando eu consultar o status do firewall do netfilter, fico inativo:

$ sudo ufw status
Status: inactive

Eu quero mudar isso para que eu possa ver isso:

Output
Status: active

To                         Action      From
--                         ------      ----
OpenSSH                    ALLOW       Anywhere                  
Nginx HTTP                 ALLOW       Anywhere                  
OpenSSH (v6)               ALLOW       Anywhere (v6)             
Nginx HTTP (v6)            ALLOW       Anywhere (v6)

Estive procurando, mas não encontrei nenhuma informação sobre como definir o status.

    
por Caesar 07.02.2018 / 13:14

1 resposta

1

Você precisa executar

sudo ufw enable

para ativar o firewall.

Você pode obter mais ajuda sobre ufw em help.ubuntu.com e man ufw .

Exemplo

$ sudo ufw enable
Firewall is active and enabled on system startup
$ sudo ufw status
Status: active

To                         Action      From
--                         ------      ----
22/tcp                     ALLOW       Anywhere                  
22/tcp (v6)                ALLOW       Anywhere (v6)             

$ sudo ufw disable
Firewall stopped and disabled on system startup
$ sudo ufw status
Status: inactive
    
por dessert 07.02.2018 / 14:42