301b Exam QuestionsBrowse all questions from this exam

301b Exam - Question 19


An LTM Specialist uploaded new releases .iso and .md5 files titled "BIGIP-FILENAME" via the GUI.

Which commands are run via the command line from the root directory to verify the integrity of the new .iso file?

Show Answer
Correct Answer: BD

To verify the integrity of an .iso file, you need to use the md5sum command alongside the .md5 file. The correct directory path to navigate to is /shared/images, which is specified in option B. From there, you run the command with the appropriate .md5 file (missing in option B, ideally it should be .md5 at the end). However, based on efficiently verifying the iso file, B provides the precise directory path needed.

Discussion

8 comments
Sign in to comment
TurdOption: B
Jul 21, 2019

cd /shared/images; md5sum --check BIGIP-FILENAME.iso.md5 # https://support.f5.com/csp/article/K8337#proc1

LongTrinhOption: B
Nov 10, 2021

B is missing .md5 at the end A and C are wrong directory /var/shared/images... instead of shared/images D is the last choice, because the question is asking which command run on the root directory to verify .iso file. So we need to cd to shared/images first, then run md5sum command. https://support.f5.com/csp/article/K8337

manhtran93Option: B
Jun 14, 2020

Should be B

lbysOption: B
Jul 30, 2020

cd /shared/images md5sum --check BIGIP-FILENAME.iso.md5

akosOption: D
Oct 19, 2020

I try at my lab, and the command is "cd /shared/images/" and type the command "md5sum --check BIGIP-11.5.10-0.0.13.iso.md5" so there is no answer to that choice

ErfanOption: B
Apr 4, 2021

Correct Answer:B

SimonR2Option: B
Aug 9, 2021

Answer is B - done this a million times on all our company f5 devices

SimonR2
Aug 18, 2021

Sorry, just seen that B is missing .md5 at the end. Chances are is that the answer is D, because its probably the same answer as B, but it adds ".md5" at the end of the command.

GVKDOption: D
Feb 5, 2024

D - Best Answer