- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Authentication in Apache -- Plz help
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 06:25 AM
10-07-2004 06:25 AM
apache is configured, and running quite fine.
Plz help me to configure the following
1) if the request is made from a specific machine say for example if the machine's ip is 10.255.255.210 then serve the page, otherwise didnt serve. in short only specific machines(ipes) are allowed to access the website.
2 ) and I have to implement the user/group level authentication as well, i.e only specific users/group are allowed to access the website
Plz help.
Thanking all in anticipation
Regards
Maaz
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 07:36 AM
10-07-2004 07:36 AM
SolutionI don't recall, and don't see with a quick perusal of available directives, any way to restrict access by host within httpd. If that's true, I think you're only available options are TCP Wrappers or a host-based firewall with IPFilter. Both of these are available from http://software.hp.com/ for free. (TCP Wrappers shows only available for 11.11, however.)
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 08:59 AM
10-07-2004 08:59 AM
Re: Authentication in Apache -- Plz help
TCP Wrappers are available on Linux, though may not be installed by default depending on the installation options you made.
For the host-based firewall, you'd use iptables, which I think get installed for any installation type for RHEL, instead of IPFilter.
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2004 09:51 AM
10-09-2004 09:51 AM
Re: Authentication in Apache -- Plz help
mod_access provides access control based on client hostname, IP address, or other characteristics of the client request.
There are various authentication modules (mod_auth*) depending how your user database is stored.
Check out http://httpd.apache.org/docs/mod for listing and descriptions of the available moules and the section of httpd.conf for Dynamic Shared Object Support, where the modules you want are loaded when httpd starts.
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2004 02:43 PM
10-09-2004 02:43 PM
Re: Authentication in Apache -- Plz help
Regards
Maaz