PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Forums Hébergement > Forum Serveur - Sécurité et techniques > comp.security.ssh > connect from Windows XP to OpenSSH server on AIX system
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
comp.security.ssh SSH secure remote login and tunneling tools.

connect from Windows XP to OpenSSH server on AIX system

Réponse
 
LinkBack Outils de la discussion
Vieux 29/09/2006, 04h31   #1
StephenRichter@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut connect from Windows XP to OpenSSH server on AIX system

I have SSH server running on an RS6000 - AIX system. Currently I use
PuTTY to telnet from Windows to the RS6000. I would like to run X11
type GUI applications from the Windows XP client on the RS6000 AIX
server. How do I do that? Can I run a KDE desktop somehow in a window
on the XP system that connects to the RS6000 via OpenSSH?

thanks,

-Steve

  Réponse avec citation
Vieux 29/09/2006, 06h40   #2
Todd H.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: connect from Windows XP to OpenSSH server on AIX system

StephenRichter@gmail.com writes:

> I have SSH server running on an RS6000 - AIX system. Currently I use
> PuTTY to telnet from Windows to the RS6000. I would like to run X11
> type GUI applications from the Windows XP client on the RS6000 AIX
> server. How do I do that? Can I run a KDE desktop somehow in a window
> on the XP system that connects to the RS6000 via OpenSSH?


Yes you can.

You'll need an X server on your pc. Cygwin.com installer has one if
you select the X11 branch of the installer's tree.

You'd fire up the X server on your PC, ssh with putty with X fwd'g
enabled, and test with xclock or xterm to see if that app is pushed
back to your screen. If that works, then startx or the AIX
equivalent thereof should fire up the desktop environment you want.
That's the traditional way of doing things.

But not the best.

If you have the luxury of being able to install software on that aix
server, try to get vnc-server installed on it. VNC is a much more
efficient protocol, and also features the ability to reconnect to a
session.


aixserver$ vncserver :0

You'll be prompted for a password to make up to secure the server, and
vncserver wll be listening on tcp/5900.

Then, back on the windows box, establish a new putty connection to the
aix server with forwarding of port 5900 of the localhost to port 5900
of the server. This is important. If you were to use cygwin openssh
on the windows box to get to the server it'd look like:

windowsbox$ ssh -L 5900:127.0.0.1:5900 user@my.aixserver.com

Finally on the windows box, you'd fire up vncviewer and tell it to
connect to 127.0.0.1:5900 which through the magic of port
forwarding, connects to the vncserver on the AIX box. You're
prompted for the password you set above, and voila.

In putty there is way to set port forward ,but as a SecureCRT and
command line junkie, I don't have putty handy right now to tell ya
exactly how.

Best Regards,
--
Todd H.
http://www.toddh.net/
  Réponse avec citation
Vieux 29/09/2006, 16h16   #3
StephenRichter@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: connect from Windows XP to OpenSSH server on AIX system


Todd H. wrote:
> StephenRichter@gmail.com writes:
>
> > I have SSH server running on an RS6000 - AIX system. Currently I use
> > PuTTY to telnet from Windows to the RS6000. I would like to run X11
> > type GUI applications from the Windows XP client on the RS6000 AIX
> > server. How do I do that? Can I run a KDE desktop somehow in a window
> > on the XP system that connects to the RS6000 via OpenSSH?

>
> Yes you can.
>
> You'll need an X server on your pc. Cygwin.com installer has one if
> you select the X11 branch of the installer's tree.
>
> You'd fire up the X server on your PC, ssh with putty with X fwd'g
> enabled, and test with xclock or xterm to see if that app is pushed
> back to your screen. If that works, then startx or the AIX
> equivalent thereof should fire up the desktop environment you want.
> That's the traditional way of doing things.


downloading CYGWIN now ( they really should charge money for what they
provide ). Why do I need the X server on the PC if the PC will be the
client connecting to the AIX system?

>
> But not the best.
>
> If you have the luxury of being able to install software on that aix
> server, try to get vnc-server installed on it. VNC is a much more
> efficient protocol, and also features the ability to reconnect to a
> session.


will do. here is where VNC for AIX can be obtained:
http://www-03.ibm.com/servers/aix/pr.../download.html

>
> aixserver$ vncserver :0
>
> You'll be prompted for a password to make up to secure the server, and
> vncserver wll be listening on tcp/5900.
>
> Then, back on the windows box, establish a new putty connection to the
> aix server with forwarding of port 5900 of the localhost to port 5900
> of the server. This is important. If you were to use cygwin openssh
> on the windows box to get to the server it'd look like:
>
> windowsbox$ ssh -L 5900:127.0.0.1:5900 user@my.aixserver.com
>
> Finally on the windows box, you'd fire up vncviewer and tell it to
> connect to 127.0.0.1:5900 which through the magic of port
> forwarding, connects to the vncserver on the AIX box. You're
> prompted for the password you set above, and voila.
>
> In putty there is way to set port forward ,but as a SecureCRT and
> command line junkie, I don't have putty handy right now to tell ya
> exactly how.
>


Todd, this is a great . I am going to digest what the CYGWIN can do
for me. Then move onto the VNC.

thanks,

-Steve

  Réponse avec citation
Vieux 29/09/2006, 16h55   #4
Todd H.
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: connect from Windows XP to OpenSSH server on AIX system

StephenRichter@gmail.com writes:
> Todd H. wrote:
> > StephenRichter@gmail.com writes:
> >
> > > I have SSH server running on an RS6000 - AIX system. Currently I use
> > > PuTTY to telnet from Windows to the RS6000. I would like to run X11
> > > type GUI applications from the Windows XP client on the RS6000 AIX
> > > server. How do I do that? Can I run a KDE desktop somehow in a window
> > > on the XP system that connects to the RS6000 via OpenSSH?

> >
> > Yes you can.
> >
> > You'll need an X server on your pc. Cygwin.com installer has one if
> > you select the X11 branch of the installer's tree.
> >
> > You'd fire up the X server on your PC, ssh with putty with X fwd'g
> > enabled, and test with xclock or xterm to see if that app is pushed
> > back to your screen. If that works, then startx or the AIX
> > equivalent thereof should fire up the desktop environment you want.
> > That's the traditional way of doing things.

>
> downloading CYGWIN now ( they really should charge money for what they
> provide ). Why do I need the X server on the PC if the PC will be the
> client connecting to the AIX system?


Yeah, the terminology is confusing. When it comes to X, the server
needs to be where your eyeballs and monitor are.

You use an ssh client to connect to the ssh server on the AIX system.
Once on teh AIX system, you are running X client software (window
manager, xterm, xclock) which all require an X server to do their
rendering. The X server in the traditional scenario runs on the
machine that's in front of ya.

> >
> > But not the best.
> >
> > If you have the luxury of being able to install software on that aix
> > server, try to get vnc-server installed on it. VNC is a much more
> > efficient protocol, and also features the ability to reconnect to a
> > session.

>
> will do. here is where VNC for AIX can be obtained:
> http://www-03.ibm.com/servers/aix/pr.../download.html
>


> Todd, this is a great . I am going to digest what the CYGWIN can do
> for me. Then move onto the VNC.


Cygwin is cool. Very nice unix-like environment that makes windows
rather tolerable.

--
Todd H.
http://www.toddh.net/
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 08h13.


Édité par : vBulletin® version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 3,69765 seconds with 12 queries