Courseiva

Splunk Enterprise Certified Admin (SPLK-1003) (SPLK-1003) (SPLK-1003) — Questions 151202

202 questions total · 3pages · All types, answers revealed

Page 2

Page 3 of 3

151
MCQmedium

You need to enable multi-factor authentication (MFA) for your Splunk instance. Where is this usually integrated?

A.In user-prefs.conf
B.Inside authorize.conf
C.Via SAML integration with an Identity Provider.
D.By modifying the 'admin' user account in the CLI.
AnswerC

SAML is the standard way to delegate MFA to an enterprise IdP.

Why this answer

MFA is typically integrated through the SAML Identity Provider, or via Duo Security integration if using the specific Splunk plugin.

152
MCQeasy

An administrator needs to monitor a local text file on a Windows server and send the data to a Splunk indexer. Which component is the most efficient choice for this task?

A.Deployment Server
B.Heavy Forwarder
C.Splunk Light
D.Universal Forwarder
AnswerD

The Universal Forwarder is lightweight and specifically optimized for data collection and forwarding.

Why this answer

The Universal Forwarder is designed for minimal resource consumption when collecting data and forwarding it to an indexer.

153
MCQmedium

When should you use the 'volume' configuration in indexes.conf?

A.To increase search speed.
B.To manage shared storage limits across multiple indexes.
C.To replicate data between indexers.
D.To encrypt index data.
AnswerB

Volumes allow defining a total size limit for a set of indexes.

Why this answer

Volumes are used to group multiple indexes together to manage their shared storage capacity constraints.

154
MCQhard

If a search head cluster member cannot access an indexer's bucket, what should you verify first?

A.The indexer's license status.
B.The OS version of the search head.
C.The replication status and indexer clustering state.
D.The search head's RAM.
AnswerC

If a bucket is not replicated or is in an invalid state, the search head cannot access it.

Why this answer

Bucket access in a cluster is often related to the replication factor and the status of the bucket on the indexer peers.

155
MCQhard

You need to ensure that a Universal Forwarder continues to collect data during a network outage between the forwarder and the indexer. Which feature should be enabled in outputs.conf?

A.Forwarder queue buffering
B.Indexer acknowledgment
C.Persistent queues
D.Auto-load balancing
AnswerC

Persistent queues allow data to be written to disk, preventing data loss during network interruptions.

Why this answer

Persistent queuing allows the forwarder to store data locally on disk when the receiving indexer is unreachable.

156
MCQmedium

When using transforms.conf to extract fields, what is the 'SOURCE_KEY' setting used for?

A.To specify which field the regex is applied to
B.To specify the index
C.To define the sourcetype
D.To set the time format
AnswerA

It allows redirection of the regex engine to a specific field.

Why this answer

SOURCE_KEY allows you to specify a different field (or the whole raw event) to apply the regex to, instead of the default '_raw'.

157
Multi-Selecthard

Which TWO of the following are true regarding the Deployment Server?

Select 2 answers
A.It manages configurations for deployment clients.
B.It organizes deployment clients into server classes.
C.It can only manage forwarders on the same subnet.
D.It is a required component for all Splunk deployments.
E.It is responsible for indexing raw logs.
AnswersA, B

The DS manages forwarder configurations.

Why this answer

The DS distributes apps to deployment clients and keeps them in sync.

158
Multi-Selecteasy

Which THREE of the following items are considered Knowledge Objects in Splunk?

Select 3 answers
A.Network cables.
B.Hard drives.
C.Saved searches.
D.Dashboards.
E.Alerts.
AnswersC, D, E

Saved searches are persistent queries.

Why this answer

Saved searches, dashboards, and alerts are all standard Splunk Knowledge Objects.

159
MCQeasy

What is the primary function of the 'Indexer Cluster' feature?

A.To increase the web interface speed.
B.To provide data replication and high availability.
C.To speed up search queries across multiple head nodes.
D.To manage user permissions for index access.
AnswerB

Indexer clusters ensure data is replicated to prevent loss.

Why this answer

Indexer Clustering provides data high availability and replication across multiple indexers.

160
MCQeasy

Which menu path in Splunk Web is used to manage existing user roles?

A.Settings > Access controls > Roles
B.Settings > Authentication method
C.Settings > Server settings
D.Settings > Access controls > Users
AnswerA

