SSH


 
Thread Tools Search this Thread
Special Forums IP Networking SSH
# 1  
Old 02-21-2010
SSH

Ok I'm a noob to SSH and i have no clue where to post this questions, Hopefully I'm not too far off. I have an issue with my computer not letting SSH in. My goal is to dump my iPhone in to my C drive so i can recover some pictures i wiped being careless. Well that was my original goal now its to figure this out, because being a proud geek i don't think anything tech wise should be out of my reach so now I'm pushing on out of sheer stubbornness to beat the computer lol. So here is what happens:

I have installed both WINscp and putty on my vista system. And ssh and terminal on my iPhone, first i couldn't get port 22 to open for the life of me. My router was saying all is fine but it wasn't open via portchecker. So i finally turned off my Norton firewall and windows firewall and i finally got a connection. So i ping my phone: all is good, i try to ssh in to my computer and it just hangs there for ever, (I have left it over night). So i try to figure out who's to blame, comp or phone. I run "ssh root@192.168.1.4" from my phone and all is good, asks for password and if I'm sure i want to authenticate it, i put it in. and I'm in sweet. I try it from my computer "ssh Kray-Z@192.168.1.2" and it sits there for ever. nothing. Oh and i can ssh to my phone from the comp but not the other way around. Basically my computer is somehow blocking incoming SSH requests (that's my guess) oh and yes i have enabled remote assistance on my computer.

What am i doing wrong? and how can i fix it. Sorry for the long post, thanks in advance.
# 2  
Old 02-21-2010
I'm not clear from your description - but I think your phone is an ssh cleint, but not an ssh server - in other words the iphone is not running sshd?

If that is true you can only login one way: phone -> computer. terminal -> server.
# 3  
Old 02-21-2010
i have openSSH on my phone if that helps at all

EDIT: oh and can you explain the diff between client and server. I know the diff when it comes to actuall servers and client computers, is it the same? but i should still be able to ssh from one to the other right?

---------- Post updated at 01:33 PM ---------- Previous update was at 01:26 PM ----------

and a bit more info, im following this how to guide to diskdump my phone on to my computer. This is one of many go bys that pretty much say the exact same thing.

HowTo: Recover Lost Data From Your iPhone | FSMdotCOM

basically im supposed to ping my iphone from cmd to see if my comp sees the phone and then im supposed to go on terminal on my iPhone and put "ssh <username>@<computer-ip>" to make sure i can SSH in to my computer from the iPhone

Last edited by calif94577; 02-21-2010 at 05:35 PM.. Reason: it double posted for some reason
# 4  
Old 02-23-2010
Quote:
Originally Posted by calif94577
Basically my computer is somehow blocking incoming SSH requests
If they're coming from you're computer they're not "incoming".

Just having openssh on your phone doesn't mean you have an ssh server on your phone.

Since neither your phone nor your computer is running UNIX, maybe you've found the wrong forum? :P We can try and help but we're just guessing here, what do we know about iphone...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Find active SSH servers w/ ssh keys on LAN

Hi, I am trying to complete my bash script in order to find which SSH servers on LAN are still active with the ssh keys, but i am frozen at this step: #!/bin/bash # LAN SSH KEYS DISCOVERY SCRIPT </etc/passwd \ grep /bin/bash | cut -d: -f6 | sudo xargs -i -- sh -c ' && cat... (11 Replies)
Discussion started by: syrius
11 Replies

2. UNIX for Beginners Questions & Answers

Ssh script to validate ssh connection to multiple serves with status

Hi, I want to validate ssh connection one after one for multiple servers..... password less keys already setup but now i want to validate if ssh is working fine or not... I have .sh script like below and i have servers.txt contains all the list of servers #/bin/bash for host in $(cat... (3 Replies)
Discussion started by: sreeram4
3 Replies

3. Shell Programming and Scripting

Check if file exists via ssh in ssh (nested)

I'm using redhat and have an odd issue with a nested ssh call. ssh -i ~/.ssh/transfer-key -q transfer@fserver1 ] && ssh -i ~/.ssh/transfer-key transfer@fserver1 "ssh -i ~/.ssh/sftp-key sftpin@10.0.0.1 ]" && ssh -i ~/.ssh/transfer-key transfer@fserver1 "scp -i ~/.ssh/sftp-key /home/S/outbox/*... (2 Replies)
Discussion started by: say170
2 Replies

4. UNIX for Dummies Questions & Answers

SSH tunnel working for ssh but not for sshfs

I'm trying to setup a link between my home pc (work-machine) and a server at work (tar-machine) that is behind a gateway (hop-machine) and not directly accessible. my actions: work-machine$ ssh -L 1234:tar-machine:22 hop-machine work-machine$ ssh -p 1234 user@127.0.0.1 - shh access on... (1 Reply)
Discussion started by: Vathau
1 Replies

5. Shell Programming and Scripting

Ssh = ssh expect and keep everything not change include parameter postion

I have write a script which contains ssh -p 12345 dcplatform@10.125.42.50 ssh 127.0.0.1 -p 5555 "$CMD" ssh root@$GUEST_IP "$CMD" before I use public key, it works well, now I want to change to "expect", BUT I don't want to change above code and "parameter position" I can post a... (1 Reply)
Discussion started by: yanglei_fage
1 Replies

6. UNIX for Dummies Questions & Answers

SSH SSH encountered 1 errors during the transfer

This issue was resolved due to using the correct user transferring the file over to the desktop. (1 Reply)
Discussion started by: Computergal2104
1 Replies

7. Shell Programming and Scripting

Using ssh to add register key on ssh server

Hi, I want to use ssh to add a register key on remote ssh server. Since there are space characters in my register key string, it always failed. If there is no space characters in the string, it worked fine. The following is what I have tried. It seems that "ssh" command doesn't care about double... (9 Replies)
Discussion started by: leaftree
9 Replies

8. Shell Programming and Scripting

could not send commands SSH session with Net::SSH::Expect

I am using Net::SSH::Expect to connect to the device(iLO) with SSH. After the $ssh->login() I'm able to view the prompt, but not able to send any coommands. With the putty I can connect to the device and execute the commands without any issues. Here is the sample script my $ssh =... (0 Replies)
Discussion started by: hansini
0 Replies

9. Cybersecurity

What's the difference between an SSH Client and an SSH Server?

Eh... yeah. What the title says. :D (1 Reply)
Discussion started by: PSC
1 Replies
Login or Register to Ask a Question