- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Restrict source access for an internal port
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
01-10-2005 07:59 AM
01-10-2005 07:59 AM
Restrict source access for an internal port
I thought using tcp-wrappers or the inetd.sec table, nut they are used for internal services and not for (in this case) a weblogic service. Am I right?
Regards,
Vladimir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 08:16 AM
01-10-2005 08:16 AM
Re: Restrict source access for an internal port
http://software.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9901AA
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-10-2005 08:17 AM
01-10-2005 08:17 AM
Re: Restrict source access for an internal port
Block it at your network switch.
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 08:33 AM
01-10-2005 08:33 AM
Re: Restrict source access for an internal port
In /var/adm/inetd.sec, pu as followinf.
"service_name" allo ip_address1, ipaddress2 and so on
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2005 09:43 AM
01-10-2005 09:43 AM
Re: Restrict source access for an internal port
Configure the following IPFilter rules:
------
pass in quick proto tcp from IP1 to any port = 7001 flags S keep state keep frags
pass in quick proto tcp from IP2 to any port = 7001 flags S keep state keep frags
block in quick from any to any port = 7001
-------
Replace IP1 and IP2 with IP addresses of the
machines you want to allow using service.
If you are on HP-UX 11i v2 (aka 11.23),
IPFilter should already be installed on your
system. Otherwise, download it from the
location given in Steven's mail.
- Biswajit