connecting to SSH


 
Thread Tools Search this Thread
Operating Systems Linux connecting to SSH
# 1  
Old 10-17-2010
connecting to SSH

Well im on Fedora, and theres no sub section for Fedora so yea

Well how do you connect to an SSH, while on a windows terminal?

And also to transfer a file from my desktop to a server?
how is this done

scp command is not working for me
# 2  
Old 10-17-2010
Did you configure your sshd daemon ?
can you ping your target serv from your win terminal ?

To transfer files between a windows and a unix machine : filezilla or winscp
# 3  
Old 10-22-2010
Quote:
Originally Posted by gangsta
Well im on Fedora, and theres no sub section for Fedora so yea

Well how do you connect to an SSH, while on a windows terminal?

And also to transfer a file from my desktop to a server?
how is this done

scp command is not working for me
First make sure that ssh is running. You can do this by typing:
Code:
ps aux|grep sshd

You should see something like the following (numbers will probably be different):
Code:
[root@serv ~]# rpm -qa |grep openssh-server
openssh-server-4.3p2-41.el5_5.1

If not install sshd by typing:
Code:
yum install openssh-server

Set it to run automagically by typing
Code:
chkconfig --level 2345 sshd on

Enable it by typing
Code:
service sshd start

That should get you in business.
As for files, you can do a number of things, ftp, sftp, nfs, samba, etc.
# 4  
Old 10-22-2010
First off, are you using an SSH client or are you trying at the command line on Windows? Windows has a built in telnet client, but none for SSH. I would suggest PuTTY as it is cheap (Free), and widely used and has good features and support.

From there, it should be relatively straight forward. In order to connect to an SSH server, you will need an SSH client. Now, you can use the PuTTY installer and the SCP that brings, or what I prefer is Win-SCP. That is also free and works well.

Another thing to check, in Fedora, is if there is a firewall preventing access.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Connecting using SSH in WAN network

i have been learning linux from some time for linux plus exam and learned SSH protocol and have practised to connect to remote computer within Lan network and able to sucesssfully connect it . using ssh username@hostname But i wish to ask how do i use same ssh protocol to connect to other ... (6 Replies)
Discussion started by: lobsang
6 Replies

2. UNIX for Advanced & Expert Users

Prompted for password when reverse SSH connecting

Dear Experts, I am writing a batch script to transfer files from server AA to BB without prompting for password. Already, ssh keys have been generated in BB and public key of BB has been stored in AA as part of some other project requirement. So, I thought of reusing this. I can now transfer... (6 Replies)
Discussion started by: ss112233
6 Replies

3. UNIX for Advanced & Expert Users

Connecting using ssh

We have 2 different servers say A and B and I want to check the log file of 2 servers simultaneously. If I am logged into server A how can I connect to server B. I have used ssh username@B.But it is asking password. How can I give the password on ssh. Or is there any other utility for... (2 Replies)
Discussion started by: jim john
2 Replies

4. IP Networking

Connecting via SSH with dynamic IP

My VPN setup requires me to allow users via IP in the firewall, before they can access the VPN via SSH. The problem is that my home IP is dynamic, and I have to re-add it every time I reconnect. Any ideas? (2 Replies)
Discussion started by: rlopes
2 Replies

5. Programming

Connecting ssh in java program

Hi I have been trying to connect a remote linux server in a java program through ssh. Can anyone tell me the proper library to include? Thanks Ananth (0 Replies)
Discussion started by: Ananthdoss
0 Replies

6. Shell Programming and Scripting

connecting servers using SSH - help needed

Hi all, I have a script written successfully and tuned by our members, now I am trying to execute this script from a taxi server. My aim is I want to connect to four servers via ssh where I want to ran a script or run some commands and write the output to a file in the Taxi server. I... (12 Replies)
Discussion started by: senthilkumar_ak
12 Replies

7. Shell Programming and Scripting

Connecting other server using ssh!

Hi All, Here i am having a problem in my script....:) i have one script which will connect from my linux box to antoher linux box.. let say...currently i am in 55.23.621.123 and i want to connect to another box which is 55.23.621.118 as we know we can connect using ssh... (2 Replies)
Discussion started by: Shahul
2 Replies

8. Shell Programming and Scripting

ssh script for connecting unix system.

Hi All, I've a log file call netbackup.log in all the 5 servers in location usr/netbackup.log. I dont want to login in each server and check the log file. So i wanted to have a script written to have the log information at one place. I want to have the last 2 lines from the file... (2 Replies)
Discussion started by: suri.tyson
2 Replies

9. UNIX for Advanced & Expert Users

connecting windows remotely from unix using SSH

Hi Can someone giv me some knowledge on accesing windows from unix and executing DOS scripts using SSH I would like to know how to go abt it...am new to it. Thanks in advance (1 Reply)
Discussion started by: lakshmis10
1 Replies

10. Solaris

trouble auto connecting ssh 3.6.1 (Solaris 8) to ssh 3.0.1 (Solaris 6)

I am currently setting up rdiff-backup to use ssh to connect and remotely backup and retrieve data. I am doing so by creating rsa keys for each server and copying the relevant key to the /.ssh folder on the relevant server. All seems to work well when severs running solaris 8 with ssh 3.6.1 are... (6 Replies)
Discussion started by: falklandtim
6 Replies
Login or Register to Ask a Question