![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| about TCP connection | bucci | UNIX for Advanced & Expert Users | 3 | 05-15-2007 10:44 PM |
| ftp connection | draganmi | SCO | 6 | 04-18-2007 02:11 AM |
| FTP Connection | mungaz | Security | 0 | 05-23-2006 10:48 AM |
| ssh connection | olli-h | UNIX for Dummies Questions & Answers | 1 | 03-16-2006 01:40 AM |
| Web connection... HOW???????????? | gussiglo21 | UNIX for Dummies Questions & Answers | 1 | 12-10-2003 01:08 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
pls how do i connect to my freebsd server via ssh from a windows client?? I have sshd running on d freebsd server.
__________________
Simbo Adeyemi ( Miss) m.c.s.e. m.c.p. c.c.n.a. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
I haven't used it myself, but I know several others who have a program called "putty" on their laptops and use it to connect to various Unix servers. I believe they said it will do ssh.
|
|
#3
|
|||
|
|||
|
putty is an excellent ssh client for windows. go here: www.openssh.org
|
|
#4
|
|||
|
|||
|
I already have ssh running on d linux 8 srevr, but whenever i try a remote connection from putty 2 d server, d server refuses d conection.
What shuld my connection settings be like on putty?
__________________
Simbo Adeyemi ( Miss) m.c.s.e. m.c.p. c.c.n.a. |
|
#5
|
|||
|
|||
|
once you putty installed you should be able to connect to your linux box without any settings on putty unless you have a firewall or tcpwrapper on your linux machine preventing ssh connection.
on your linux machine, check your /etc/hosts.allow or /etc/hosts.deny for any restriction rules. if you still can not ssh to your linux machine check /var/log/messages for any error message and post back. |
|
#6
|
||||
|
||||
|
Start with some basic troubleshooting...
1. View your syslog/system messages for obvious errors. 2. Make sure you are actually getting to the system from your client. If you can get to the system through some other means, run a netstat loop or snoop to watch for you IP address inbound on your ssh port. See the man page for snoop or loop the following: while : do netstat -an | grep -iv list | grep <your inbound IP> done 3. You could also start sshd in debug mode (sshd -D) or even troubleshoot on a differing port (sshd -D -p <someport> -d). Cheers, Keith Last edited by kduffin; 11-17-2003 at 07:42 PM. |
|
#7
|
||||
|
||||
|
Putty isn't bad. I prefer SecureCRT (http://www.vandkye.com). You could also put cygwin on your box (http://www.cygwin.com) - that would even let up have a ssh daemon running on your windows box. The other benefit is being able to use XFree if you don't have an X emulator and have the need.
Cheers, Keith Last edited by kduffin; 11-17-2003 at 07:43 PM. |
||||
| Google The UNIX and Linux Forums |