Oracle 1z0-820 Exam Practice Questions (P. 3)
- Full Access (130 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #11
On server A, you enter the following command to add a static route to serverA route -p add -host 192.168.1.101 192.168.1.101 -static
What is the purpose of this command?
What is the purpose of this command?
- Ato temporarily bypass IP Filter rules
- Bto specify an IPMP target IP address to in.mpathd
- Cto specify routing to an adjacent network when in.rdisc is not used
- Dto specify routing to an adjacent network when in.routed is not used
- Eto ensure the IP address for serverB is not flushed from the ARP cache
- Fto optimize link aggregation using a direct connection between two systems
Correct Answer:
B
Note: # route -p add -host destination-IP gateway-IP -static
are IPv4 addresses of the host to be used as a target.
For example, you would type the following to specify the target system 192.168.10.137, which is on the same subnet as the interfaces in IPMP group itops0:
$ route -p add -host 192.168.10.137 192.168.10.137 -static
This new route will be automatically configured every time the system is restarted. If you want to define only a temporary route to a target system for probe-based failure detection, then do not use the -p option.
B
Note: # route -p add -host destination-IP gateway-IP -static
are IPv4 addresses of the host to be used as a target.
For example, you would type the following to specify the target system 192.168.10.137, which is on the same subnet as the interfaces in IPMP group itops0:
$ route -p add -host 192.168.10.137 192.168.10.137 -static
This new route will be automatically configured every time the system is restarted. If you want to define only a temporary route to a target system for probe-based failure detection, then do not use the -p option.
send
light_mode
delete
Question #12
Before booting test zone a non-global zone, you want to connect to the zone’s console so that you can watch the boot process.
Choose the command used to connect to testzone’s console.
Choose the command used to connect to testzone’s console.
- Azoneadm -C testzone
- Bzoneadm -console testzone
- Czlogin - z testzone console
- Dzlogin - z testzone - C
- Ezlogin -C testzone
- Fzoneadm - testzone - c
Correct Answer:
E
The following options are supported:
-C
Connects to the zone console. Connects to the zone console.
Note:
After you install a zone, you must log in to the zone to complete its application environment. You might log in to the zone to perform administrative tasks as well.
Unless the -C option is used to connect to the zone console, logging in to a zone using zlogin starts a new task. A task cannot span two zones
Incorrect answers:
B: No option -console.
C, D: No option -z.
Reference: man zlogin
E
The following options are supported:
-C
Connects to the zone console. Connects to the zone console.
Note:
After you install a zone, you must log in to the zone to complete its application environment. You might log in to the zone to perform administrative tasks as well.
Unless the -C option is used to connect to the zone console, logging in to a zone using zlogin starts a new task. A task cannot span two zones
Incorrect answers:
B: No option -console.
C, D: No option -z.
Reference: man zlogin
send
light_mode
delete
Question #13
Consider the following rule file for use with the Basic Audit Reporting Tool (BART).
CHECK all -
IGNORE dirmtime -
/etc/security
/etc/notices
IGNORE contents -
/export/home
IGNORE mtime size contents -
/var
CHECK -
You are using BART to detect inappropriate changes to the file system.
Identify the two correct statements describing the attributes recorded.
CHECK all -
IGNORE dirmtime -
/etc/security
/etc/notices
IGNORE contents -
/export/home
IGNORE mtime size contents -
/var
CHECK -
You are using BART to detect inappropriate changes to the file system.
Identify the two correct statements describing the attributes recorded.
- A/var/dhcp Attribute: size uid gid mode acl
- B/etc/hosts Attributes: size uid gid mode acl intime dest
- C/var/spool/mqueue Attribute: size uid gid mode acl dirmtime
- D/etc/security/exec_attr Attribute: size uid mode acl mtime devnode
- E/export/home/kate/.profile Attributes: uid gid mode acl dirmtime
- F/export/home/rick/.profile Attributes: size uid gid mode acl mtime contents
Correct Answer:
DF
D: According to line /etc/security
F: According to line /export/home
Not E: According to line IGNORE dirmtime
Note: In default mode, the bart compare command, as shown in the following example, checks all the files installed on the system, with the exception of modified directory timestamps (dirmtime):
CHECK all -
IGNORE dirmtime -
Note 2: The Basic Audit Reporting Tool (BART) feature of Oracle Solaris enables you to comprehensively validate systems by performing file-level checks of a system over time. By creating BART manifests, you can easily and reliably gather information about the components of the software stack that is installed on deployed systems.
BART is a useful tool for integrity management on one system or on a network of systems.
Reference: Oracle Solaris Administration: Security Services, BART Manifests, Rules Files, and Reports (Reference)
DF
D: According to line /etc/security
F: According to line /export/home
Not E: According to line IGNORE dirmtime
Note: In default mode, the bart compare command, as shown in the following example, checks all the files installed on the system, with the exception of modified directory timestamps (dirmtime):
CHECK all -
IGNORE dirmtime -
Note 2: The Basic Audit Reporting Tool (BART) feature of Oracle Solaris enables you to comprehensively validate systems by performing file-level checks of a system over time. By creating BART manifests, you can easily and reliably gather information about the components of the software stack that is installed on deployed systems.
BART is a useful tool for integrity management on one system or on a network of systems.
Reference: Oracle Solaris Administration: Security Services, BART Manifests, Rules Files, and Reports (Reference)
send
light_mode
delete
Question #14
The ZFS configuration on your server is:
Pool1 6.67G 31K /pool
Pool1/data 31K 31K /data
Select the three commands that you would use to 1. Create, 2. List, and 3. Delete a snapshot of the /data file system.
Pool1 6.67G 31K /pool
Pool1/data 31K 31K /data
Select the three commands that you would use to 1. Create, 2. List, and 3. Delete a snapshot of the /data file system.
- Azfs snapshot pool1/data@now
- Bzfs create snapshot pool1/data@now
- Czfs list -t snapshot
- Dzfs list -t snapshot pool1/data
- Ezfs destroy pool1/data@now
- Fzfs destroy snapshot pool1/data@now
Correct Answer:
ADE
A: Snapshots are created by using the zfs snapshot command, which takes as its only argument the name of the snapshot to create.
D: You can list snapshots as follows:
# zfs list -t snapshot
E: Snapshots are destroyed by using the zfs destroy command. For example:
# zfs destroy tank/home/ahrens@now
ADE
A: Snapshots are created by using the zfs snapshot command, which takes as its only argument the name of the snapshot to create.
D: You can list snapshots as follows:
# zfs list -t snapshot
E: Snapshots are destroyed by using the zfs destroy command. For example:
# zfs destroy tank/home/ahrens@now
send
light_mode
delete
Question #15
Which three Installation option allow for a "hands free" and "unattended'" Installation of the Solaris 11 environment?
- AJumpstart
- BLiveCD
- CA text Installation over the network
- DAn Automated Installation performed on an x86 client
- EAn Automated Installation using media from a local DVD or USB drive
- FAn Automated Installation using a networked repository
Correct Answer:
DEF
Oracle Solaris 11 uses Automated Installer (AI) for unattended installations.
Unattended installations are possible by placing the contents of the AI Image media (or ISO image contents from a download) on an AI server.
Incorrect answers:
A: Jumpstart used for Solaris 10.
B: LiveCD is used for hands-on installation.
Reference: Differences between Oracle Solaris 10 and 11 for System Administrators http://www.oracle.com/technetwork/server-storage/solaris11/overview/solaris-matrix-1549264.html
DEF
Oracle Solaris 11 uses Automated Installer (AI) for unattended installations.
Unattended installations are possible by placing the contents of the AI Image media (or ISO image contents from a download) on an AI server.
Incorrect answers:
A: Jumpstart used for Solaris 10.
B: LiveCD is used for hands-on installation.
Reference: Differences between Oracle Solaris 10 and 11 for System Administrators http://www.oracle.com/technetwork/server-storage/solaris11/overview/solaris-matrix-1549264.html
send
light_mode
delete
All Pages