This is the correct path for role management.

Why this answer

Settings > Access controls > Roles is the path to manage roles.

161
MCQhard

What happens if you have a syntax error in a .conf file?

A.The system halts immediately
B.The configuration will be ignored and a warning logged
C.It is ignored silently
D.Splunk will automatically fix the syntax
AnswerB

Splunk reports syntax errors in the logs and ignores the problematic entries.

Why this answer

Splunk generally skips the malformed stanza or the entire file, depending on the severity, often logging a warning in splunkd.log.

162
MCQeasy

To ensure a Universal Forwarder is using the correct index, where is the 'index' attribute defined?

A.inputs.conf
B.props.conf
C.outputs.conf
D.server.conf
AnswerA

The index assignment occurs at the input level.

Why this answer

The index for a data source is defined in inputs.conf.

163
MCQhard

If you want to move the index data directory to a new partition, what setting in indexes.conf must be updated?

A.dataDir
B.homePath
C.maxTotalDataSizeMB
D.indexPool
AnswerB

homePath specifies the directory where data is stored.

Why this answer

The 'homePath' (or 'coldPath'/'thawedPath') defines the physical location of the data on the disk.

164
MCQeasy

Which of the following is a 'capability' in Splunk?

A.SAML_Auth
B.Modify User.
C.edit_own_objects
D.View Index.
AnswerC

This is a standard Splunk capability.

Why this answer

'edit_own_objects' is a built-in capability that allows users to modify their own saved searches and dashboards.

165
Multi-Selectmedium

Which TWO of the following are valid ways to monitor the status of a Splunk instance?

Select 2 answers
A.Checking the /tmp directory for lock files.
B.Reading the indexer cluster's raw binary data.
C.Pinging the forwarder's local web port.
D.Running the 'splunk status' command.
E.Using the Monitoring Console app in Splunk Web.
AnswersD, E

The CLI tool is the standard method.

Why this answer

Monitoring can be done via the CLI 'splunk status' or the Monitoring Console in the GUI.

166
Multi-Selectmedium

Which TWO components must be configured on a Universal Forwarder to ensure data reaches the Indexer?

Select 2 answers
A.outputs.conf
B.props.conf
C.indexes.conf
D.web.conf
E.inputs.conf
AnswersA, E

Defines the destination Indexer.

Why this answer

A forwarder needs to know what to collect (inputs.conf) and where to send it (outputs.conf).

167
MCQmedium

What is the purpose of the 'whitelist' and 'blacklist' attributes in a serverclass.conf file?

A.To prevent unauthorized users from accessing the UI.
B.To filter the types of logs collected.
C.To filter which forwarders receive the app.
D.To limit the network bandwidth usage.
AnswerC

This provides granular control over deployment targets.

Why this answer

These attributes filter which clients receive specific deployment apps.

168
MCQhard

A customer wants to split their 1TB license into two 500GB pools for different departments. How is this achieved?

A.By using different license keys on indexers.
B.By creating two license pools on the License Master.
C.By creating two separate License Masters.
D.By modifying the license file directly.
AnswerB

Pools allow for quota management by assigning indexers to specific groups.

Why this answer

License pools are defined on the License Master and are limited by quotas per pool.

169
Multi-Selectmedium

Which TWO factors contribute to the 'frozen' state of a bucket?

Select 2 answers
A.The bucket age exceeds frozenTimePeriodInSecs.
B.The bucket is locked by a search head.
C.The index reaches maxTotalDataSizeMB.
D.The index reaches maxHotBuckets.
E.The license master is unreachable.
AnswersA, C

Time-based limit.

Why this answer

Buckets move to frozen when they exceed the time-based retention policy or the maximum total size limit.

170
MCQeasy

A user reports that a setting in props.conf is not being applied. You want to see the final merged configuration for a specific sourcetype on a specific host. Which tool should you use?

A.splunk show-config
B.splunk cmd btool props list --debug
C.splunk edit props
D.splunk list configs
AnswerB

This command correctly lists the merged props.conf settings.

Why this answer

splunk btool is the standard CLI utility to show the merged configuration files for a specific context.

171
MCQhard

An administrator needs to manually move a bucket to frozen state immediately for compliance reasons. What is the best method?

