0% found this document useful (0 votes)
7 views

NET

The document outlines the practical examination details for the Networks Laboratory (CS8581) at A.R.J College of Engineering and Technology, scheduled for November 22, 2023. It includes information on the exam structure, marks allocation, and a list of experiments to be conducted, such as implementing TCP/UDP socket programs and simulating routing algorithms. The examination is for third-year Computer Science and Engineering students, with a total duration of 3 hours and a maximum score of 100 marks.

Uploaded by

Kavi Arul
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

NET

The document outlines the practical examination details for the Networks Laboratory (CS8581) at A.R.J College of Engineering and Technology, scheduled for November 22, 2023. It includes information on the exam structure, marks allocation, and a list of experiments to be conducted, such as implementing TCP/UDP socket programs and simulating routing algorithms. The examination is for third-year Computer Science and Engineering students, with a total duration of 3 hours and a maximum score of 100 marks.

Uploaded by

Kavi Arul
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

ANNA UNIVERSITY CHENNAI 25

PRACTICAL EXAMINATION NOV/DEC-2023

COLLEGE CODE / NAME: 8201, A.R.J COLLEGE OF ENGINEERING AND TECHNOLOGY


DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

Subject Code & Name : CS8581 - NETWORKs LABORATORY


Date & Session : 22.11.23 AN Marks : 100
Year & Semester : III /V Duration : 3Hours
Degree &Dept : B.E& CSE

BATCH LIST

DATE BATCH REG.NO NO.OF.STUDENTS TIME

22.11.23 AN I 10 01.30 to 4.30


P.M

INTERNAL EXAMINER EXTERNAL EXAMINER

Page 1of 3
ANNA UNIVERSITY CHENNAI 25

PRACTICAL EXAMINATION NOV/DEC-2023

COLLEGE CODE / NAME: 8201, A.R.J COLLEGE OF ENGINEERING AND TECHNOLOGY


DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

Subject Code & Name : CS8581 - NETWORKs LABORATORY


Date & Session : 22.11.23 AN Marks : 100
Year & Semester : III /V Duration : 3Hours
Degree &Dept : B.E& CSE

BATCH LIST

DATE BATCH REG.NO NO.OF.STUDENTS TIME

22.11.23 AN I 10 01.30 to 4.30


P.M

HOD/CSE PRINCIPAL

Page 2of 3
ANNA UNIVERSITY CHENNAI 25

PRACTICAL EXAMINATION NOV/DEC-2023

COLLEGE CODE / NAME: 8201, A.R.J COLLEGE OF ENGINEERING AND TECHNOLOGY


DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

Subject Code & Name : CS8581 - NETWORKs LABORATORY


Date & Session : 22.11.23 AN Marks : 100
Year & Semester : III /V Duration : 3Hours
Degree &Dept : B.E& CSE

MARKS ALLOCATION

SECURED
ALLOTED MARKS
S.NO CONTENTS
MARKS

1. AIM & ALGORITHM 20


2. PROGRAM 30

3. EXECUTION 30

4. RESULT 10
5. VIVA 10
6. TOTAL 100

INTERNAL EXAMINER EXTERNAL EXAMINER

Page 3of 3
ANNA UNIVERSITY CHENNAI 25

PRACTICAL EXAMINATION NOV/DEC-2023

COLLEGE CODE / NAME: 8201, A.R.J COLLEGE OF ENGINEERING AND TECHNOLOGY


DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

Subject Code & Name : CS8581 - NETWORKs LABORATORY


Date & Session : 22.11.23 AN Marks : 100
Year & Semester : III /V Duration : 3Hours
Degree &Dept : B.E& CSE

S.NO PROGRAM/ EXECUTI RESULT VIVA TOTAL


AIM &
REG.NO NAME ALGORITH PROCEDURE& ON& [20] VOICE [100]
M[20] [30] [30] [10]
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.

INTERNAL EXAMINER EXTERNAL


EXAMINER

Page 4of 3
ANNA UNIVERSITY CHENNAI 25

PRACTICAL EXAMINATION NOV/DEC-2023

COLLEGE CODE / NAME: 8201, A.R.J COLLEGE OF ENGINEERING AND TECHNOLOGY


DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

Subject Code & Name : CS8581 - NETWORKs LABORATORY


Date & Session : 22.11.23 AN Marks : 100
Year & Semester : III /V Duration : 3Hours
Degree &Dept : B.E& CSE
LIST OF EXPERIMENTS:

