Created
May 8, 2013 04:49
-
-
Save littlepea/5538265 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here's a telnet attempt: | |
$ telnet heroku.com 22 | |
Trying 50.19.85.154... | |
Trying 50.19.85.156... | |
Trying 50.19.85.132... | |
telnet: Unable to connect to remote host: Connection timed out | |
Same for GitHub (no problem): | |
$ telnet github.com 22 | |
Trying 204.232.175.90... | |
Connected to github.com. | |
Escape character is ']'. | |
Connection closed by foreign host. | |
Here's SSH attempt: | |
$ ssh [email protected] -v | |
OpenSSH_6.0p1 Debian-3ubuntu1, OpenSSL 1.0.1c 10 May 2012 | |
debug1: Reading configuration data /home/slam/.ssh/config | |
debug1: /home/slam/.ssh/config line 1: Applying options for * | |
debug1: Reading configuration data /etc/ssh/ssh_config | |
debug1: /etc/ssh/ssh_config line 19: Applying options for * | |
debug1: Connecting to heroku.com [50.19.85.154] port 22. | |
debug1: connect to address 50.19.85.154 port 22: Connection timed out | |
debug1: Connecting to heroku.com [50.19.85.156] port 22. | |
debug1: connect to address 50.19.85.156 port 22: Connection timed out | |
debug1: Connecting to heroku.com [50.19.85.132] port 22. | |
debug1: connect to address 50.19.85.132 port 22: Connection timed out | |
ssh: connect to host heroku.com port 22: Connection timed out | |
Same for GitHub (no problem): | |
$ ssh [email protected] | |
PTY allocation request failed on channel 0 | |
Hi littlepea! You've successfully authenticated, but GitHub does not provide shell access. | |
Connection to github.com closed. | |
My public key is added on heroku and is correct. It was working all the time until today and anyway I would get a "Permission denied" error not a timeout then: | |
$ heroku keys | |
=== [email protected] Keys | |
ssh-rsa AAAAB3NzaC...9Asmascw== slam | |
My access to heroku.com host is fine too: | |
host heroku.com | |
heroku.com has address 50.19.85.156 | |
heroku.com has address 50.19.85.154 | |
heroku.com has address 50.19.85.132 | |
heroku.com mail is handled by 10 alt2.aspmx.l.google.com. | |
heroku.com mail is handled by 10 aspmx.l.google.com. | |
heroku.com mail is handled by 10 aspmx2.googlemail.com. | |
heroku.com mail is handled by 10 aspmx3.googlemail.com. | |
heroku.com mail is handled by 10 aspmx4.googlemail.com. | |
heroku.com mail is handled by 10 aspmx5.googlemail.com. | |
heroku.com mail is handled by 10 alt1.aspmx.l.google.com. | |
Otherwise the toolbelt is working as well, I can create application, add config values and so on, only Git has a problem. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a same problem, god.