Sponsored Content
Operating Systems Solaris Solaris 9 vs 10 Certification Post 79605 by blk97tt on Friday 29th of July 2005 12:01:52 AM
Old 07-29-2005
Solaris 9 vs 10 Certification

Hi. I am fairly new to the UNIX world and was thinking of getting certified. I was thinking of going with Solaris 10 certification. I have noticed that there really aren't any certification study guides out for Solaris 10 yet. I am not sure how quickly companies are making the jump to 10 or how much these skills would be in demand. My company is still using 7 and 8 on many boxes I believe.

If you were in my situation, would you want to get the latest certification or would you just go for 9 since there is an abundance of books on it. I know many changes were made to 10. Do you think it would be difficult to learn/get certified in 9 and then move to 10?

I did do a search before asking. It appears that the last certification question was answered in 2000.

Thanks in advance.
Sal
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

HP-UX and Solaris Certification: Better 2gether??

I am fresh from the womb when it comes to Unix, but I like it.So much that i'm willing to get certifications as both a HP-UX and Solaris Network Administrator.My questions are............... 1)What is the difference between Solaris and HP-UX other than one is by Sun and the other is by Hewlett... (4 Replies)
Discussion started by: perrylx
4 Replies

2. Solaris

Solaris certification

Hello everybody !! Im from Brazil...and i didnt found any forum about Solaris here..then i need some help..... I´m an Oracle Database Administrator. I will do some course about Solaris and the tests too...for Certification...and i dont know if the content of the courses are enough to pass in... (1 Reply)
Discussion started by: a_pastore
1 Replies

3. Solaris

Question for Solaris 9 Certification

1. You are a network administrator. You have a script that uses rusers to tell you who is logged into your system on the network. You suspect that you are not getting all the client machines to report. Which daemon may not be running on some of the clients? a. rpc.cmsd b. in.fingerd c. rc.sprayd... (1 Reply)
Discussion started by: Ajwat
1 Replies

4. UNIX for Dummies Questions & Answers

Solaris 9 Certification

Hi I am preparing for Solaris 9 - I need questions and answers of the same - If somebody has it please let me know - Sites are asking for a lot of money - Specially if u have TK please let me know - Or if somebody has any ideas of any real good questions who have given the test recently please... (1 Reply)
Discussion started by: guru_exam
1 Replies

5. Solaris

Solaris 10 Certification

Hy folks, Did anyone of you go to Solaris 10 Certification? And who passed? I am interested in what books/guides etc. did you use to preapare yourself for certification. Any tips or advices for novice user? Thanks (1 Reply)
Discussion started by: R@LE
1 Replies

6. Solaris

Is solaris 9 certification closed or not???

Is solaris 9 certification closed or not??? If some body has knowledge about this query than please send me verified information . Thanks. (1 Reply)
Discussion started by: infra2712
1 Replies

7. UNIX for Dummies Questions & Answers

Solaris 10 Certification

Hi, Is it a must to take Solaris Admin I and II at the same time to get SCSA certified? Can i take Admin I now and take Admin II 7 Months later and get certified? Rgds, filthymonk (1 Reply)
Discussion started by: filthymonk
1 Replies

8. Solaris

Sun Solaris certification

Have decided to take up SCSA . which would be advisable to take Solaris 10 or Solaris 9 in the current trend ?. Jothi Prabaharan (1 Reply)
Discussion started by: jothprab
1 Replies

9. Solaris

Has anyone here taken the Solaris certification exams?

I'm thinking of taking the Solaris 10 exams, and never taken Sun's exams before. What kind of home lab is adequate for preparation? Would a couple of Sun Blade 100's and some USB storage be sufficient? (3 Replies)
Discussion started by: yoda9999
3 Replies
AUTOFS_LDAP_AUTH.CONF(5)					File Formats Manual					  AUTOFS_LDAP_AUTH.CONF(5)

NAME
autofs_ldap_auth.conf - autofs LDAP authentication configuration DESCRIPTION
LDAP authenticated binds, TLS encrypted connections and certification may be used by setting appropriate values in the autofs authentica- tion configuration file and configuring the LDAP client with appropriate settings. The default location of this file is /etc/autofs_ldap_auth.conf. If this file exists it will be used to establish whether TLS or authentication should be used. An example of this file is: <?xml version="1.0" ?> <autofs_ldap_sasl_conf usetls="yes" tlsrequired="no" authrequired="no" authtype="DIGEST-MD5" user="xyz" secret="abc" /> If TLS encryption is to be used the location of the Certificate Authority certificate must be set within the LDAP client configuration in order to validate the server certificate. If, in addition, a certified connection is to be used then the client certificate and private key file locations must also be configured within the LDAP client. OPTIONS
This files contains a single XML element, as shown in the example above, with several attributes. The possible attributes are: usetls="yes"|"no" Determines whether an encrypted connection to the ldap server should be attempted. tlsrequired="yes"|"no" This flag tells whether the ldap connection must be encrypted. If set to "yes", the automounter will fail to start if an encrypted connection cannot be established. authrequired="yes"|"no"|"autodetect"|"simple" This option tells whether an authenticated connection to the ldap server is required in order to perform ldap queries. If the flag is set to yes, only sasl authenticated connections will be allowed. If it is set to no then authentication is not needed for ldap server connections. If it is set to autodetect then the ldap server will be queried to establish a suitable sasl authentication mechanism. If no suitable mechanism can be found, connections to the ldap server are made without authentication. Finally, if it is set to simple, then simple authentication will be used instead of SASL. authtype="GSSAPI"|"LOGIN"|"PLAIN"|"ANONYMOUS"|"DIGEST-MD5|EXTERNAL" This attribute can be used to specify a preferred authentication mechanism. In normal operations, the automounter will attempt to authenticate to the ldap server using the list of supportedSASLmechanisms obtained from the directory server. Explicitly setting the authtype will bypass this selection and only try the mechanism specified. The EXTERNAL mechanism may be used to authenticate us- ing a client certificate and requires that authrequired set to "yes" if using SSL or usetls, tlsrequired and authrequired all set to "yes" if using TLS, in addition to authtype being set to EXTERNAL. If using authtype EXTERNAL two additional configuration entries are required: external_cert="<client certificate path>" This specifies the path of the file containing the client certificate. external_key="<client certificate key path>" This specifies the path of the file containing the client certificate key. These two configuration entries are mandatory when using the EXTERNAL method as the HOME environment variable cannot be assumed to be set or, if it is, to be set to the location we expect. user="<username>" This attribute holds the authentication identity used by authentication mechanisms that require it. Legal values for this attribute include any printable characters that can be used by the selected authentication mechanism. secret="<password>" This attribute holds the secret used by authentication mechanisms that require it. Legal values for this attribute include any printable characters that can be used by the selected authentication mechanism. encoded_secret="<base64 encoded password>" This attribute holds the base64 encoded secret used by authentication mechanisms that require it. If this entry is present as well as the secret entry this value will take precedence. clientprinc="<GSSAPI client principal>" When using GSSAPI authentication, this attribute is consulted to determine the principal name to use when authenticating to the di- rectory server. By default, this will be set to "autofsclient/<fqdn>@<REALM>. credentialcache="<external credential cache path>" When using GSSAPI authentication, this attribute can be used to specify an externally configured credential cache that is used dur- ing authentication. By default, autofs will setup a memory based credential cache. SEE ALSO
auto.master(5), AUTHOR
This manual page was written by Ian Kent <raven@themaw.net>. 19 Feb 2010 AUTOFS_LDAP_AUTH.CONF(5)
All times are GMT -4. The time now is 02:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy