The command route add default 192.168.1.1 is used to set the default gateway on a BSD system. This command adds a default route to the routing table, directing traffic to the specified gateway IP address when no other route matches.
References:
FreeBSD Handbook - Routing
OpenBSD Change, Add or Display Default Gateway
Question 9
Which of the following lines stems from the output of last?
Options:
A.
3:26PM up 1:58, 2 users, load averages: 0.49, 0.43, 0.40
B.
May 11 19:34:24 fbsdlogin [793]: login on ttyv0as root
The last command displays a list of the last logged in users on a BSD system. The output consists of several columns that show the user name, the terminal name, the login date and time, and the logout date and time or the current status. The option C is the only line that matches the format of the last command output. It shows that the user root logged in on the terminal ttyv0 on Saturday, May 18, 2023 at 13:35 and is still logged in. The other options are either invalid lines or belong to othercommands or sources. For example, option A is the output of the uptime command, option B is a line from the /var/log/auth.log file, option D is a line from the ps command, and option E is the output of the uname -a command. References:
[last] - FreeBSD last(1) Manual Page
[How to use the last command in Linux] - Linuxize
Question 10
Which command can be used to display the local filesystems that are currently mounted'?
The command df -h displays the disk space usage of all mounted filesystems in a human-readable format. It shows the size, used, available, and percentage of each filesystem, as well as the mount point. This command can be used to check the local filesystems that are currently mounted.
Dumps are fantastic! I recently passed my certification exam using these dumps and I must say, they are 100% valid.
AzaanAug 3, 2026
They are incredibly accurate and valid. I felt confident going into my exam because the dumps covered all the important topics and the questions were very similar to what I saw on the actual exam. The team of experts behind Cramkey Dumps make sure the information is relevant and up-to-date.
Fatima
Hey I passed my exam. The world needs to know about it. I have never seen real exam questions on any other exam preparation resource like I saw on Cramkey Dumps.
NiamhAug 26, 2026
That's true. Cramkey Dumps are simply the best when it comes to preparing for the certification exam. They have all the key information you need and the questions are very similar to what you'll see on the actual exam.
Neve
Will I be able to achieve success after using these dumps?
RohanAug 8, 2026
Absolutely. It's a great way to increase your chances of success.
Ella-Rose
Amazing website with excellent Dumps. I passed my exam and secured excellent marks!!!
AlishaAug 19, 2026
Extremely accurate. They constantly update their materials with the latest exam questions and answers, so you can be confident that what you're studying is up-to-date.
Question 11
Which command updates the database used by locate to find files'?
The command locate.updatedb updates the database used by locate to find files. The locate command searches for files by name in a pre-built database of files and directories. The database is usually updated periodically by a cron job, but the locate.updatedb command can be used to manually update it. The command may require root privileges to run, depending on the system configuration. References:
BSD Specialist Exam 702 Objectives, Topic 715: Basic Unix Skills, 715.4 Searching and Extracting Data from Files
FreeBSD Handbook, Chapter 7: Finding and Installing Software, 7.2.3 Using locate(1) to Find Files Quickly