stream paradigm | message paradigm |
---|---|
connection-oriented | connectionless |
one-to-one communication | many-to-many communication |
sequence of individual bytes | sequence of individual messages |
arbitrary length transfer | each message limited to 64 Kbytes |
used by most applications | often used for multimedia applications |
built on TCP protocol | built on UDP protocol |
n1.n2.n3.n4
where each ni
is a decimal number, e.g.,
18.23.0.22
www.dcs.bbk.ac.uk
rather than an IP address
5f05:2000:80ad:5800:0058:0800:2023:1d71
0058
can be written as 58
::
,
so 0:0:0:0:0:0:0:1
can be written as ::1
::
followed by an IPv4 address in dotted decimal notation
www.w3.org
128.30.52.37
128.30.52.37
128.30.52.37
128.30.52.37
will receive the message
128.30.52.37
See Chapters 1, 2 and 3 of [Comer] and Chapter 1 of [Tanenbaum] and of [Kurose and Ross].