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

Não é possível abrir a porta no Ubuntu Server
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, avise

Atenciosamente

Responder1

Posso estar faltando alguma coisa, mas portas TCP superiores a 65535 não seriam possíveis, pois transbordariam os 16 bits dedicados à porta no protocolo.

informação relacionada