czwartek, 25 kwietnia 2013

Red Hat Skills Assessment

Red Hat Skills Assessment

What are your learning goals for Red Hat training?
I am seeking an introduction to Linux system administration.
I am seeking Red Hat Certified System Administrator (RHCSA) certification.
I am seeking Red Hat Certified Engineer (RHCE) certification.
I currently have my RHCT and would like to obtain an RHCE certification.

What is your current level of Linux system administration knowledge?
I have limited experience with Linux system administration and wish to learn both graphical and command line approaches.
I have limited experience with Linux system administration and work at the command line interface only.
I regularly do Linux system administration in my current job role.
I am currently a full time Solaris System Administrator.
I am currently an HPUX, AIX or other Unix System Administrator.
Other


What is your purpose for taking this pre-assessment questionnaire?
Trying to select the right course. I have already purchased training units/corporate plan.
I plan on enrolling in a course in the next month.
I hope to enroll in a course in the next few months.
I'm just curious, nothing more.

==============================================================================================
Software Management
Question 1 of 25
Configuring yum to point to a custom repository can be done in either /etc/yum.conf or in which of the following?

*   Any file name with a .repo extension in /etc/yum.repos.d/ directory.
    Same directory as yum.conf but with a .repos extension
    Any file under /etc/yum/ as long as it has a .repo extension
    Any where in the file /etc/sysconfig/yum
    Any file under /etc/sysconfig/ with a .repo extension


The command ???yum list all??? will list all available packages and available groups of packages in all enabled repositories.

    TRUE
  * FALSE


Which command would discover the names of packages that are not yet installed on your system but available in enabled repositories?

    yum available -y
    yum available
    yum available list
    yum find available
  * yum list available


What approach could be used to construct a command, using yum, that would install multiple packages from enabled yum repositories?

    Use yum install then list all package names encapsulated within double quotation marks.
  * Use yum install then list the package names using a space delimiter.
    This can only be done using the graphical user interface system-config-packages.
    Use yum install then list the package names using a comma delimiter.
    This can only be done using scripts.


Which of the following commands will install a package that is not part of a yum repository?

    None of the above.
    yum install --disablerepos <package name>
  * yum localinstall <package name>
    yum localrepo <package name>
    yum local <package name>

Which of the following commands will list only documentation from the installed iptables rpm package?

    rpm -ql iptables
    rpm -qpd iptables
    rpm -q --documentation iptables
  * rpm -qd iptables
    rpm -qa iptables


To create a private repository you should proceed as follows: - Install the createrepo software package - Create a <directory> where files can be shared (via FTP or HTTP) - Create a subdirectory called Packages and copy all packages to be published in Packages - run createrepo -v <directory>

    FALSE
  * TRUE

Consider the following settings when configuring persistent static TCP/IP settings in a network interface configuration file. Of the settings listed which, if any, are incorrect?

    IPADDR=<ip address>
    NETMASK=<network mask>
 *  BOOTPROTO=dhcp
    ONBOOT=yes
    DEVICE=<device name>


Which of the following files is used to configure client side DNS settings?

 *  /etc/resolv.conf
    /etc/sysconfig/dns
    /etc/resolve.conf
    /etc/hosts
    /etc/host


To assign a persistent machine hostname to a machine, modify or add an entry to the following file.

*   /etc/sysconfig/network
    /etc/hosts
    /etc/sysconfig/hostname
    /etc/resolve.conf
    /etc/sysconfig/network-scripts/hostname


Which command would persistently enable routing in the kernel?

    echo 1 > /proc/sys/net/ipv4/ip_forward
    sysctl -w net.ipv4.ip_forward = 1
    /proc/sys/net/ipv4/ip_forward
 *  Add the following line to the /etc/sysctl.conf file: net.ipv4.ip_forward = 1
    Rebooting the system after any of these approaches will make the setting persistent.




Which of the following statements about SELinux permissive mode is TRUE?

    permissive mode will block all access to resources.
 *  permissive mode will not block access to a resource.
    permissive mode will allow access and does not log information.
    permissive mode of for testing purposes only.
    permissive mode will only block access to remote users and will log access information.


How do you check to see if SELinux is in 'enforcing' mode?

    selinuxchk
    getselinux
    cat /proc/selinux
    setenforce --check
 *  getenforce

