RE: [PHP-DB] hi (php-SSH)

2003-07-29 Thread Natividad Castro
You can use putty. PuTTY is a free implementation of Telnet and SSH for
Win32 platforms, along with an xterm terminal emulator. You can download
from http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html

Good luck
Nato

-Original Message-
From: otherguy [mailto:[EMAIL PROTECTED]
Sent: Tuesday, July 29, 2003 12:34 AM
To: David Smith
Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP-DB] hi (php-SSH)



On Monday, July 28, 2003, at 10:19  PM, David Smith wrote:

 Suman Aluru wrote:

 hi ,
  is there any way to write a PHP program for SSH.
 I want to establish a SSH connection and work some commands in the
 remote system and close the connection.


 Yes, just do this (uses an SSH key file):

 ?php
echo Executing remote command...br /;
echo `ssh -i /path/to/key/file [EMAIL PROTECTED] ls /tmp`;
echo Done executing remote command.br /;
 ?

 Use an SSH key file so you won't have to provide a password. I do this
 all the time for system administration, works great for inter-host
 communication.

If you're going to go this route, I would suggest that you read up on
the security issues inherent in using a non-passworded key file - and
make sure that the privileges on the remote host are set accordingly.

-Cameron Wilhelm


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] hi (php-SSH)

2003-07-29 Thread Roger 'Rocky' Vetterberg
Brad Bonkoski wrote:

Well, SSH has a server which woudl answer your requests and a lient to
initiate the session, I'm assuming you wish to emulate the client side to
initiate the session, of course PHP is a server side language, so it's not
adding up.  I have seen a JAVA applet that will open in a web browser on the
client side to enable you to run an SSH client, perhaps this will server your
needs?  Try a google search.
-Brad
 

I believe you mean Mindterm (http://www.appgate.com/mindterm/)
A great application, just remember to password protect the page if you 
decide to install it, there are a lot of people out there looking for 
mindterm's to abuse.

--
R
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP-DB] hi (php-SSH)

2003-07-29 Thread Suman Aluru
could somebody tell me howto Generate the SSH key file to connect SSH
without password from php

Suman  R Aluru
-Original Message-
From: David Smith [mailto:[EMAIL PROTECTED]
Sent: Monday, July 28, 2003 11:19 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-DB] hi (php-SSH)


Suman Aluru wrote:

hi ,
  is there any way to write a PHP program for SSH.
I want to establish a SSH connection and work some commands in the remote
system and close the connection.


Yes, just do this (uses an SSH key file):

?php
echo Executing remote command...br /;
echo `ssh -i /path/to/key/file [EMAIL PROTECTED] ls /tmp`;
echo Done executing remote command.br /;
?

Use an SSH key file so you won't have to provide a password. I do this
all the time for system administration, works great for inter-host
communication.

--Dave


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: RE: [PHP-DB] hi (php-SSH)

2003-07-29 Thread bbonkosk
I *think* I set this to you yesterday...

http://www.cs.umd.edu/~arun/misc/ssh.html
-Brad

- Original Message -
From: Suman Aluru [EMAIL PROTECTED]
Date: Tuesday, July 29, 2003 12:32 pm
Subject: RE: [PHP-DB] hi (php-SSH)

 could somebody tell me howto Generate the SSH key file to connect SSH
 without password from php
 
 Suman  R Aluru
 -Original Message-
 From: David Smith [EMAIL PROTECTED]
 Sent: Monday, July 28, 2003 11:19 PM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: [PHP-DB] hi (php-SSH)
 
 
 Suman Aluru wrote:
 
 hi ,
   is there any way to write a PHP program for SSH.
 I want to establish a SSH connection and work some commands in 
 the remote
 system and close the connection.
 
 
 Yes, just do this (uses an SSH key file):
 
 ?php
echo Executing remote command...br /;
echo `ssh -i /path/to/key/file [EMAIL PROTECTED] ls /tmp`;
echo Done executing remote command.br /;
 ?
 
 Use an SSH key file so you won't have to provide a password. I do this
 all the time for system administration, works great for inter-host
 communication.
 
 --Dave
 
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] hi (php-SSH)

2003-07-28 Thread Brad Bonkoski
Well, SSH has a server which woudl answer your requests and a lient to
initiate the session, I'm assuming you wish to emulate the client side to
initiate the session, of course PHP is a server side language, so it's not
adding up.  I have seen a JAVA applet that will open in a web browser on the
client side to enable you to run an SSH client, perhaps this will server your
needs?  Try a google search.

-Brad

Suman Aluru wrote:

 hi ,
   is there any way to write a PHP program for SSH.
 I want to establish a SSH connection and work some commands in the remote
 system and close the connection.

 Thank You.

 --
 Suman R Aluru
 System Administrator
 Bacterial Barcodes Inc.
 8080 N.Stadium Dr.
 Houston TX-77054
 713.467.8500 (Off.)
 832.643.9501 (Cell)

 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] hi (php-SSH)

2003-07-28 Thread David Smith
Suman Aluru wrote:

hi ,
 is there any way to write a PHP program for SSH.
I want to establish a SSH connection and work some commands in the remote 
system and close the connection.

Yes, just do this (uses an SSH key file):

?php
   echo Executing remote command...br /;
   echo `ssh -i /path/to/key/file [EMAIL PROTECTED] ls /tmp`;
   echo Done executing remote command.br /;
?
Use an SSH key file so you won't have to provide a password. I do this 
all the time for system administration, works great for inter-host 
communication.

--Dave

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] hi (php-SSH)

2003-07-28 Thread otherguy
On Monday, July 28, 2003, at 10:19  PM, David Smith wrote:

Suman Aluru wrote:

hi ,
 is there any way to write a PHP program for SSH.
I want to establish a SSH connection and work some commands in the 
remote system and close the connection.

Yes, just do this (uses an SSH key file):

?php
   echo Executing remote command...br /;
   echo `ssh -i /path/to/key/file [EMAIL PROTECTED] ls /tmp`;
   echo Done executing remote command.br /;
?
Use an SSH key file so you won't have to provide a password. I do this 
all the time for system administration, works great for inter-host 
communication.
If you're going to go this route, I would suggest that you read up on 
the security issues inherent in using a non-passworded key file - and 
make sure that the privileges on the remote host are set accordingly.

-Cameron Wilhelm

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php