A.Delete the bucket folder from the OS.
B.Update the retention policy to 0 seconds and restart.
C.Rename the bucket folder to start with 'frozen'.
D.Use the 'splunk edit index' command.
AnswerB

Setting the retention to 0 forces the indexer to roll buckets to frozen on the next maintenance cycle.

Why this answer

The 'splunk enable/disable/remove' commands don't support manual freezing; the 'splunk revert' or manual bucket removal is not supported, but modifying the frozenTimePeriodInSecs is the formal way to trigger a policy change.

172
Multi-Selecthard

Which THREE features are associated with Indexer Clustering?

Select 3 answers
A.Cluster Master.
B.Search affinity.
C.Data model encryption.
D.Universal forwarder load balancing.
E.Bucket replication.
AnswersA, B, E

Orchestrates the cluster.

Why this answer

Clustering involves bucket replication, search affinity, and the Cluster Master/Manager to manage the state.

173
MCQeasy

Which file stores the definitions of roles and their associated capabilities?

A.authorize.conf
B.indexes.conf
C.authentication.conf
D.limits.conf
AnswerA

Roles and capabilities reside in authorize.conf.

Why this answer

authorize.conf is the configuration file that manages roles and capabilities.

174
Multi-Selectmedium

Which TWO attributes in props.conf are commonly used to handle multiline events?

Select 2 answers
A.INDEXED_EXTRACTION
B.TIME_FORMAT
C.TRANSFORMS-routing
D.BREAK_ONLY_BEFORE
E.SHOULD_LINEMERGE
AnswersD, E

This defines where a new event starts in a multiline block.

Why this answer

BREAK_ONLY_BEFORE and SHOULD_LINEMERGE are used for multiline event processing.

175
MCQeasy

Where does an administrator configure the License Master URL for an indexer?

A.In the license.conf file.
B.In the server.conf file.
C.In the web.conf file.
D.In the Splunk Web UI under Licensing.
AnswerB

The master URI is defined in the [license] stanza of server.conf.

Why this answer

The URL is configured in the server.conf file of the indexer (the slave).

176
MCQmedium

You are configuring a Heavy Forwarder to mask sensitive credit card information before the data reaches the indexer. Which configuration file must you modify to implement this data transformation?

A.server.conf
B.transforms.conf
C.inputs.conf
D.outputs.conf
AnswerB

transforms.conf is used to define the regular expression-based masking rules.

Why this answer

Data transformations such as routing, filtering, and masking occur on the Heavy Forwarder via transforms.conf and props.conf.

177
MCQhard

You are troubleshooting a parsing issue where multiline events are not being grouped correctly. Where in the configuration files would you adjust the 'BREAK_ONLY_BEFORE' setting?

A.outputs.conf
B.inputs.conf
C.indexes.conf
D.props.conf
AnswerD

props.conf is where parsing rules like multiline handling are defined.

Why this answer

This setting is defined in props.conf under the specific sourcetype stanza.

178
MCQmedium

If you want to prevent a user from using the 'delete' command, which capability must be removed from their assigned role?

A.delete
B.edit_search
C.can_delete_data
D.admin_all_objects
AnswerA

The 'delete' capability is specifically required to use the delete command.

Why this answer

The 'delete' capability is required to run the 'delete' search command.

179
MCQhard

When using btool, what does the output show by default?

A.Only the differences from defaults
B.The raw file contents
C.Only the changes made in /local
D.The merged configuration of all files
AnswerD

btool outputs the final, calculated configuration state.

Why this answer

By default, btool displays all configuration stanzas and settings merged from all files in the precedence order.

180
Multi-Selectmedium

Which TWO of the following are true about the Universal Forwarder?

Select 2 answers
A.It is designed to have a minimal resource footprint.
B.It can only forward data to one indexer at a time.
C.It requires a full Splunk Enterprise license.
D.It performs no parsing of the data it collects.
E.It performs full data parsing and indexing.
AnswersA, D

The UF is intentionally lightweight.

Why this answer

Universal forwarders perform no parsing and have a minimal footprint.

181
MCQmedium

You are configuring a Universal Forwarder to send logs to an Indexer Cluster. Where should you define the outputs.conf file to ensure the forwarder correctly balances traffic across all indexers?

A.$SPLUNK_HOME/etc/system/default/
B.$SPLUNK_HOME/etc/manager/local/
C.$SPLUNK_HOME/etc/system/local/
D.$SPLUNK_HOME/etc/apps/search/local/
AnswerC

