Communication over firewall


 
Thread Tools Search this Thread
Special Forums Cybersecurity Communication over firewall
# 1  
Old 07-10-2003
Question Communication over firewall

Hey GUys,
Once again I run in to problem and I am here for ur help.
I have two sun(solaris) box on company LAN.
One Unix Box is behind the firewall and the other one is Outside the firewall. The thing i need to do is
remote display a graphic on Unix box outside the firewall to the Unixbox behind the firewall. I have no idea how i am gonna do this. How safely can I do this kind of configuration avoiding the risk of someone hacking in to the system behind the firewall.
I have tried to find out information on the web and this forum itself but somehow its not clear.
rsh or ssh might solve the problem of display part but what all settings i need to change to make this work.
Will really apprecitae ur expertise .
Tx
# 2  
Old 07-10-2003
are you using a "hardware" (ie linksys router) firewall, or software firewall ?
# 3  
Old 07-10-2003
Firewall is hardware and we are using Nokia, using Nortell routers.
# 4  
Old 07-16-2003
use SSH

SSH should be able to do what you are looking for, assuming you are using Xwindows as your graphical display environment on both ends.


Assuming the following:

systemA - the computer that has the application you want to run across the network

systemB - the computer you are "local" to, where you are connecting to systemA from.


Install the OpenSSH packages on both systemA and systemB (can be had from www.sunfreeware.com).

Make sure the /usr/local/etc/sshd_config file on systemA has the following line in it:

"
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost yes
"

and be sure to restart sshd on systemA.

Make sure /usr/local/etc/ssh_config on systemB has the following:

"
Host *
ForwardX11 yes
"

Then ssh from systemB to systemA and run the following command:

echo $DISPLAY

You should see the following returned:

localhost:10.0

This means that a X11 session is forwarding through your ssh session, so you should be able to run an X11 application on systemA and have it display on your local systemB.
# 5  
Old 07-17-2003
thanks protologic
The information i was looking for is security concerns with this kind of settings .. since my system behind the firewall is open to the system outside the firewall, how safely can i do the remote display of one window from one system to other.

Moreover I want to minimize the traffic over the network while doing this, since I am using an existing network over the system which is used for some other purpose. Is there a way to program this settings so that traffic is minimal.
# 6  
Old 09-02-2008
when `ForwardingX11 yes ` is set all users are able to ssh with x term i.e they can use display or GUI..
Is there any way to restrict to few users alone..
i.e only some special users can use ssh -XCPY
and others cant use the above option...
where to edit for giving certain users more previleges??
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Interprocess Communication

Hiya Everybody just joined, Not sure if this is the right section:o I require abit of an assistance with IPC! I know there are different types of IPC porcesses like signals, semaphores, mutexes, shared memory, message queues, pipes and sockets. Now say a system has a number of... (4 Replies)
Discussion started by: G.I.Joe
4 Replies

2. AIX

communication problems

hello i'v two aix servers 4.3. last night the goes down becuse electrical f problems. when the servers comes up i've notice that file /unix is gone. i've fix it and the problem fixed. after few hours the same crash becuse elctrical problems. file /unix is there , but now i've a... (0 Replies)
Discussion started by: ariec
0 Replies

3. HP-UX

Communication Failures

HI ALL, I have been trying to install a particular software using remote linux server. some thing like this: rsh <host ID> /usr/sbin/swinstall -x autoreboot=true -s /tmp/<software> <Product name>. The problem is whenever I try to install the product through a shell script the installation... (1 Reply)
Discussion started by: barun agarwal
1 Replies

4. Solaris

help on network communication

Hi, Can anyone suggest a Unix command or c-shell algorithm to simulate to behavior of "wall" command minus the "all users"? What I'm trying to do is to send a notice to just one particular user but i dont want other remotely-logged-on users to receive the message (on the pseudo-terminals). I... (3 Replies)
Discussion started by: Deanne
3 Replies

5. UNIX for Advanced & Expert Users

Interprocess communication status

hello gurus, I was wondering if someone would help me shed more light on this command. What I know so far is ipcs - stands for inter-process communication status and it reports on the following types of system resources. 1) Message queues 2) Shared memory and 3) Semaphores Please explain... (4 Replies)
Discussion started by: jerardfjay
4 Replies

6. UNIX for Dummies Questions & Answers

serial communication

This isn't really a unix question, or even a programming question, but I hope you guys can help. I want to create a program to control the electricity on a model railway. I have created the program to that it sends characters over the serial cable, but now I need to do the switch that will... (1 Reply)
Discussion started by: KrazyGuyPaul
1 Replies
Login or Register to Ask a Question