- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Need to block a single IP not a subnet
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
04-11-2003 01:55 PM
04-11-2003 01:55 PM
Need to block a single IP not a subnet
I have installed IP Filter 9000 on my HP Server running HP-UX 11.i and can't seem to figure out how to block one single IP Address. Doing a full subnet is easy but I need to only block one single IP Address because I need the rest of the network to access this machine.
example I Have a private IP Address of 10.23.206.52 and want to block incoming traffic from 10.23.249.50.
Any info on this would be appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 02:51 AM
04-13-2003 02:51 AM
Re: Need to block a single IP not a subnet
You can achieve by adding entry in inetd.sec
Do man inetd.sec for more details.
Thx
NH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 03:32 AM
04-13-2003 03:32 AM
Re: Need to block a single IP not a subnet
block in quick 10.23.249.50/32
or maybe this:
block in quick on lan0 from 10.23.249.50/32 to 10.23.206.52/32
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2003 06:58 PM
04-13-2003 06:58 PM
Re: Need to block a single IP not a subnet
inetd.sec
dtspc allow 127.0.0.1 loopback
rlogin allow 10.1.* jufprod
ftp allow 10.1.* 10.1.11.* jufprod tzfat hebron
tftp allow 10.1.* jufprod
login allow 10.1.* 10.75.* 10.1.31.* 10.4* jufprod
telnet allow 10.1.* 10.75.* 10.1.31.* 10.4* jufprod
rcp allow 10.1.* 10.75.* jufprod
Now to block just add some statments like this.
ftp deny 10.23.249.50
login deny 10.23.249.50
Save it, maybe restart inetd -c
Back the file up before you start and test functionality that should work after your done.
Then.
You're done.
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
04-13-2003 07:23 PM
04-13-2003 07:23 PM
Re: Need to block a single IP not a subnet
inetd.sec is batter option if you want to block only one ip address but in this case you can block services to specific IP address not all incoming traffic.
SUnil