Unit 12 Quiz Linux
Upon running the ifconfig command, the IP address is listed along with the subnet mask in dotted decimal notation listed as 255.255.255.224. You have installed a remote access software that has an address field that requires the address to be configured in CIDR notation. Which of the following is the equivalent CIDR notation for the subnet mask listed? /23 /24 /27 /28
/27
Which of the following files does the hostnamectl command modify to set the hostname on a machine? /etc/hostname /etc/host.conf /etc/hosts.conf /etc/hostname.conf
/etc/hostname
You currently have a Linux system configured to check the /etc/hosts file before trying to contact a DNS server to resolve host names. You want to reverse the configuration so that it checks with a DNS server before falling back to the /etc/hosts file. Which of the following files should you modify to make this possible? /etc/hosts /etc/nsswitch.conf /etc/resolv.conf /etc/named.conf
/etc/nsswitch.conf
What is the complete path and filename of the file where ports and their associated protocols are defined? ___________
/etc/services
Which of the following is a valid APIPA address? 127.0.0.1 169.254.38.101 10.11.12.13 192.168.1.17
169.254.38.101
The output of the ifconfig shows a HWaddr expressed in hexadecimal. How many bits is the hardware address shown made up of? 8 32 48 128
48
Which of the following ports would be used to resolve a domain name to an IP address? 443 23 53 69
53
What is the most commonly used LAN protocol? UDP/IP IPX/SPX TCP/IP DLC
TCP/IP
You have set up a TFTP server to support PXE booting of several workstations. Which of the following protocols would this setup make use of? TCP UDP ICMP IGMP
UDP
Which of the following can be used to graphically remotely administer a Linux machine? RDP Telnet FTP VNC
VNC
Which of the following types of technologies will create a tunneled encrypted connection from a remote location into a corporate network to be able to access resources as if the user was physically connected to the LAN? ADSL VPN NTP VLAN
VPN
Which of the following are valid statements in the /etc/resolv.conf file? (Choose two.) domain comptia.org order hosts, bind 10.1.15.60 server10 nameserver 10.1.1.4
domain comptia.org nameserver 10.1.1.4
Which of the following commands will display detailed information for network hardware? lsnet hwdisp --network lshw --net ethtool
ethtool
Which of the following is the keyword that should be listed after the hosts statement in the /etc/nsswitch.conf file so that the system will consult the /etc/hosts file to resolve a name to an IP address? local files hosts etchosts
files
Which of the following will display entries from the Name Service Switch libraries? nsslist nss getent dispdet
getent
You run the command hostname server1 and issue the reboot command. You notice that the host name has reverted back to what it was before the reboot. Which of the following commands should you have used to change the host name instead? ifconfig server1 host server1 hostnamectl set-hostname server1 set hostname="server1"
hostnamectl set-hostname server1
The system administrator has shut ethernet interface eth0 down while making some changes to the system. Which of the following commands can they use to bring the network connection back up? netctl eth0 up ifup eth0 int eth0 up interface eth0 --status up
ifup eth0
When connecting to a host via SSH for the first time, the user is prompted to accept the encryption fingerprint for the target computer which is stored in ___________ in the ~/.ssh/ directory.
known_hosts
Which of the following commands will show active UDP connections on a Linux system? (Choose all that apply.) netstat -u netstat --udp netstat -t udp netstat udp
netstat -u netstat --udp
On a system running NetworkManager, which of the following commands can be used to view or modify connection information? netman nm netctonf nmcli
nmcli
Which of the following commands will send 4 ICMP echo requests to a remote host named server1 to determine the round trip time it takes a packet to travel? ping -4 server1 ping server1 ping -c 4 server1 ping -n 4 server1
ping -c 4 server1
Which of the following commands can be used to display socket information out to the terminal screen? opensocks ss woolsocks sstat
ss
Which of the following commands can be used to trace an IPv6 route? (Choose two.) trace6 traceroute6 tracert6 tracepath6
traceroute6 tracepath6