- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How can i come to know that HPUX is configured for...
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
06-05-2002 03:30 AM
06-05-2002 03:30 AM
How can i come to know that HPUX is configured for trusted mode OR not
What are the differences between system configured in trusted & Non-trusted mode.
Regards
Bhavin Shah
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 03:44 AM
06-05-2002 03:44 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
Again
www.docs.hp.com
Select search this site from the blue area
Use trusted as key
All you want to know.
steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 03:45 AM
06-05-2002 03:45 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
http://searchhp.techtarget.com/tip/1,289483,sid6_gci750939,00.html
Good info
steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 03:50 AM
06-05-2002 03:50 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
very easy to find out:
if you have encrypted passwords in /etc/passwd for your users and for root, the system is not a trusted system.
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 03:57 AM
06-05-2002 03:57 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 04:34 AM
06-05-2002 04:34 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
http://www.docs.hp.com/hpux/onlinedocs/B2355-90121/B2355-90121.html
A couple of ways to find out whether or not:
1. cat /etc/passwd
the second section, password section, should be "*" for all users
2. check whether you have /tcb
directory
3. go to sam
-->Auditing and Security
If you are in the non-trusted, the system will ask you to convert or not, otherwise, you are in the trusted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 04:42 AM
06-05-2002 04:42 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
usr/lbin/getprdef
you'll either get message system is not trusted
or return code of 2 and options for the command.
Cheers
George
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 06:23 AM
06-05-2002 06:23 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
If your system is already trusted, executing /etc/tsconvert will show the following, otherwise it will convert your system to trusted:
# /etc/tsconvert
System has already been converted.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 06:30 AM
06-05-2002 06:30 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 07:23 AM
06-05-2002 07:23 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
You can execute pg comando on /etc/passwd, in passwd place you will see an * for all passwd.
In trusted mode you can configure your passwd in secure way, you can audit some comands, control number of login fails and many others things.. It??s better you read the manual about it.
Valkiria
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 02:03 AM
06-06-2002 02:03 AM
Re: How can i come to know that HPUX is configured for trusted mode OR not
/* chktcb.c */
#include
#include
#include
#include
#include
#include
#include
#include
main( )
{
if( iscomsec()==1 )
{
printf("Y\n");
}
}
Compile it by running:
cc chktcb.c -o chktcb
If you run it on a trusted system it produces a Y.
Cheers,
Joseph.