Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Security requirements for Module Download

Status
Not open for further replies.

netman4u

Technical User
Joined
Mar 16, 2005
Messages
176
Location
US
Hello all,

I am going to be using NET::SSH and/or NET::Telnet in a very secure lab environment on a Solaris Server. I need to create a document describing the requirements I need to complete my task.

My question is what is required to be able to download modules via PPM as far as port and protocols? I assume port 80 needs to be opened for in and out. Is that it?

Also, if that is not possible what other options do I have to get these modules on the server?

Thanks,

Nick

If at first you don't succeed, don't try skydiving.
 
I use the template module for example, all I do is place the Template.pm module in the same place as the script and use this code to include the path in @INC
Code:
# Set path to user modules
use FindBin qw($Bin);
use lib "$Bin"; 
#######################
# Use Template Module #
#######################
use Template;

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top