- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- X forwing + ssh
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-19-2008 02:52 AM
тАО06-19-2008 02:52 AM
X forwing + ssh
I have the following situation.
I upgrade my ssh version and I get some trouble.
When I log-on in to the machine "xpto" the X work fine, but when I log-on from machine "xpto" to another one by ssh I get the error message:
Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
Xlib: connection to "localhost:10.0" refused by server
Xlib: PuTTY X11 proxy: MIT-MAGIC-COOKIE-1 data did not match
Error: Can't open display: localhost:10.0
Any ideas what is the problem or how can I solve this problem?
Thanks in advance
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-19-2008 03:31 AM
тАО06-19-2008 03:31 AM
Re: X forwing + ssh
check the DISPLAY variable.
consider using ssh -X hostname
to connect and work properly with GUI apps.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-19-2008 03:38 AM
тАО06-19-2008 03:38 AM
Re: X forwing + ssh
Thanks by thy reply
The DISPLAY variable seems to be ok.. I also have try the option -X in ssh.
I get the same error :S
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-19-2008 04:24 AM
тАО06-19-2008 04:24 AM
Re: X forwing + ssh
$ ssh -Y
rgs,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-19-2008 06:41 AM
тАО06-19-2008 06:41 AM
Re: X forwing + ssh
Check the ssh_config on xpto: X11 Forwarding is usually turned off by default in the ssh_config.
My ssh_config is in /opt/ssh/etc/ssh_config.
Change
# ForwardX11 no
to
ForwardX11 yes
I usually update the Host* section to the following:
Host *
ForwardAgent yes
ForwardX11 yes
Protocol 2
------
Senior UNIX Admin
O'Leary Computers Inc
linkedin: http://www.linkedin.com/dkoleary
Resume: http://www.olearycomputers.com/resume.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2008 01:55 AM
тАО06-20-2008 01:55 AM
Re: X forwing + ssh
I don't have -Y option.
In my sshd_config I have the following options:
ListenAddress 0.0.0.0
AllowTcpForwarding yes
X11Forwarding yes
X11UseLocalhost yes
I already do a intensive search on web but i still have this problem
Any ideas?
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-20-2008 02:10 AM
тАО06-20-2008 02:10 AM
Re: X forwing + ssh
Sample:
ssh -Y hostname "/usr/dt/bin/hpterm -bg DarkGreen -fg white -title "G:HOSTNAME" -e /opt/perf/bin/glance" &
rgs,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2008 07:24 AM
тАО06-23-2008 07:24 AM
Re: X forwing + ssh
I altready solv the problem.
The truck is enable the ForwardX11Trusted
I put in my ssh_config the option:
ForwardX11Trusted yes
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2008 07:34 AM
тАО06-23-2008 07:34 AM
Re: X forwing + ssh
Resolved by my previous post.
Regards