CCNA 200-125 V3 Exam ACCESS LIST QUESTIONS 2 Question 10 Refer to the exhibit. What will happen to HTTP traffic coming from the Internet that is destined for 172.16.12.10 if the traffic is processed by this ACL? router#show access-lists Extended IP access list 110 10 deny tcp 172.16.0.0 0.0.255.255 any eq telnet 20 deny tcp 172.16.0.0 0.0.255.255 any eq smtp 30 deny tcp 172.16.0.0 0.0.255.255 any eq http 40 permit tcp 172.16.0.0 0.0.255.255 any A. Traffic will be dropped per line 30 of the ACL. B. Traffic will be accepted per line 40 of the ACL. C. Traffic will be dropped, because of the implicit deny all at the end of the ACL. D. Traffic will be accepted, because the source address is not covered by the ACL. Answer: C Explanation The syntax of an extended access list is: access-list access-list-number {permit | deny} protocol source {source-mask} destination {destinati...
Top interview question and answers for Linux administrator Part - 3
Get link
Facebook
X
Pinterest
Email
Other Apps
Guys Subscribe our YouTube Channel as well
1) What is Linux?
Linux
is an operating system based on UNIX, and was first introduced by Linus
Torvalds. It is based on the Linux Kernel, and can run on different hardware
platforms manufactured by Intel, MIPS, HP, IBM, SPARC and Motorola. Another
popular element in Linux is its mascot, a penguin figure named Tux.
2) What is the difference between UNIX
and LINUX?
Unix
originally began as a propriety operating system from Bell Laboratories, which
later on spawned into different commercial versions. On the other hand, Linux
is free, open source and intended as a non-propriety operating system for the
masses.
3) What is BASH?
BASH
is short for Bourne Again SHell. It
was written by Steve Bourne as a replacement to the original Bourne Shell
(represented by /bin/sh). It combines all the features
from the original version of Bourne Shell, plus additional functions to make it
easier and more convenient to use. It has since been adapted as the default
shell for most systems running Linux.
4) What is Linux Kernel?
The
Linux Kernel is a low-level systems software whose main role is to manage
hardware resources for the user. It is also used to provide an interface for
user-level interaction.
5) What is LILO?
LILO
is a boot loader for Linux. It is used mainly to load the Linux operating
system into main memory so that it can begin its operations.
6) What is a swap space?
A
swap space is a certain amount of space used by Linux to temporarily hold some
programs that are running concurrently. This happens when RAM does not have
enough memory to hold all programs that are executing.
7)
What is the advantage of open source?
Open source allows you to
distribute your software, including source codes freely to anyone who is
interested. People would then be able to add features and even debug and
correct errors that are in the source code. They can even make it run better,
and then redistribute these enhanced source code freely again. This eventually
benefits everyone in the community.
8 ) What are the basic components of
Linux?
Just
like any other typical operating system, Linux has all of these components:
kernel, shells and GUIs, system utilities, and application program. What makes
Linux advantageous over other operating system is that every aspect comes with
additional features and all codes for these are downloadable for free.
9) Does it help for a Linux system to
have multiple desktop environments installed?
In
general, one desktop environment, like KDE or Gnome, is good enough to operate
without issues. It’s all a matter of preference for the user, although the
system allows switching from one environment to another. Some programs will
work on one environment and not work on the other, so it could also be
considered a factor in selecting which environment to use.
10) What is the basic difference between
BASH and DOS?
The
key differences between the BASH and DOS console lies in 3 areas:
– BASH commands are case sensitive while DOS commands are not;
– under BASH, / character is a directory separator and \ acts as an escape
character. Under DOS, / serves as a command argument delimiter and \ is the
directory separator
– DOS follows a convention in naming files, which is 8 character file name
followed by a dot and 3 character for the extension. BASH follows no such
convention.
11) What is the importance of the GNU
project?
This
so-called Free software movement allows several advantages, such as the freedom
to run programs for any purpose and freedom to study and modify a program to
your needs. It also allows you to redistribute copies of a software to other
people, as well as freedom to improve software and have it released to the
public.
12) Describe the root account.
The
root account is like a systems administrator account, and allows you full
control of the system. Here you can create and maintain user accounts,
assigning different permissions for each account. It is the default account
every time you install Linux.
13) What is CLI?
CLI
is short for Command Line Interface. This interface allows user to type
declarative commands to instruct the computer to perform operations. CLI offers
an advantage in that there is greater flexibility. However, other users who are
already accustom with using GUI find it difficult to remember commands
including attributes that come with it.
14) What is GUI?
GUI,
or Graphical User Interface, makes use of images and icons that users click and
manipulate as a way of communicating with the computer. Instead of having to
remember and type commands, the use of graphical elements makes it easier to
interact with the system, as well as adding more attraction through images,
icons and colors.
15) How do you open a command prompt when
issuing a command?
To
open the default shell (which is where the command prompt can be found), press
Ctrl-Alt-F1. This will provide a command line interface (CLI) from which you
can run commands as needed.
16) How can you find out how much memory
Linux is using?
From
a command shell, use the “concatenate” command: cat
/proc/meminfofor
memory usage information. You should see a line starting something like: Mem:
64655360, etc.
This
is
the total memory Linux thinks it has available to use.
17) What is typical size for a swap
partition under a Linux system?
The
preferred size for a swap partition is twice the amount of physical memory
available on the system. If this is not possible, then the minimum size should
be the same as the amount of memory installed.
18) What are symbolic links?
Symbolic
links act similarly to shortcuts in Windows. Such links point to programs,
files or directories. It also allows you instant access to it without having to
go directly to the entire pathname.
19) Does the Ctrl+Alt+Del key combination work on Linux?
Yes,
it does. Just like Windows, you can use this key combination to perform a
system restart. One difference is that you won’t be getting any confirmation
message and therefore, reboot is immediate.
20) How do you refer to the parallel port
where devices such as printers are connected?
Whereas
under Windows you refer to the parallel port as the LPT port, under Linux you
refer to it as /dev/lp
. LPT1, LPT2 and LPT3 would therefore be referred to as /dev/lp0,
/dev/lp1,
or /dev/lp2
under Linux.
21) Are drives such as harddrive
and floppy drives represented with drive letters?
No.
In Linux, each drive and device has different designations. For example, floppy
drives are referred to as /dev/fd0
and /dev/fd1.
IDE/EIDE hard drives are referred to as /dev/hda,
/dev/hdb,
/dev/hdc,
and so forth.
22) How do you change permissions under
Linux?
Assuming
you are the system administrator or the owner of a file or directory, you can
grant permission using the chmod
command. Use + symbol to add permission or – symbol to deny permission, along
with any of the following letters: u (user), g (group), o (others), a (all), r
(read), w (write) and x (execute). For example the command chmodgo+rw
FILE1.TXT grants read and write access to the file FILE1.TXT, which is assigned
to groups and others.
23) In Linux, what names are assigned to
the different serial ports?
Serial
ports are identified as /dev/ttyS0 to /dev/ttyS7.
These are the equivalent names of COM1 to COM8 in Windows.
24) How do you access partitions under
Linux?
Linux
assigns numbers at the end of the drive identifier. For example, if the first
IDE hard drive had three primary partitions, they would be named/numbered, /dev/hda1,
/dev/hda2
and /dev/hda3.
25) What are hard links?
Hard
links point directly to the physical file on disk, and not on the path name.
This means that if you rename or move the original file, the link will not
break, since the link is for the file itself, not the path where the file is
located.
26) What is the maximum length for a
filename under Linux?
Any
filename can have a maximum of 255 characters. This limit does not include the
path name, so therefore the entire pathname and filename could well exceed 255
characters.
27)What are filenames that are preceded
by a dot?
In
general, filenames that are preceded by a dot are hidden files. These files can
be configuration files that hold important data or setup info. Setting these
files as hidden makes it less likely to be accidentally deleted.
28) Explain virtual desktop.
This
serves as an alternative to minimizing and maximizing different windows on the
current desktop. Using virtual desktops, each desktop is a clean slate where
you can open one or more programs. Rather than minimizing/restoring all those
programs as needed, you can simply shuffle between virtual desktops with
programs intact in each one.
29) How do you share a program across
different virtual desktops under Linux?
To
share a program across different virtual desktops, in the upper left-hand
corner of a program window look for an icon that looks like a pushpin. Pressing
this button will “pin” that application in place, making it appear in all
virtual desktops, in the same position onscreen.
30) What does a nameless (empty)
directory represent?
This
empty directory name serves as the nameless base of the Linux file system. This
serves as an attachment for all other directories, files, drives and devices.
Comments
Post a Comment