This is the correct location for global configuration overrides on a forwarder.

Why this answer

The outputs.conf file on the Universal Forwarder should contain the indexer cluster master's discovery URI to obtain the indexer list.

182
MCQmedium

How can you increase the amount of raw data stored in a single bucket before it rolls?

A.Modify 'maxDataSize'.
B.Modify 'maxTotalDataSizeMB'.
C.Modify 'frozenTimePeriodInSecs'.
D.Modify 'homePath'.
AnswerA

Increasing 'maxDataSize' allows more data per bucket.

Why this answer

The 'maxDataSize' setting dictates the size threshold for rolling a bucket from hot to warm.

183
MCQmedium

Why might an administrator need to use the 'splunk edit licenser-localslave' command?

A.To reset the license violation counter.
B.To create a new license pool.
C.To configure the local instance to be a license slave.
D.To delete an expired license.
AnswerC

This command points the instance to a license master.

Why this answer

This command allows the local instance to be configured as a license slave if it wasn't during installation.

184
Multi-Selecthard

Which TWO of the following are true regarding Indexer Clustering?

Select 2 answers
A.It allows search heads to search across all indexers.
B.It eliminates the need for any forwarders.
C.It automatically handles the installation of Splunk software.
D.It requires at least one Master node.
E.The Master node performs the actual indexing.
AnswersA, D

Search heads query the cluster to get results from all relevant indexers.

Why this answer

Indexer clusters use a master to coordinate replication and ensure high availability.

185
Multi-Selectmedium

Which TWO components are involved in managing Data Model acceleration?

Select 2 answers
A.Deployment Server
B.Indexer
C.Search Head
D.License Master
E.Heavy Forwarder
AnswersB, C

Stores and builds the summary.

Why this answer

The indexers perform the work of building the acceleration, while the search head manages the acceleration configuration.

186
MCQhard

An administrator wants to prevent events from a specific IP address from being stored in an index. Which file and stanza would you use for this indexing-time filter?

