Não é possível abrir a porta no Ubuntu Server

0
root@server:~# ufw allow 83973/tcp
Rules updated
Rules updated (v6)
root@server:~# sudo ufw status verbose
Status: inactive
root@server:~# sudo ufw enable
Command may disrupt existing ssh connections. Proceed with operation (y|n)? y
Firewall is active and enabled on system startup

root@server:~# sudo ufw status verbose
Status: active
Logging: on (low)
Default: deny (incoming), allow (outgoing), disabled (routed)
New profiles: skip

To                         Action      From
--                         ------      ----
83973                      ALLOW IN    Anywhere                  
83973/tcp                  ALLOW IN    Anywhere                  
83973 (v6)                 ALLOW IN    Anywhere (v6)             
83973/tcp (v6)             ALLOW IN    Anywhere (v6)             

root@server:~# 

Estou tentando adicionar a porta de escuta 83973, mas não está funcionando. Por favor, informe

Atenciosamente

    
por Raakh 05.08.2018 / 12:52

1 resposta

0

Eu posso estar faltando alguma coisa, mas portas TCP maiores que 65535 não seriam possíveis, uma vez que elas estourariam os 16 bits dedicados à porta no protocolo.

    
por 06.08.2018 / 16:39