- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- TCP Wrapper Newbie
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
Discussions
Discussions
Discussions
Forums
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
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
тАО01-23-2007 12:23 AM
тАО01-23-2007 12:23 AM
TCP Wrapper Newbie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-23-2007 12:38 AM
тАО01-23-2007 12:38 AM
Re: TCP Wrapper Newbie
Docs:
http://docs.hp.com/en/5991-4837/5991-4837.pdf
http://docs.hp.com/en/5991-4837/ch01s01.html
http://docs.hp.com/en/5991-1869/ch05s02.html
The master document for the first two probably includes all the information you need.
As far as advice, goes, take a go slow approach. If you try and do too much, too fast you may end up with an unworkable configuration.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-23-2007 02:14 AM
тАО01-23-2007 02:14 AM
Re: TCP Wrapper Newbie
You know about /var/adm/inetd.sec, right?
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-23-2007 02:15 AM
тАО01-23-2007 02:15 AM
Re: TCP Wrapper Newbie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-23-2007 02:20 AM
тАО01-23-2007 02:20 AM
Re: TCP Wrapper Newbie
In a nutshell, you add lines to /var/adm/inetd.sec in the format:
telnet allow host1 host2 1.2.3.4 2.3.4.5
The above line means allow telnet from hosts host1 and host2 and the hosts with IP addresses 1.2.3.4 and 2.3.4.5.
Once you configure inetd.sec, you must do an 'inetd -c' to cause inetd to re-read its configuration files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-23-2007 04:19 AM
тАО01-23-2007 04:19 AM
Re: TCP Wrapper Newbie
telnet allow host1 host2 host3
However, seems that the above has only taken effect on host1. host2 and host3 are not being granted access.