- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- X11 forward in 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
тАО04-02-2003 10:14 PM
тАО04-02-2003 10:14 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-02-2003 11:37 PM
тАО04-02-2003 11:37 PM
Re: X11 forward in SSH
Effectively with X11 forwarding you can lunch graphical application with a ssh session. The only problem is your lan connection speed!
Without X11 forwarding I mean that you can't use graphical interface by ssh.
Configuration on server in /etc/ssh/sshd_config:
X11Forwarding yes
X11DisplayOffset 10
# Change the port for more security
Port 5522
restart ssd daemon
Configuration on client in /etc/ssh/ssh_config or??/.ssh/config :
ForwardX11 yes
Compression yes
Port 5522 # the same port that on server
Without client configuration :
# ssh -XC -p 5522 -l
Regards,
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2003 12:01 AM
тАО04-03-2003 12:01 AM
Re: X11 forward in SSH
On HP-UX config file are in /opt/ssh/etc.
Regards,
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2003 01:05 AM
тАО04-03-2003 01:05 AM
Re: X11 forward in SSH
I test on both cases for X11Forward is yes and No, in both cases i can use the Xwindows graphic interface. It seems there is no diff. whether X11Forward is set or not. Did i miss something??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2003 01:16 AM
тАО04-03-2003 01:16 AM
Re: X11 forward in SSH
For me the only way to disable X11 is to put no at X11Forwarding. I try on m??y system and have the same result (graphical application run in all case.
I suspect a "bug".
Regards,
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2003 01:17 AM
тАО04-03-2003 01:17 AM
Re: X11 forward in SSH
if you have
X11Forwarding yes
in the sshd_config file (don't forget to restart the sshd after changing the parameter) the sshd set the Variable DISPLAY to something like this:
DISPLAY=
you do not have to set the display manually, all X11-windows are forwarded to your client automatically.
If the ssh-Server is behind a firewall
xterm -display
doesn't work
but with X11forwarding enabled and typing
xterm
the display is tunneled via the ssh-connection
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2003 03:05 AM
тАО04-03-2003 03:05 AM
Re: X11 forward in SSH
Does this means with X11Forward enable, the Xwindows traffic actually forced to use SSH connection which is encrypted?
Without X11Forward enable, Xwindows traffic are travelling in CLEAR TEXT even I am connecting to the SSH server using SSH client and have the DISPLAY=
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-03-2003 03:15 AM