Question # 1 You are about to configure an AI server and you need to determine if NWAM is configured, if the system has a manually configured IP interface. Which command gives you this information?
A. nscfg list
B. netadm list
C. netcfg list
D. svcs network/physical
Click for Answer
Question # 2 You are mentoring a colleague who recently added a local7.notice entry to the /etc/syslog.conf file. After restarting the logging service, your colleague notices that no new records are being logged and asks for your help. Included in the file are these entries: … (19)*.alert root (20)*.emerg* (21)local7.notice /var/log/Appx.log … While running the syslogd process in debug mode, you notice the following:
You examine the /var/adm/messages file: Jan 6 00:23:10 so111-server syslogd: line 21: unknown priority name “notice ” What do you identify as the cause of the problem?
A. There is a control or nonprintable character at the end of line 21 in the /etc/syslog.conf file.
B. The application that logs to /var/log/Appx.log does not support the notice priority.
C. There is an extra space in line 21 in the /etc/syslog.conf file.
D. The facility local7 does not support the notice priority.
Click for Answer
C. There is an extra space in line 21 in the /etc/syslog.conf file.
Answer Description Explanation: Must only use Tabs, not spaces. It says unknown priority name "notice " (there is a space after the word notice).
Question # 3 Which two statements are true regarding the audit_remote plugin and the audit service?
A. audit_remote is not loaded by default.
B. The standard service port defined by IANA is 16162.
C. Audit records are sent to all configured remote hosts.
D. The required GSS_API mechanism is kerberos_v5.
E. The maximum number of audit records queued before sending is 100.
Click for Answer
A. audit_remote is not loaded by default.
B. The standard service port defined by IANA is 16162.
Answer Description Explanation: A: The audit_remote plugin is loaded by auditd if the plugin is configured as an active via auditconfig. Use the auditconfig -setplugin option to change all the plugin related configuration parameters B: The solaris-audit service port assigned by IANA is 16162. Incorrect: Not D: audit_remote authenticates itself to the remote audit service by way of GSS-API (libgss(3LIB)). Default gss credentials are used as provided by the gss implementation mechanism, such as Kerberos. Note: audit_remote - send Solaris audit logs to a remote server
Question # 4 What is true regarding an IPMP group?
A. All underlying interfaces are physical Ethernet links.
B. All interfaces connect to the same switch.
C. It does not persist across reboots.
D. Testing for failover can be done using the ipadm delete-ipmp command.
Click for Answer
C. It does not persist across reboots.
Answer Description Explanation: To make IPMP groups persists across reboots you would have to do some work: To configure an IPMP group that persists across system reboots, you would edit the hostname configuration file of the IPMP interface to add data addresses. Note: The same (non-null) character string IPMP group name identifies all interfaces in the group. You can place interfaces from NICs of different speeds within the same IPMP group, as long as the NICs are of the same type. For example, you can configure the interfaces of 100-megabit Ethernet NICs and the interfaces of one gigabit Ethernet NICs in the same group. As another example, suppose you have two 100-megabit Ethernet NICs. You can configure one of the interfaces down to 10 megabits and still place the two interfaces into the same IPMP group. Incorrect: Not A: You cannot place two interfaces of different media types into an IPMP group. For example, you cannot place an ATM interface in the same group as an Ethernet interface. Not B: An IP multipathing group, or IPMP group, consists of one or more physical interfaces on the same system that are configured with the same IPMP group name. All interfaces in the IPMP group must be connected to the same IP link.
Question # 5 You have a ZFS pool that contains a hierarchy of data file systems. You create snapshots of the file systems and you created a clone (dpool/export/CID) of the dpool/export/home/CID file systems. The file systems are as follows:
Now you remove a file from the cloned file system: root@sll-server1:~# rm /export/CID/core.bash.8070 How will space usage be changed for dpool/export/CID?
A. The USED value will increase and the REFER value will decrease; the AVAIL value will be unchanged.
B. The USED value will decrease and the REFER value will increase; the AVAIL value will increase.
C. The USED value will decrease, the REFER value will decrease; the AVAIL value will increase.
D. USED, REFER and the AVAIL value will be unchanged.
Click for Answer
A. The USED value will increase and the REFER value will decrease; the AVAIL value will be unchanged.
Question # 6 Assume you are on a system that has a valid use account johnjay Consider the following command-line invocation: rolemod –p “Network Administrator,All,Stop” johnjay What is the result?
A. The user will not acquire profiles allowed in /etc/secutity/policy.conf
B. There is no effect. The user acquires all profiles before the Stop profile is read.
C. The system will return an error.
D. The user gets Network Administrator profile and all profiles listed in the All macro.
Click for Answer
C. The system will return an error.
Answer Description Explanation: root@solaris:~# useradd johnjayroot@solaris:~# passwd johnjayNew Password:Re-enter new Password:passwd: password successfully changed for johnjayroot@solaris:~# rolemod -p "Network Administrator,All,Stop" johnjayUX: rolemod: ERROR: Users must be modified with 'usermod'.root@solaris:~#
Question # 7 You need to configure three zones. zone1 will run an HTTP server, zone2 an application server, and zone3 a database. zone1 must be accessible to clients on other systems. zone2 and zone3 must not be accessible to the outside world. zone2 and zone3 must also communicate without going through zone1. Identify the correct requirement.
A. zone1 will need a VNIC to connect to a physical Ethernet link.
B. zone1 will need at least two VNICs.
C. zone2 and zone3 will need a dedicated etherstub.
D. One etherstub will be necessary.
E. A flow is needed to filter HTTP requests to zone1.
Click for Answer
C. zone2 and zone3 will need a dedicated etherstub.
Answer Description Explanation: Note: * In Oracle Solaris 11, etherstubs and VNICs are the basic components of network virtualization. * The VNIC connects the virtual network to the external network. The VNIC also enables the zones to communicate with one another through the virtual switch that is automatically created with the VNIC. For a virtual network to host traffic internally between zones and with the external LAN and the Internet, each zone must have its own interface. Therefore, you must repeat this procedure as many times as the number of zones that will belong to the virtual network. * Create the etherstub. # dladm create-etherstub etherstub Perform this step only if you are creating a private virtual network which you want to restrict from being accessed by external systems.
Question # 8 At which two stages are backups of the service configuration repository made?
A. during boot, after the early-manifest-import service finishes
B. during boot, before the manifest-import service starts
C. during manifest import, before the manifest-import service finishes
D. during manifest import, after the manifest-import service finishes
E. when a service is modified using the svccfg command
Click for Answer
B. during boot, before the manifest-import service starts
D. during manifest import, after the manifest-import service finishes
Answer Description Explanation: http://illumos.org/msg/SMF-8000-MY
Up-to-Date
We always provide up-to-date 1z0-822 exam dumps to our clients. Keep checking website for updates and download.
Excellence
Quality and excellence of our Oracle Solaris 11 Advanced System Administration practice questions are above customers expectations. Contact live chat to know more.
Success
Your SUCCESS is assured with the 1z0-822 exam questions of passin1day.com. Just Buy, Prepare and PASS!
Quality
All our braindumps are verified with their correct answers. Download Oracle Solaris Practice tests in a printable PDF format.
Basic
$80
Any 3 Exams of Your Choice
3 Exams PDF + Online Test Engine
Buy Now
Premium
$100
Any 4 Exams of Your Choice
4 Exams PDF + Online Test Engine
Buy Now
Gold
$125
Any 5 Exams of Your Choice
5 Exams PDF + Online Test Engine
Buy Now
Passin1Day has a big success story in last 12 years with a long list of satisfied customers.
We are UK based company, selling 1z0-822 practice test questions answers. We have a team of 34 people in Research, Writing, QA, Sales, Support and Marketing departments and helping people get success in their life.
We dont have a single unsatisfied Oracle customer in this time. Our customers are our asset and precious to us more than their money.
1z0-822 Dumps
We have recently updated Oracle 1z0-822 dumps study guide. You can use our Oracle Solaris braindumps and pass your exam in just 24 hours. Our Oracle Solaris 11 Advanced System Administration real exam contains latest questions. We are providing Oracle 1z0-822 dumps with updates for 3 months. You can purchase in advance and start studying. Whenever Oracle update Oracle Solaris 11 Advanced System Administration exam, we also update our file with new questions. Passin1day is here to provide real 1z0-822 exam questions to people who find it difficult to pass exam
Oracle Solaris can advance your marketability and prove to be a key to differentiating you from those who have no certification and Passin1day is there to help you pass exam with 1z0-822 dumps. Oracle Certifications demonstrate your competence and make your discerning employers recognize that Oracle Solaris 11 Advanced System Administration certified employees are more valuable to their organizations and customers. We have helped thousands of customers so far in achieving their goals. Our excellent comprehensive Oracle exam dumps will enable you to pass your certification Oracle Solaris exam in just a single try. Passin1day is offering 1z0-822 braindumps which are accurate and of high-quality verified by the IT professionals. Candidates can instantly download Oracle Solaris dumps and access them at any device after purchase. Online Oracle Solaris 11 Advanced System Administration practice tests are planned and designed to prepare you completely for the real Oracle exam condition. Free 1z0-822 dumps demos can be available on customer’s demand to check before placing an order.
What Our Customers Say
Jeff Brown
Thanks you so much passin1day.com team for all the help that you have provided me in my Oracle exam. I will use your dumps for next certification as well.
Mareena Frederick
You guys are awesome. Even 1 day is too much. I prepared my exam in just 3 hours with your 1z0-822 exam dumps and passed it in first attempt :)
Ralph Donald
I am the fully satisfied customer of passin1day.com. I have passed my exam using your Oracle Solaris 11 Advanced System Administration braindumps in first attempt. You guys are the secret behind my success ;)
Lilly Solomon
I was so depressed when I get failed in my Cisco exam but thanks GOD you guys exist and helped me in passing my exams. I am nothing without you.