HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how can i secury my unix system?
Operating System - HP-UX
1825756
Members
2297
Online
109687
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
06-13-2001 10:51 PM
06-13-2001 10:51 PM
how can i secury my unix system?
when i use nmap(port scan tools) scan my unix system,it reports:
Remote operating system guess: HP-UX 10.20 E 9000/777 or A 712/60 with tcp_random_seq = 0
TCP Sequence Prediction: Class=64K rule
Difficulty=1 (Trivial joke)
IPID Sequence Generation: Incremental
how can i modify the "tcp_random_seq" to secury my unix system?
thanks
Remote operating system guess: HP-UX 10.20 E 9000/777 or A 712/60 with tcp_random_seq = 0
TCP Sequence Prediction: Class=64K rule
Difficulty=1 (Trivial joke)
IPID Sequence Generation: Incremental
how can i modify the "tcp_random_seq" to secury my unix system?
thanks
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 11:15 PM
06-13-2001 11:15 PM
Re: how can i secury my unix system?
Use nettune:
nettune -s tcp_random_seq
But, the OS finger print list for nmap also contains HP-UX entries for tcp_random_seq=1 and tcp_random_seq=2, so nmap will probably still be able to guess your OS type.
HTH.
Vincent
nettune -s tcp_random_seq
But, the OS finger print list for nmap also contains HP-UX entries for tcp_random_seq=1 and tcp_random_seq=2, so nmap will probably still be able to guess your OS type.
HTH.
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2001 05:06 AM
06-26-2001 05:06 AM
Re: how can i secury my unix system?
This is a script I found some time ago, and use on HP-UX 10.20. NOTE: this does not work on 11.0 because of the introduction of ndd!
INSTRUCTIONS: copy and paste this into a file...I call mine /sbin/init.d/fix_ipstack.sh
chmod to 555. Link to /sbin/rcd.2, right after hpbase100's startup.
First time, run it manually....
/sbin/init.d/fix_ipstack.sh start
#!/sbin/sh
#################################################
# Thanks to Ralf Hildebrandt for this one!
#################################################
# nettune: hack kernel parms for safety
OKAY=0
ERROR=-1
##########
# main #
##########
case $1 in
start_msg)
print "Tune kernel vars with nettune and adb"
exit $OKAY
;;
stop_msg)
print "This action is not applicable"
exit $OKAY
;;
stop)
exit $OKAY
;;
start)
;; # fall through
*)
print "USAGE: $0 {start_msg | stop_msg | start | stop}" >&2
exit $ERROR
;;
esac
###########
# start #
###########
#
(/usr/contrib/bin/nettune -s tcp_random_seq 2; /usr/contrib/bin/nettune -s hp_syn_protect 1; /usr/contrib/bin/nettune -s ip_forwarding 0 ;
echo 'ip_block_source_routed/W1' | /usr/bin/adb -w /stand/vmunix /dev/kmem )
rval=$OKAY
exit $rval
NOTE also, that securing the tcp sequence is a very small portion of securing a system!
Regards,
Shannon
INSTRUCTIONS: copy and paste this into a file...I call mine /sbin/init.d/fix_ipstack.sh
chmod to 555. Link to /sbin/rcd.2, right after hpbase100's startup.
First time, run it manually....
/sbin/init.d/fix_ipstack.sh start
#!/sbin/sh
#################################################
# Thanks to Ralf Hildebrandt for this one!
#################################################
# nettune: hack kernel parms for safety
OKAY=0
ERROR=-1
##########
# main #
##########
case $1 in
start_msg)
print "Tune kernel vars with nettune and adb"
exit $OKAY
;;
stop_msg)
print "This action is not applicable"
exit $OKAY
;;
stop)
exit $OKAY
;;
start)
;; # fall through
*)
print "USAGE: $0 {start_msg | stop_msg | start | stop}" >&2
exit $ERROR
;;
esac
###########
# start #
###########
#
(/usr/contrib/bin/nettune -s tcp_random_seq 2; /usr/contrib/bin/nettune -s hp_syn_protect 1; /usr/contrib/bin/nettune -s ip_forwarding 0 ;
echo 'ip_block_source_routed/W1' | /usr/bin/adb -w /stand/vmunix /dev/kmem )
rval=$OKAY
exit $rval
NOTE also, that securing the tcp sequence is a very small portion of securing a system!
Regards,
Shannon
Microsoft. When do you want a virus today?
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP