Permitir que a regra ufw curve o host local para uma porta específica

0

Quero permitir curl -if localhost:54321 apenas com ufw . Qual regra posso aplicar a partir da linha de comando?

Eu tentei ufw allow proto tcp from any to any port 54321 e ufw status mostra o seguinte:

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

Mas ainda não consigo curl -if localhost:54321 .

    
por Sayanee 30.10.2017 / 09:54

2 respostas

0

De man ufw :

Allow access to udp 1.2.3.4 port 5469 from 1.2.3.5 port 5469:

    ufw allow proto udp from 1.2.3.5 port 5469 to 1.2.3.4 port 5469

Por isso, o comando que você está procurando é

     ufw allow proto tcp from <ip_source> to <ip_destination> port 54321
    
por 30.10.2017 / 13:45
0

Entendi:

ufw allow proto tcp from any to any port 54321,54322
ufw allow out proto tcp from any to any port 54321,54322
    
por 31.10.2017 / 08:45

Tags