- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- inetd.sec
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-25-2000 10:32 AM
10-25-2000 10:32 AM
inetd.sec
i defined the service in /etc/services, and i have entered the service name and i.p. address to deny.
however, i can still connect to the port.
i.e. http://whatever:7500
any ideas would be appreciated.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 10:35 AM
10-25-2000 10:35 AM
Re: inetd.sec
Just a thought,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 10:40 AM
10-25-2000 10:40 AM
Re: inetd.sec
If your webserver is not started from within inetd (ie if it is in standalone mode) then inetd.sec cannot control access to it. however, you can set up .htaccess files in the "root" of the webserver hierarchy that denies that IP:
1. Create a file called .htaccess in your documents_home directory. the file should contain:
deny from bad.bad.machine.com
allow from all
AuthUserFile authusr.pwd
AuthGroupFile /dev/null
AuthName "Privileged Member"
AuthType Basic
require valid-user
satisfy any
===================
check the documentation of apache for more information on htaccess
If you want to absolutely control it from within inetd.sec, then you have to set up your webserver to be started by inetd.conf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 10:48 AM
10-25-2000 10:48 AM
Re: inetd.sec
we are using an oracle web server, not apache. is there a similiar function?
also, what are the benefits/disadvantages of starting and stopping the web server with inetd?
thanks again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 10:55 AM
10-25-2000 10:55 AM
Re: inetd.sec
have you entered the deny ip addresses in one line at inetd.sec ?
There must not be any line break or line continue with
Reagards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2000 10:57 AM
10-25-2000 10:57 AM
Re: inetd.sec
I tend to prefer to have the webserver be standalone - when started from within inetd, every time a hit comes on port 7500, inetd wakes up and invokes a new instance of the webserver to service the request (potentially 2 steps). However, if started as a standalone, a new instance of the server is started, only if there isn't an idle one currently running.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2000 03:39 PM
10-30-2000 03:39 PM
Re: inetd.sec
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2000 05:17 PM
10-30-2000 05:17 PM
Re: inetd.sec
As you machine boots up just make sure the webserver will not be started automatically. I think you also have to take out the "--daemon" parameter for the webserver entry in the inetd.conf file, then your security entries in inetd.sec should come into effect.
If your webserver will be a busy one, then I would agree that the standalone server approach is more appropriate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2000 05:17 PM
10-30-2000 05:17 PM
Re: inetd.sec
As you machine boots up just make sure the webserver will not be started automatically. I think you also have to take out the "--daemon" parameter for the webserver entry in the inetd.conf file, then your security entries in inetd.sec should come into effect.