A.inputs.conf: [monitor://...]
B.outputs.conf: [tcpout]
C.props.conf: [default]
D.transforms.conf: [setnull]
AnswerD

The 'setnull' queue in transforms.conf is the standard way to drop data.

Why this answer

You must use transforms.conf with a regex rule and link it to props.conf to discard data at index time.

187
MCQmedium

In props.conf, what does the 'REPORT-' prefix signify?

A.It triggers an alert
B.It defines an index-time extraction
C.It defines a search-time extraction
D.It defines a line-breaking rule
AnswerC

REPORT- defines search-time extractions associated with transforms.

Why this answer

REPORT- is used to associate a report-time extraction (often defined in transforms.conf) with a sourcetype.

188
MCQhard

You want to prevent an index from growing beyond 10,000,000 events. Which setting is appropriate?

A.maxTotalDataSizeMB
B.maxEventCount
C.maxBuckets
D.It is not possible to limit by event count via indexes.conf.
AnswerD

Splunk indexes are managed by time and disk space, not event volume.

Why this answer

maxTotalDataSizeMB is for size, but maxHotSpanSecs or other settings do not limit by event count. However, maxWarmDBCount and maxHotBuckets can influence retention, but there is no direct 'maxEventCount' setting in indexes.conf. Therefore, you must use a scripted approach or external monitoring.

Wait—actually, checking the docs, there is no event count limit. The best answer is that it cannot be done via indexes.conf.

189
MCQmedium

When configuring a Deployment Client, what must be defined in deploymentclient.conf?

A.The index location.
B.deploymentServer URI
C.The list of indexers.
D.The password for the admin user.
AnswerB

This allows the client to phone home to the server.

Why this answer

The client must specify the URI and port of the Deployment Server.

190
MCQhard

You are troubleshooting a connection issue from a forwarder to an indexer. Which log file on the indexer would best show connection attempts from forwarders?

A.splunkd.log
B.audit.log
C.web_service.log
D.metrics.log
AnswerA

splunkd.log records service activity and connection events.

Why this answer

splunkd.log is the main log file that records all network connection events and errors for the Splunk service.

191
Multi-Selecthard

Which THREE attributes can be used in serverclass.conf to define target clients?

Select 3 answers
A.whitelist
B.portFilter
C.indexFilter
D.machineTypesFilter
E.blacklist
AnswersA, D, E

Identifies clients that should receive the app.

Why this answer

Filters can be applied using hostnames, IP addresses, or machine classes.

192
Multi-Selecthard

Which THREE configuration files are most critical for defining how data is ingested and parsed?

Select 3 answers
A.transforms.conf
B.server.conf
C.props.conf
D.indexes.conf
E.inputs.conf
AnswersA, C, E

Advanced parsing and routing.

Why this answer

inputs.conf, props.conf, and transforms.conf form the core of data processing.

193
Multi-Selectmedium

Which TWO settings in outputs.conf are recommended for load balancing data across multiple indexers?

Select 2 answers
A.serverName
B.autoLBFrequency
C.sslPassword
D.indexerList
E.index
AnswersB, D

Controls the load balancing rotation.

Why this answer

To balance load, one must provide a list of indexers and define the autoLB frequency.

194
MCQmedium

When using a Heavy Forwarder to perform data masking, which stanza in transforms.conf is used to define the replacement regex?

A.[my_masking_rule]
B.[index_rule]
C.[forward_rule]
D.[input_rule]
AnswerA

This defines the transformation rule applied to the data stream.

Why this answer

The REGEX and FORMAT attributes within a transforms.conf stanza are used for data masking.

195
MCQeasy

What command is used to check the health and integrity of an index bucket?

A.splunk fsck
B.splunk status
C.splunk check
D.splunk validate
AnswerA

This is the correct command for index integrity checks.

Why this answer

The 'splunk fsck' command is designed to perform file system checks on buckets.

196
MCQeasy

Which of the following describes the purpose of a License Pool?

A.To enable data replication across indexers.
B.To speed up data ingestion.
C.To increase the total license volume.
D.To distribute license quota among indexer groups.
AnswerD

Pools allow for quota partitioning.

Why this answer

License pools allow an administrator to allocate specific license quotas to different indexer groups.

197
MCQhard

You are configuring a scripted input to run a python script. Where is the best location to store this script on a Universal Forwarder?

A.$SPLUNK_HOME/var/run/
B./opt/scripts/
C./tmp/
D.$SPLUNK_HOME/etc/apps/my_app/bin/
AnswerD

Storing in the app directory allows for proper bundling and distribution.

Why this answer

Scripts should reside within an app directory to ensure they are handled correctly by the deployment server and permissions.

198
Multi-Selecthard

Which THREE factors can impact the performance of a Universal Forwarder?

Select 3 answers
A.Browser type used for access
B.Network bandwidth limits
C.The number of users logged in
D.Number of active file monitors
E.Disk I/O contention
AnswersB, D, E

Data throughput is limited by network capacity.

Why this answer

Performance can be impacted by network bandwidth, CPU usage from heavy parsing if misconfigured, and I/O wait on disk.

199
MCQmedium

You need to perform a regex-based routing operation to send data to different indexes based on the host. Which file must be configured to define the routing regex?

A.transforms.conf
B.indexes.conf
C.props.conf
D.inputs.conf
AnswerA

The routing regex is defined in transforms.conf.

Why this answer

transforms.conf is where the regex logic resides, while props.conf references the transform.

200
MCQeasy

Which license type does not support license clustering?

A.Free License
B.Enterprise License
C.Trial License
D.Developer License
AnswerA

Free licenses do not support distributed environments or pools.

Why this answer

The Free license is a standalone, single-instance license and does not support clustering or license pools.

201
MCQeasy

How do you restart the Splunk service on a Linux-based Universal Forwarder?

A.service splunk stop
B.kill -9 $(pgrep splunk)
C.reboot
D.$SPLUNK_HOME/bin/splunk restart
AnswerD

This is the correct binary command to restart the service.

Why this answer

The standard command is 'splunk restart'.

202
MCQhard

When configuring 'LDAP Strategy', what is the purpose of the 'User Base DN'?

A.To define the authentication port.
B.To define the administrator's password.
C.To specify the LDAP server IP address.
D.To define the root search path for users in LDAP.
AnswerD

This sets the directory tree scope for user lookups.

Why this answer

The 'User Base DN' specifies the node in the LDAP directory where Splunk should begin searching for user objects.

Page 2

Page 3 of 3

All pages