Computer Networkn Mid Prac File
Computer Networkn Mid Prac File
A
Practical-Work
On
Computer Network Lab (OMC-102L)
Submitted in partial fulfillment of the requirement for the Ist
semester
M.C.A
By
Jatin B Awasthi
23711027
…
Faculty-in-Charge
Mr. Bhupesh Rawat
Associate Professor
SCHOOL OF COMPUTING
GRAPHIC ERA HILL UNIVERSITY, BHIMTAL CAMPUS
2023-2024
STUDENT’S DECLARATION
I Jatin B Awasthi hereby declare the work, which is being presented in the term-work,
entitled “Computer Network Lab” in partial fulfillment of the requirement for the
award of the degree M.C.A in the session 2023-2024, is an authentic record of my own
The matter embodied in this term-work has not been submitted by me for the award of any
other degree.
Date: …………
(Full signature of
student)
SCHOOL OF COMPUTING
GRAPHIC ERA HILL UNIVERSITY, BHIMTAL CAMPUS
2023-24
CERTIFICATE
Awasthi S/o Mr. Bhagirath Awasthi. Enrollment no. PV-23510019, roll no. 23711027 to
Graphic Era Hill University Bhimtal Campus for the award of bonafide work carried
out by his/ her. He / She has worked under my guidance and supervision and fulfilled
Faculty-in-Charge (HOD)
VARIOUS COMMANDS USE IN COMPUTER NETWORK-
IPCONFIG
1. Open Start.
2. Search for Command Prompt, right-click the top result, and
select the Run as administrator option.
3. Type the following command to view a summary of the
TCP/IP network configuration and press Enter: ipconfig
Quick tip: In Command Prompt, you can use the CLS command to
clear the screen after you no longer need the information to
continue running commands without clutter.
Output-
nslookpu
The nslookup (Name Server Lookup) tool can show valuable details to
troubleshoot and resolve DNS-related issues. The tool includes an
interactive and non- interactive modes. However, you will be using the
non-interactive mode more often than not, which means you will type
the full command to obtain the necessary information.
You can use this command to display the default DNS name and address
of the local device and determine the domain name of an IP address or
the name servers for a specific node.
1. Open Start.
2. Search for Command Prompt, right-click the top result, and
select the Run as administrator option.
Type the following command to look up the local DNS name and address and
press Enter: nslookup
Output:
Ping-
Ping is another essential networking tool because it allows you to send
ICMP (Internet Control Message Protocol) echo request messages to test
the IP connectivity with other devices, whether it is another computer in
the network or internet service.
To test the network connectivity with the ping command on Windows 10,
use these steps:
1. Open Start.
2. Search for Command Prompt, right-click the top result, and
select the Run as administrator option.
3. Type the following command to send ICMP echo requests to test
connectivity and press Enter: ping IP-OR-DOMAIN
Output:
Tracert
Windows 10 also includes tracert (Trace Route), a diagnostic tool to
determine the network path to a destination using a series of ICMP echo
requests. However, unlike the ping command, each request includes a TTL
(Time to Live) value that increases by one each time, allowing to display
of a list of the route the requests have taken and their duration.
To trace the route to a destination with Command Prompt on Windows
10, use these steps:
1. Open Start.
2. Search for Command Prompt, right-click the top result, and
select the Run as administrator option.
Type the following command to understand the path taken to the destination and
press Enter: tracert IP-OR-DOMAIN
Output:
Netstat-
The netstat (Network Statistics) tool displays statistics for all network
connections. It allows you to understand open and connected ports to
monitor and troubleshoot networking problems for Windows 10 and apps.
When using the netstat tool, you can list active network connections and
listening ports. You can view network adapter and protocol statistics.
You can even display the current routing table and much more.
1. Open Start.
2. Search for Command Prompt, right-click the top result, and
select the Run as administrator option.
3. Type the following command to show all active TCP
connections and press Enter: netstat
Output:
Program-1 Create a peer-to-peer computer network.
The File Transfer Protocol (FTP) is a standard network protocol used for the
transfer of computer files between a client and server on a computer network.
Worth noting: Although FTP does support user authentication, all data is sent
in clear text, including usernames and passwords. For secure transmission that
protects the username and password, and encrypts the content, FTP is often
secured with SSL/TLS (FTPS) or replaced with SSH File Transfer Protocol (SFTP).
6. Once file upload is successful, go to the Server FTP directory to verify if the
file sent has been received.
To do this, go to Server-> Services->FTP. Here look for MyFile.txt sent from the
laptop.