A NET só libera o uso de qualquer porta, como a porta 22 de ssh, para pessoa jurídica em seus novos planos (desde 2016).
Para conseguir usar o github ou bitbucket por ssh com plano de internet da NET para pessoa física, é necessário:
Criar o arquivo ~/.ssh/config e adicionar:
Host github.com
Hostname ssh.github.com
Port 443
Host bitbucket.org
Hostname altssh.bitbucket.org
Port 443
Host gitlab.com
Hostname altssh.gitlab.com
Port 443
Conferir se no github funcionou:
ssh -T git@github.com
Hi @username! You've successfully authenticated, but GitHub does not
provide shell access.
Conferir se no bitbucket funcionou:
ssh -T git@bitbucket.org
logged in as @username.
You can use git or hg to connect to Bitbucket. Shell access is disabled.
Conferir se no gitlab funcionou:
ssh -T git@gitlab.com
Welcome to GitLab, @username!
Ajudou bastante, funcionou.