Sponsored Content
Top Forums Programming Open Source Project planing - with Linux based solutions Post 302939793 by AQwert on Sunday 29th of March 2015 05:24:59 AM
Old 03-29-2015
Project planing - with Linux based solutions

Hello,

Please suggest or share any of your experience for the following requests:


Request:
1.
Creation of the local network.
The company will be in the field of IT.
10-15 persons. 10 will be physically in the office.

The local network should be secured and all the files and documents should be encrypted.
The network should have possibility of VPN or some other secure distance connection to internal network (to gain access to internal documentation or software)
Type of open source firewall? Should it be on separate server?
For the router: not sure yet, will see the budget, but probably will configure some Cisco router or Linux version (any suggestion for linux server router os?)


Request:

To create network architecture, including solution of back-up server.
To choose type of servers and OS that will be used.

2. Creation of secured email communication.
All the emails should be encrypted.
All the emails on the email server should be kept in encrypted format.
Need to choose server OS.
Need to choose server type that will correspond to request.

3. Choosing and integrating internal management system - ERP software.
Example: Alfresco or BitrixSoft)
===

So my questions:

If for the beginning will decide to use only open source free based software.
What can be sugested.
For the beginning, for example, will have 2 servers.
1 server for: local network, files sharing, hosting of intranet website, email.
What open source virtualization software can be suggested to use on this server to separate resources between Main Local server, Email Server, File server, Intranet hosting server?
What can be suggested from Linux distributions to use as main local server (user control, access ect.)?
What can be suggested as Linux email server? (should include encryption as describe below, option of calendar, tasks and all futures as closed as possible to Exchange of Microsoft) - and what are the most user-friendly options?

Is their any suggestion for ERP software beside Alfresco or BitrixSoft (I tested Bitrix - and it is really good, but expensive for the beginning...). Is their any good open source ERP solutions?

2. server for back up. What solution can be suggested here?

===

Also, for later steps of software development need to choose the standard of software process development.
What can be suggested?

Examples:
Rational Unified Process (RUP)
MICROSOFT SOLUTIONS FRAMEWORK (MSF)

Thank you in advance
 

8 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Linux data replication solutions.

Can any one help in listing out the data replication solutions that are available on linux. I can try couple 1.DRDB 2. Rsync Can any one help ? Thanks, Mano (1 Reply)
Discussion started by: meetmano143
1 Replies

2. Homework & Coursework Questions

problem in a shell based project

i have a bank project in shell script.it has a module called deposit.when i am entering an amount and commit a mistake like entering char instead of numbers and so on and repeating it, suppose 3 times,then it is rejected by amount validation code. every thing is fine upto these steps. but after 3... (9 Replies)
Discussion started by: dharmendramiet
9 Replies

3. Hardware

Need ideas for graduation project based on unix or linux

Dear all, i am in last year of electronics department in engineering faculty i need suggestions for a graduation project based on unix or free bsd or linux and electronics "embedded linux " i think about embedded unix for example or device drivers please i need helps (1 Reply)
Discussion started by: MOHA-1
1 Replies

4. UNIX and Linux Applications

Need ideas for graduation project based on unix or linux Need ideas for graduation project based on

Dear all, i am in last year of electronics department in engineering faculty i need suggestions for a graduation project based on unix or free bsd or linux and electronics "embedded linux " i think about embedded unix for example or device drivers please i need helps (1 Reply)
Discussion started by: MOHA-1
1 Replies

5. UNIX for Advanced & Expert Users

Need ideas for graduation project based on unix or linux

Dear all, i am in last year of electronics department in engineering faculty i need suggestions for a graduation project based on unix or free bsd or linux and electronics "embedded linux " i think about embedded unix for example or device drivers please i need helps (1 Reply)
Discussion started by: MOHA-1
1 Replies

6. Homework & Coursework Questions

Need ideas for graduation project based on unix or linux

Dear all, i am in last year of electronics department in engineering faculty i need suggestions for a graduation project based on unix or free bsd or linux and electronics "embedded linux " i think about embedded unix for example or device drivers please i need helps (1 Reply)
Discussion started by: MOHA-1
1 Replies

7. Solaris

Solaris based project?

Hi friends, I am a Computer Science student, and about to do my final year project. I am a big lover of Solaris and SPARC RISC computers, and I want to work on those computers in future. I want to become a System Administrator/Security Administrator etc on the Solaris stuff. Could you please tell... (1 Reply)
Discussion started by: gabam
1 Replies

8. News, Links, Events and Announcements

A new project was posted on The UNIX and Linux Forums project board.

A new project was posted on your project board. Project title: Bash Shell Tutoring Estimated Budget: $50/hr Start date: Immediately Required skills: Linux, Bash, Shell, UNIX I work as a datawarehouse designer and developer. Although I usually stick to the role of an analyst,... (0 Replies)
Discussion started by: Neo
0 Replies
HTTP::Request(3)					User Contributed Perl Documentation					  HTTP::Request(3)

NAME
HTTP::Request - HTTP style request message SYNOPSIS
require HTTP::Request; $request = HTTP::Request->new(GET => 'http://www.example.com/'); and usually used like this: $ua = LWP::UserAgent->new; $response = $ua->request($request); DESCRIPTION
"HTTP::Request" is a class encapsulating HTTP style requests, consisting of a request line, some headers, and a content body. Note that the LWP library uses HTTP style requests even for non-HTTP protocols. Instances of this class are usually passed to the request() method of an "LWP::UserAgent" object. "HTTP::Request" is a subclass of "HTTP::Message" and therefore inherits its methods. The following additional methods are available: $r = HTTP::Request->new( $method, $uri ) $r = HTTP::Request->new( $method, $uri, $header ) $r = HTTP::Request->new( $method, $uri, $header, $content ) Constructs a new "HTTP::Request" object describing a request on the object $uri using method $method. The $method argument must be a string. The $uri argument can be either a string, or a reference to a "URI" object. The optional $header argument should be a reference to an "HTTP::Headers" object or a plain array reference of key/value pairs. The optional $content argument should be a string of bytes. $r = HTTP::Request->parse( $str ) This constructs a new request object by parsing the given string. $r->method $r->method( $val ) This is used to get/set the method attribute. The method should be a short string like "GET", "HEAD", "PUT" or "POST". $r->uri $r->uri( $val ) This is used to get/set the uri attribute. The $val can be a reference to a URI object or a plain string. If a string is given, then it should be parseable as an absolute URI. $r->header( $field ) $r->header( $field => $value ) This is used to get/set header values and it is inherited from "HTTP::Headers" via "HTTP::Message". See HTTP::Headers for details and other similar methods that can be used to access the headers. $r->accept_decodable This will set the "Accept-Encoding" header to the list of encodings that decoded_content() can decode. $r->content $r->content( $bytes ) This is used to get/set the content and it is inherited from the "HTTP::Message" base class. See HTTP::Message for details and other methods that can be used to access the content. Note that the content should be a string of bytes. Strings in perl can contain characters outside the range of a byte. The "Encode" module can be used to turn such strings into a string of bytes. $r->as_string $r->as_string( $eol ) Method returning a textual representation of the request. SEE ALSO
HTTP::Headers, HTTP::Message, HTTP::Request::Common, HTTP::Response COPYRIGHT
Copyright 1995-2004 Gisle Aas. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.1 2009-06-15 HTTP::Request(3)
All times are GMT -4. The time now is 11:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy