- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how can i restrict some ip like 128.1.0.2 to acces...
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-29-2005 11:53 AM
01-29-2005 11:53 AM
how can i restrict some ip like 128.1.0.2 to access my hosts' port 1521?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2005 12:09 PM
01-29-2005 12:09 PM
Re: how can i restrict some ip like 128.1.0.2 to access my hosts' port 1521?
is /etc/inetd.conf can work this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2005 01:08 PM
01-29-2005 01:08 PM
Re: how can i restrict some ip like 128.1.0.2 to access my hosts' port 1521?
You can do this by using an 'allow' line in inetd.sec.
I believe the syntax is:
servicename allow 128.1.0.2
That would only allow the ip address 128.1.0.2 to access the service named servicename.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2005 01:37 PM
01-29-2005 01:37 PM
Re: how can i restrict some ip like 128.1.0.2 to access my hosts' port 1521?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2005 02:43 PM
01-29-2005 02:43 PM
Re: how can i restrict some ip like 128.1.0.2 to access my hosts' port 1521?
Configure the following rule:
$ /sbin/ipf -f -
block in quick proto tcp from 128.1.0.2 to any port = 1521
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2005 08:15 PM
01-30-2005 08:15 PM
Re: how can i restrict some ip like 128.1.0.2 to access my hosts' port 1521?
Are you trying to restrict access to an Oracle Database listener at port 1521? Instead of filtering at OS level, you could try modifying the file $ORACLE_HOME/NETWORK/ADMIN/PROTOCOL.ORA instead
example...
tcp.validnode_checking = YES
tcp.invited_nodes = (128.1.0.2)