Using the nslookup command show how to do the following:
a- List the NS resource record(s) only and identify the computer name in the corresponding resource record
b- Write the command to list all resource records in a DNS table, for domain nwlab.edu?
c- Write the command to list all resource records with type A in a DNS table, for domain nwlab.edu?
d- Write the command to list all canonical names and aliases in the DNS server table?
(a) To check a specific DNS record, you need to specify the nslookup command, an optional record type (for example, A, MX, or TXT), and the host name that you want to check. By default the record type chosen is A if you leave to specify)
(b)
Commands:
nslookup
> set type=ANY
> nwlab.edu
(c)
nslookup
> set type=A
> nwlab.edu
(d)
nslookup >ls -a YOURDOMAINE >ls -t CNAME
Using the nslookup command show how to do the following: a- List the NS resource record(s)...
Can someone please help me with my Computer Network
homework.
1. Describe the behaviors of and the differences between persistent and non-persistent HTTP 2. List three application layer data transfer protocols used in email applications. Which one(s) are 3. A DNS resource record is specified as a 4 tuple: cName, Value, Type,>.Describe how should we interpret a DNS resource record given the four resource record types: A, NS, CNAME, and Mx. For this question, you can ignore the TTL field....
please give me clear picture Section 1: DNS nslookup The Domain Name System (DNS) translates hostnames to IP addresses, fulfilling a critical role in the Internet infrastructure. In this lab, we’ll take a closer look at the client side of DNS. Recall that the client’s role in the DNS is relatively simple – a client sends a query to its local DNS server, and receives a response back. Much can go on “under the covers,” invisible to the DNS clients,...
1. Provide a VERY short review for the ipconfig/ifconfig command. 2. Run the following command: ipconfig /all (Windows) ifconfig /all (Linux/MAC) Report the IP addresses of your DNS servers. These IPs could be IPv6 and/or IPv4, identify them accordingly. Provide a snapshot of the results. 3. Provide a VERY short review for the tracert/traceroute command. 4. Run the following command: tracert www.louvre.fr (Windows) traceroute www.louvre.fr (Linux/MAC) Report the number of hops and time needed to reach the remote location. Provide...
Cyber Security EXERCISE 1: One very simple tool to figure out if a “host” (any device with an address on a network) is turned on and communicating over the network is “PING.” Of course, system administrators can prevent hosts from responding to pings. DO: Check out the website: In Kali, open up the browser (Iceweasel). In the address bar type the URL http://www.foo.com to notice that there is a site configured with that domain. Open up the command line on...
Each (1-13) question is 5 points: 1. How many bits are in a MAC address?2. 3. How many bits are in an IPv4 IP address? 4. When using DSL modem to connect to the Internet, the data transmission shares the cabling with what other technology? 5. Which type of networking cable is more reliable, STP or UTP? Which is used more on LANs? 6. Which TCP/IP protocol that manages packet delivery guarantees that delivery? Which protocol does not guarantee delivery, but is faster? 7. Which...
You are to write a program name Bank.java that maintains a list of records containing names and balance of customers. The program will prompt the user for a command, execute the command, then prompt the user for another command. The commands must be chosen from the following possibilities: a Show all records r Remove the current record f Change the first name in the current record l Change the last name in the current record n Add a new record d ...
Using the following tables write a sql command:
List the full name and the total number of transactions handled
by the full time
employee. Rank your results in descending order on the total
number of transactions.
Table: MEMBERS Column Data Type Length Precision Scale Nullable MEMBERID NUMBER 4 0 No MFIRST VARCHAR2 25 No MLAST VARCHAR2 25 No STREET VARCHAR2 64 No CITY VARCHAR2 25 . No STATE VARCHAR2 2 . No ZIPCODE NUMBER 0 No CREDITLIMIT NUMBER 7 2...
The IPv6 addresses are followed by a % sign and a number; for example, %5 follows the first IP address. This number is called the zone ID or scope ID and is used to identify the interface in a list of interfaces for this computer. IPv6 addressing is designed so that a computer can self-configure its own link-local IP address, which is similar to how IPv4 uses an Automatic Private IP Address (APIPA). Here's what happens when a computer using...
This is in C. For this assignment we will write a simple database server. We will be creating a simple database of student records, so let’s describe these first. The format of a student record is as follows: typedef struct student { char lname[ 10 ], initial, fname[ 10 ]; unsigned long SID; float GPA; } SREC; Part One – the Server We will create a database server. The job of the server is to accept a...
Lab #2 Address Book Unsorted List (C++) Using classes, design an online address book to keep track of the names (first and last), addresses, phone numbers, and dates of birth. The menu driven program should perform the following operations: Load the data into the address book from a file Write the data in the address book to a file Search for a person by last name or phone number (one function to do both) Add a new entry to the...