Article

coolguys's picture
article
Reads:

4702

Score:
0
0
 
Comments:

1

Placing a GMS Box behind a Firewall

Author Info

15 April 2008 - 6:21am
Submitted by: coolguys

(View Disclaimer)

Problem

Like a lot of companies, ours is very small. For the 3 GMS users we have, we have used an old server, installed with Linux. And since it is not clear in the manual, we disabled the Linux Apache server.

Our network config is simple, with an wireless router on the internal network. Our phones can connect to this router, but since the GMS server was also on the internal network, we could not reach it from the inside.

Solution

I used my Novell 6.5 Apache server as proxy server. Here are the steps to follow:

1. Edit your httpd.conf file in sys:\apache2\

2. Remove the # before LoadModule proxy_http_module
modules/proxyhtp.nlm in order to load your http proxy module in apache upon startup.

3. Now enter the following code :

# Proxy to GMS Server
<IfModule mod_proxy.c>
ProxyRequests Off
ProxyPass /mobile/ http://<ipadress GMS server>/
ProxyPassReverse /mobile/ http:///
</IfModule>

4. Restart your Apache server on NetWare.

Done!

This is, I think, a beautiful way for GMS to work. Now you can just type:

http:///mobile/

and you have reached your GMS server !

You can also put this as the server address in your phones and in the setup of your GMS system:

'yourcompany.com' (http://yourcompany.com/mobile/)

(just like the big guys!)


Disclaimer: As with everything else at Cool Solutions, this content is definitely not supported by Novell (so don't even think of calling Support if you try something and it blows up).

It was contributed by a community member and is published "as is." It seems to have worked for at least one person, and might work for you. But please be sure to test, test, test before you do anything drastic with it.




User Comments

raronson's picture

Nice job

Submitted by raronson on 16 April 2008 - 10:46am.

Good solution

© 2012 Novell