Tugas 7 : Wireshark UDP

UDP

1.      Select one packet. From this packet, determine how many fields there are in the UDP header. (Do not  look  in  the  textbook!  Answer these  questions  directly  from  what  you observe  in  the  packet  trace.) Name these fields.

Jawab :

UDP header memiliki 4 field yaitu : source port, destination port, length, and checksum.

2.      From the packet content field, determine the length (in bytes) of each of the UDP header fields.
Jawab :
UDP header memiliki 4 field yang setiap field tersebut memiliki panjang 2bytes

3.      The  value  in  the  Length  field  is  the  length  of  what?  Verify  your  claim  with  your  captured  UDP  packet. 
Jawab :
Panjang field adalah panjang dari header yaitu 8 bytes dan data lain yang ada dalam bytes.


4.      What is the maximum number of bytes that can be included in a UDP payload.

Panjang maksimum bytes yang dapat di bawa oleh UDP payload adalah 65535 dengan header yang artinya  65535 – 8 = 65527 bytes yang dapat dibawa.

5.      What is the largest possible source port number?
Jawab :
Untuk kemungkinan source port terbesar adalah  216 – 1 = 65535.

6.      What  is  the  protocol  number  for  UDP?  Give  your  answer  in  both  hexadecimal  and  decimal  notation. (To answer this question, you’ll need to look into the IP header.)
Jawab :
Nomor IP protocol untuk UDP adalah 0x11 hexadimal atau 17

7.      Search “UDP” in Google and determine the fields over which the UDP checksum is calculated. 

UDP checksum dihitung sebagai 16-bit pelengkap jumlah sebuah informasi pseudo header dari IP header, UDP header, dan data. Hal tersebut digunakan seuai kebutuhan degan nilai akhir 0 bytes untuk membuat multiple 2 bytes. Jika checksum bernilai 0, maka harus di set ke 0xFFFF. 

8.      Examine a pair of UDP packets in which the first packet is sent by your host and the second packet is a reply to the first packet. Describe the relationship between the port numbers in the two packets. 
Jawab :

Source port dari paket UDP yang dikirimkan oleh host sama dengan destinasi port dari replay paket, dan sebaliknya destinasi port dari paket UDP yang dikirimkan oleh host sama dengan source port dari replay paket.

Komentar