1. Learn to use commands like tcpdump, netstat, ifconfig, nslookup and traceroute. Capture

ping and traceroute PDUs using a network protocol analyzer and examine

2. Write a HTTP web client program to download a web page using TCP sockets.

3. Applications using TCP sockets like:

Echo client and echo server

Chat

File Transfer

4. Simulation of DNS using UDP sockets.

5. Write a code simulating ARP /RARP protocols.

6. Study of Network simulator (NS) and Simulation of Congestion Control Algorithms using NS.

7. Study of TCP/UDP performance using Simulation tool.

8. Simulation of Distance Vector/ Link State Routing algorithm.

9. Performance evaluation of Routing protocols using Simulation tool.

10. Simulation of error correction code (like CRC).

INTERNAL EXAMINER EXTERNAL EXAMINER

Page 5of 3
B.E / B.Tech./B.Arch. PRACTICAL END SEMESTER EXAMINATIONS, NOVEMBER /
DECEMBER 2023
Fifth Semester

CS8581 - NETWORKs LABORATORY


(Regulations 2017)

Time : 3 Hours Answer any one Question Max. Marks 100

(To be filled by the question paper setter)

Aim/Principle/Apparatus Tabulation/ Calculation Viva-Voce Record Total


required/Procedure Circuit/Program/ & Results
Drawing
20 30 30 10 10 100

1. Write a simple HTTP web client program using TCP sockets to download a web page. Get the URL and
pass it for buffering the content and write it as a html file and make it to get downloaded.

2. Write a program to implement echo client and echo server using TCP sockets. This client/server pair
runs a simple TCP socket program as an Echo Server that allows one/more client to connect to
the server.

3. Write a Program to implement inter process communication(chat) using stream sockets with the
help of socket interfaces provided TCP sockets.

4. Write a file server program using TCP sockets. The server sends a reply to the user with the files. The
user specified file needs to be downloaded. If the file does not exist, error message needs to be displayed
from the server.

5. Write a program to implement the DNS using UDP sockets. The DNS should have different domains with
corresponding IP addresses. Resolve the user given domain with the IP and display it to the user. Also
indicate the error message to the user when domain is not resolved.

6. Write a program to implement ARP/RARP protocols.


Page 6of 3
7. Write a program to implement distance vector routing algorithm and illustrate path taken for sending the
packets from source to destination.

8. Write a program to implement Link state routing algorithm and illustrate path taken for sending the
packets from source to destination.

9. Write a program to implement CRC error detection technique.

10. Write the use of the following network commands and simulate it to show its output with PDUs.

 tcpdump
 netstat
 ifconfig
 nslookup
 traceroute

11. Write any one congestion control mechanisms and simulate the functionalities using network simulator.

12. Write the illustration of any two routing protocols with network nodes/hop from a sender to receiver with
at least four or five computing nodes and simulate it in the packet tracer tool with the observed
performance evaluations for sending packets using those two protocols from sender to receiver.

13. Write the study of TCP/UDP performance and show it using anyone simulation tool.

14. Write the performance evaluation of any two routing protocols using any simulation tool.

INTERNAL EXAMINER EXTERNAL EXAMINER


Page 7of 3
Write a Program to implement inter process communication(chat) using stream sockets with the
help of socket interfaces provided TCP sockets.

Write the performance evaluation of any two routing protocols using any simulation tool.

Write a program to implement CRC error detection technique

Write a program to implement distance vector routing algorithm and illustrate path taken for sending the
packets from source to destination

Write a Program to implement inter process communication(chat) using stream sockets with the
help of socket interfaces provided TCP sockets.

Write a simple HTTP web client program using TCP sockets to download a web page. Get the URL and
pass it for buffering the content and write it as a html file and make it to get downloaded

Write the use of the following network commands and simulate it to show its output with PDUs.

 tcpdump
 netstat
 ifconfig
 nslookup
 traceroute

Write a program to implement Link state routing algorithm and illustrate path taken for sending the
packets from source to destination

Write a program to implement ARP/RARP protocols

Page 8of 3
Write a program to implement the DNS using UDP sockets. The DNS should have different domains with
corresponding IP addresses. Resolve the user given domain with the IP and display it to the user. Also
indicate the error message to the user when domain is not resolved

Page 9of 3
Page 10of
3

You might also like