Provide steps how to Record VM’s IP Configuration Information
you will use commands on your CyberOps Workstation VM to find and record the MAC and
IP addresses of your VM’s virtual network interface card (NIC), the IP address of the specified default gateway, and the DNS server IP address specified for the PC. Record this information in the table provided. The information will be used in parts of this lab with packet analysis.
a. Open a terminal in the VM. Enter ifconfig at the prompt to display interface information.
```
[analyst@secOps ~]$ ifconfig
enp0s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.19 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::997f:9b16:5aae:1868 prefixlen 64 scopeid 0x20<link>
ether 08:00:27:c9:fa:a1 txqueuelen 1000 (Ethernet)
RX packets 1381 bytes 87320 (85.2 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 24 bytes 1857 (1.8 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 19 base 0xd000
<some output omitted>
```
b. At the terminal prompt, enter cat /etc/resolv.conf to determine the DNS server.
```
[analyst@secOps ~]$ cat /etc/resolv.conf
```
# Generated by resolvconf
nameserver 192.168.1.1
c. At the terminal prompt, enter netstat -r to display the IP routing table to the default
gateway IP address.
```
[analyst@secOps ~]$ netstat -r
```
Kernel IP routing table
Note: The DNS IP address and default gateway IP address are often the same, especially in small networks.However, in a business or school network, the addresses would most likely be different.
You might also like to view...
This manipulator is used to establish a field width for the value that follows it:
a. field_width b. set_field c. setw d. iomanip e. None of these
You can use the procedures in a database’s standard modules from anywhere in the database. _________________________
Answer the following statement true (T) or false (F)
Which of the following is true about a hash table?
a. A hash table has Big-O O(1) constant insert and search operation performance b. A hash table does not have duplicate data c. A hash table sorts the values d. A hash table has a separate linked list for the key and the value in the key-value pairs
Groups related elements in a form, making it easier to follow.
a. Form tag b. Form elements c. Fieldset element d. Legend element