I was using tcpdump
on ubuntu for capturing IP packets while i was connected to a ftp server. I got the output but I did not understand the output fully. Here's the output:
20:36:59.447287 IP 195.144.107.198.21 > 192.168.0.103.38358: Flags [P.], seq 1:15, ack 6, win 257, options [nop,nop,TS val 118776594 ecr 2892624995], length 14: FTP: 221 Goodbye.
0x0000: 4500 0042 67fb 4000 6906 b954 c390 6bc6 E..Bg.@.i..T..k.
0x0010: cQa8 0067 0015 95d6 b5d5 9b80 8f8f ed64 ...g...........d
©x0020: 8018 0101 273e 0000 0101 080a 0714 6312 ....'>........c.
0x0030: ac69 £463 3232 3120 476f 6f64 6279 652e .i.c221.Goodbye.
0x0040: Od0a
This is the packet captured when I closed the connection with the ftp server. I understood the IP header which is on the left but I did not understood the payload fully. The "Goodbye" message was displayed when I exited from the ftp server, but what is the rest of it? I am talking about this:
E..Bg.@.i..T..k.
...g...........d
....'>........c.
.i.c221.Goodbye.
..
What are those periods, and random characters (apart from "Goodbye")?