How do you change the SELinux context of a file to its default context?

    setselinuxcon -d <filename>
    secon -d <filename>
    chmod -default-context <filename>
    chcon --defaults <filename>
 *  restorecon <filename>

To change to SELinux Booleans for a service you would use ???semanage boolean <service>???.

 *  FALSE
    TRUE

tip: " semanage boolean whatever_blabla -> bad command, too short ;)"


What tool can be used to analyze SELinux audit logs?

    getselogs
    selogchk
    There is no tool to analyze selinux log files.
    analog
 *  sealert

tip: !!!sealert -a /var/log/audit/audit.log!


What SELinux context would need to be set to support a CIFS share?

 *  samba_share_t
    smb_share_t
    allow_smb_t
    allow_cifs_t
    cifs_share_t


Where can you find the primary configuration file used for time synchronization?

    /etc/sysconfig/ntp.conf
*   /etc/ntp.conf
    /etc/sysconfig/ntpd.conf
    /etc/ntp/ntpd.conf
    /etc/ntpd.conf


Which critical mount option must be specified in /etc/fstab when persistently using filesystems on iSCSI storage?

    iqn
*   _netdev
    scsi
    cryptsetup
    netfs

tip: Entries with fc- and _netdev sub-strings enable the mount_fcoe_disks_from_fstab function to identify FCoE disk mount entries.


Which Apache configuration directive controls whether CGI scripts are enabled?

    httpd_enable_cgi
*   ScriptAlias
    ScriptCGI
    httpd_exec
    httpd_builtin_scripting


Which Postfix directive configures a mail server to direct all outgoing e-mail to the outbound relay?

    smtp_relay
    virtual_alias_map
*   relayhost
    inet_interfaces
    outbound_host

Caching-Only DNS Server
What option in /etc/named.conf allows one name server behind a UDP restricted firewall to talk to another name server that can see out to the internet?

    masters
    forwarders
    root_hints
    recursion
    allow_recursion

(no time for find it in google ..., probably forwarders)

File Sharing with NFS
Which file allows you to fixate the ports for NFS v2/3 services?

    /etc/nfs.conf
    /etc/sysconfig/netstat
    /etc/sysconfig/services
    /etc/services
*   /etc/sysconfig/nfs

Securing Network Services
What are the two iptables modules needed for ftp stateful packet inspection?

    nfnetlink and nf_conntrack_ftp
    nf_state_ftp and nfnetlink
    nf_nat_ftp and nf_state_ftp
    nf_state_ftp and nfnetlink
*   nf_conntrack_ftp and nf_nat_ftp

tip: redhat names ... bleeeee

Troubleshooting Boot Process
What command starts a new shell with a new root file-system context?

    grub
    /sbin/init
*   chroot
    fcontext
    bash


AND FINAL RESULT

Red Hat Skills Assessment
Your Skills Assessment Results*

Topic     Evaluation
Software Management     Deep Understanding
Network Management     Deep Understanding
Managing SELinux     Deep Understanding
NTP Server Configuration     Deep Understanding
Centralized and Secure Storage     Deep Understanding
Web Server Additional Configuration     Deep Understanding
Basic SMTP Configuration     Deep Understanding
Caching-Only DNS Server     Limited Knowledge
File Sharing with NFS     Deep Understanding
Securing Network Services     Deep Understanding
Troubleshooting Boot Process     Deep Understanding

* The results represent a subset of the knowledge in the curriculum.

Recommendation

RHCE?? Rapid Track Course with RHCSA??? and RHCE Exams (RH300) is the recommended course
Next steps

Open Source Education Center offers a wide choice of Red Hat Training solutions to match your learning goals.

Classroom training: Nearly one million people from all over the world have taken Red Hat classroom training. The RHCE Rapid Track Course with RHCSA and RHCE Exams (RH300), a 5-day class,  is available across Europe, the Middle East, and Africa.

Visit osec.pl/redhat/autoryzacja for course dates and locations near you..

Onsite: If you're interested in taking this course with colleagues or your entire team, the RHCE Rapid Track Course is also routinely delivered as onsite training. Whether at your facility or at one of our training venuest, Open Source Education Center on-site solutions offer flexible, cost-effective training options to meet your needs.
For pricing and more information please call us at +48 22 861 96 04 (Poland) or email redhat@osec.pl.

Thank You!

Open Source Education Center

1 komentarz: