1748069 Members
5389 Online
108758 Solutions
New Discussion

Proxy Issue in HP-UX

 
unix55
Advisor

Proxy Issue in HP-UX

Hi Guys,


The APP team requested to configure port in HP-UX 11.31, to use it for SMS notification, and to access this SMS server should go through proxy server with port 8080, my question now

 

How to access the SMS_server (192.168.1.10) on port 3636 from HP-UX server through this proxy server http://proxy.craeser.org:8080

 

i tried to configure http_proxy by this command "export http_proxy" but still nothing reach the SMS server through the proxy

 

Thank

3 REPLIES 3
Patrick Wallek
Honored Contributor

Re: Proxy Issue in HP-UX

>>The APP team requested to configure port in HP-UX 11.31

 

The way to "configure a port" is for a specific program to open the TCP / UDP port that it needs.

 

That program should then be the one that handles using a proxy.

unix55
Advisor

Re: Proxy Issue in HP-UX

Hi Patrick Wallek,

 

Thanks for your replay, but there is no option to configure the proxy IP and port in the application side.

only he configured the SMS server IP and 3636 port which we configured in UNIX box.

 

For that we need away to access the SMS server on port 3636 through the proxy IP with 8080 port.

 

APP_in_UNIX  ==>  ProxyIP:8080   ==>  SMS_Server:3636

 

Thanks

 

tsunix-pdm-1
Advisor

Re: Proxy Issue in HP-UX

Hi,

 

You can do it by using "connect":

 

https://bitbucket.org/gotoh/connect/wiki/Home

 

From its help:

 

  usage:  connect [-dnhs45] [-R resolve] [-p local-port] [-w sec]
		  [-H [user@]proxy-server[:port]]
		  [-S [user@]socks-server[:port]]
		  host port

So you can try  ssh with the "ProxyCommand connect" option. 

 

Kind Regards,