Red Hat Linux release 9 (Shrike) question

Hi guys, wondering if you could help me out here...

this is a proxy system problem

I'm trying to access a web gui service off a linux box running Red Hat Linux release 9 (Shrike) used as a proxy server which does not seem to have a web browser installed.....

how can i do this?

so to clarify I can get to this box via ssh from my client pc but what I need is a web browser access to two other linux boxes sitting off this one.....

1st system is
solaris# cat /etc/release
Solaris 8 2/02 s28s_u7wos_08a SPARC
Copyright 2002 Sun Microsystems, Inc. All Rights Reserved.
Assembled 18 December 2001

2nd system is
solaris#cat /etc/release
Solaris 8 HW 7/03 s28s_hw3wos_05a SPARC
Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
Assembled 11 June 2003

verbose output of shh connection to proxy redhat linux box....

sh-4.1$ ssh -1 -vvv -l username -o "ForwardX11 yes" redhat.linux
OpenSSH_5.8p1, OpenSSL 0.9.8r 8 Feb 2011
debug2: ssh_connect: needpriv 0
debug1: Connecting to redhat.linux [1.1.1.1] port 22.
debug1: Connection established.
debug1: identity file /home/username/.ssh/identity type 0
debug1: identity file /home/username/.ssh/identity-cert type -1
debug1: Remote protocol version 1.99, remote software version OpenSSH_3.7.1p2
debug1: match: OpenSSH_3.7.1p2 pat OpenSSH_3.*
debug1: Local version string SSH-1.5-OpenSSH_5.8
debug2: fd 3 setting O_NONBLOCK
debug1: Waiting for server public key.
debug1: Received server public key (768 bits) and host key (1024 bits).
debug1: Server host key: RSA1 53:40:10:d1:86:92:1e:d5:a1:70:0f:b0:4f:c8:67:eb
debug3: load_hostkeys: loading entries for host "redhat.linux" from file "/home/username/.ssh/known_hosts"
debug2: key_type_from_name: unknown key type '1024'
debug3: key_read: missing keytype
debug3: load_hostkeys: found key type RSA1 in file /home/shayre/.ssh/known_hosts:1
debug3: load_hostkeys: loaded 1 keys
debug3: load_hostkeys: loading entries for host "1.1.1.1" from file "/home/username/.ssh/known_hosts"
debug2: key_type_from_name: unknown key type '1024'
debug3: key_read: missing keytype
debug3: load_hostkeys: found key type RSA1 in file /home/shayre/.ssh/known_hosts:1
debug3: load_hostkeys: loaded 1 keys
debug1: Host 'redhat.linux' is known and matches the RSA1 host key.
debug1: Found key in /home/username/.ssh/known_hosts:1
debug1: Encryption type: 3des
debug1: Sent encrypted session key.
debug2: cipher_init: set keylen (16 -> 32)
debug2: cipher_init: set keylen (16 -> 32)
debug1: Installing crc compensation attack detector.
debug1: Received encrypted confirmation.
debug1: Trying RSA authentication with key '/home/username/.ssh/identity'
debug1: Received RSA challenge from server.
Enter passphrase for RSA key '/home/username/.ssh/identity':
debug1: Sending response to host key RSA challenge.
debug1: Remote: RSA authentication accepted.
debug1: RSA authentication accepted by server.
Authenticated to redhat.linux ([1.1.1.1]:22).
debug1: Requesting pty.
debug2: x11_get_proto: /usr/bin/xauth -f /tmp/ssh-SnugzJPz5840/xauthfile generate :0.0 MIT-MAGIC-COOKIE-1 untrusted timeout 1200 2>/dev/null
Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
debug1: Requesting X11 forwarding with authentication spoofing.
debug2: fd 3 setting TCP_NODELAY
debug3: packet_set_tos: set IP_TOS 0x10
debug1: Requesting shell.
debug1: Entering interactive session.
debug2: fd 0 setting O_NONBLOCK
debug1: fd 0 clearing O_NONBLOCK
[username@redhat]$

Have you considered using an SSH tunnel or Deligate?

DeleGate Home Page (www.delegate.org)

SSH Port Forwarding | Symantec Connect Community

also, I SERIOUSLY suggest you get off of the ancient Red Hat 9 system. It has been at end of life for some time.

Red Hat Linux - Wikipedia, the free encyclopedia

It came out in March of 2003. You are in no man's land for patches.

yes if it was up to me I would, unfortunately I don't control it..

previously used similar ssh tunnelling method from a script i found, any pointers in what could be wrong would be great...

ssh -1 -f -l $LOGNAME -o "ForwardX11 yes" -o "StrictHostKeyChecking no"
-L 6003:publicipaddressofwhereineedhttptrafficfrom.com:2222 proxy.server sleep 5 >/dev/null 2>&1 xterm 
-title NAME -e ssh -1 -q -o "StrictHostKeyChecking no" -l username -p 
6003 -L 8080:www.whereineedhttptrafic.com:8080 localhost &