Operating System - HP-UX
1819791 Members
3303 Online
109607 Solutions
New Discussion юеВ

Info required on DCE client ports

 
SOLVED
Go to solution
R Manickavel
Occasional Contributor

Info required on DCE client ports

Hi,

We are in the process of implementing firewall in our DC and part of that we need to enable DCE client ports (outbound) for the following setup:

* DCE client installed on hp-ux 11 in DMZ firewall network

* DCE server installed on hp-ux 10.2 server which is there out of firewall network.

Can someone help me to get the outbound ports to be opened in DCE client machine?

Thanks & regards
Manick.
2 REPLIES 2
Alex Glennie
Honored Contributor
Solution

Re: Info required on DCE client ports

fyi rpcd/dced runs on port 135 but ....

Restricting RPC Port Assignments


The endpoint map port assignments canbe restricted to a range
(or ranges) of ports. To do this, set the RPC_RESTRICTED_PORTS
to the ranges. Refer to "Notes on Programming HP DCE section in
the DCE Plan & Config Guide. Usually set this env variable in
/etc/opt/dce/dce_com_env
Syntax:
entry: [range {,range}]
RPC_RESTRICTED_PORTS= {:} ... {:}
Example:
RPC_RESTRICTED_PORTS=ncacn_ip_tcp[5000-5110,5500-5521]:ncadg_ip_udp[6500-7000]

will be applicable to your applications using the rpc calls ...

see http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B3193-90021/B3193-90021_top.html&con=/hpux/onlinedocs/B3193-90021/00/00/26-con.html&toc=/hpux/onlinedocs/B3193-90021/00/00/26-toc.html&searchterms=RPC_RESTRICTED_PORTS&queryid=20021112-063715
R Manickavel
Occasional Contributor

Re: Info required on DCE client ports

Thanks for the info.