X11 forwarding through a tunnel

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat X11 forwarding through a tunnel
# 1  
Old 04-01-2014
X11 forwarding through a tunnel

Is it possible to launch an X11 application and have it use an X11 server on the other side of a bastion host? Specifically, here's my setup:


my laptop ------------- bastion -------------- remote host

I have putty installed on my laptop. The bastion is rhel 6.5 and the remote host is CentOS 6.3. Also, putty is installed on the bastion. I have an X Server running on my laptop.

Using xclock as a test app, what works fine are these two scenarios:

Code:
      my laptop ------------- bastion -------------- remote host

[A]  X Server <------------- xclock

[B]                            X Server <----------- xclock

.. in each case I needed to set up X11 forwarding, and that is working fine.

However, what I'm really trying to get is xclock from the remote host to display all the way back on my laptop's X Server:

Code:
      my laptop ------------- bastion -------------- remote host

      X Server <------------- [       ] <------------- xclock

My tools on both the laptop and bastion are either putty or ssh.

I tried, for example, running this from my laptop:

Code:
remote% ssh -X user@bastion ssh -X user@remotehost xclock

or:

laptop% ssh -X user@bastion ssh -X user@remotehost 
remote% xclock


I thought maybe I need an ssh tunnel on the bastion, but the X11 packets seem to be coming on the ssh port (22), so I wasn't exactly sure how to set up the tunnel. I tried source port 22 destination laptop:6000 (and 6010) to no avail.

.
# 2  
Old 04-01-2014
This is a bit different than standard X11 forwarding, you'd need to figure out exactly what port numbers you need and put them under 'tunnels'. I think X11 is 6000 but that can vary.

Under 'source port' you'd put 6000, I think. And under destination you'd put remotehost:6000. This means, when you logged into bastion, and connected to localhost:6000 on your laptop, the SSH tunnel would connect to remotehost:6000. So localhost:6000 would effectively be connecting to remotehost:6000.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

X11 forwarding doesn't work

hi, I'm trying to run a bash script that starts GUI. Though it says application started when I run this bash script doesn't show up any GUI. Here is what I've tried so far and please let me know if I'm missing something with the X11 set up here. cat /etc/redhat-release Red Hat Enterprise... (8 Replies)
Discussion started by: fop4658
8 Replies

2. UNIX for Beginners Questions & Answers

X11 forwarding issues

Unable to get X11 activated on my login even after Unix admin has enabled it (2 Replies)
Discussion started by: tomsayer1977
2 Replies

3. UNIX for Dummies Questions & Answers

Is it possible that X11 can be forwarded through a SSH tunnel

I communicate with the server via a ssh tunnel, configured via Putty. Recently, I'm trying to forward the X11 through it, but it doesn't work. Is there any one work this way? Searched with google, but didn't find anything. Thx in adv. (2 Replies)
Discussion started by: sleepy_11
2 Replies

4. UNIX for Dummies Questions & Answers

Problem with X11 Forwarding

Hello. I installed a Debian box, and its installed remotely. I need to boot up iceweasel from there to do a quick test. I log on using: ssh root@<IP> -X I have modified the /etc/ssh/sshd_config file, and added the X11Forwarding yes flag And yet I still get: Error: cannot open... (10 Replies)
Discussion started by: dynelight
10 Replies

5. UNIX for Dummies Questions & Answers

X11 forwarding does not work after networking change

Hi all I'm having an issue with X11 Forwarding I have a VM set up on my computer which I usually "ssh -X" to over a home network (192.168.1.*). Client 192.168.1.100 Server 192.168.1.103 This worked perfectly fine for X11 forwarding. However I am not at home now (and have no access to... (2 Replies)
Discussion started by: grahambo2005
2 Replies

6. Shell Programming and Scripting

SSH Tunnel Forwarding with no shell

Hi Experts, I am trying to have the SSH tunnel Remote forwarding command in a shell script. I should be able to do 2 tasks, but unable to get that going. 1) I have 3 servers Server 1, Server 2, Server 3. I have my Database running on Server 1 and my script running on Server 2 which should... (0 Replies)
Discussion started by: Scriptingglitch
0 Replies

7. HP-UX

'X11 forwarding' SSHD assigns already used port

Hi, We've been facing a strange issue. Clients use X11 forwarding via SSH on HP server and sometimes the same DISPLAY is assigned to two (maybe more) sessions. As a result, some users can't open their applications, and some have their windows redirected to somebody else. It looks as if sshd... (1 Reply)
Discussion started by: piooooter
1 Replies

8. UNIX for Dummies Questions & Answers

X11 forwarding not working

Hi, I am using Putty, enabled SSH X11 forwarding and entered the X11 display location as "localhost:0". However I encountered the following error: ------------------------------------ # xclock & 2941 # X connection to localhost:10.0 broken (explicit kill or server shutdown). + Exit 1... (4 Replies)
Discussion started by: panggou
4 Replies

9. Debian

X11 Forwarding Problem

I have 2 Debian boxes. In my ssh.com client and my putty client, I have X11 fowarding turned on for both boxes. When I connect one, I can xterm with no problem back to my pc. On the other, I keep getting: xterm Xt error: Can't open display: xterm: DISPLAY is not set On both... (3 Replies)
Discussion started by: natter
3 Replies

10. OS X (Apple)

ssh forwarding to X11

Hi, I have issues with running graphical interfaces on my computer being remotely logged into a network via the -X option of ssh. My .cshrc shows DISPLAY=hostname:0 and I think there should be a different number instead of the 0. I changed the ssh_config file already to 'X11 forwarding yes', which... (0 Replies)
Discussion started by: ginese
0 Replies
Login or Register to Ask a Question