9 - Internet Transport Layer Protocols Flashcards

1
Q

Length of IPv6 addr

A

128 bits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Replacement of data for

  • Type of Service
  • Real-time delivery
  • TTL
A
  • Traffic Class
  • Flow Label support
  • Hop Limit
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Segments of IPv6 packet

A

Version -> Traffic Class -> Flow Label -> Payload Length -> Next Header -> Hop Limit -> Src Addr -> Dest addr

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Global Routing Prefix Unicast implementation?

A

First 3 bits set to 001

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Special Addr for IPv6 -

A

::1 equivalent of 127.0.0.1 (loopback)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

TCP/IP 3-way connection est

A

A->B SYN, ISNa
B->A SYN, ISNb, ACK (ISNa)
A->B ACK(ISNb)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does SSN stand for?

A

Synchronize Sequence Number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does ISN stand for?

A

Initial Sequence Number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

TCP/IP USES which protocol?

A

Sliding window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

RTT

A

Round Trip Time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

SRTT

A

Smoothed Round Trip Time

= (a x SRTT) + ((1-a) x RTT)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does a mean in SRTT?

A

Smoothing Factor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

MDEV

A

Mean Deviation of RTT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

SMDEV

A

Smoothed Mean Deviation

SMDEV = (a x SMDEV) + ((1-a) x MDEV)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

TCP/IP sliding window method (4)

A
  • Sends single packet
  • ACK returned
  • Sends 2 packets, doubling the window size
  • Keeps doubling until all packets are lost, then resets to 1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Relationship between server and client

A

Not symmetrical

17
Q

What is more important than file operations?

A

Names

18
Q

The kernel for Berkeley sockets consists of certain layers (3)

A
  • Socket: Provides the interface between user programs and networking
  • Protocol: Supports different protocols in use, TCP/IP, X.25
  • Device: Supports physical devices such as eth controllers
19
Q

Common properties shared by sockets (2)

A
  • Naming conventions

- Protocol addr formats

20
Q

Sockets are initially created …

A

… unbound

21
Q

Bind()

A

Provides an addr (name) for the local end of the socket

22
Q

listen() and accept () are used to…

A

…prepare for call from clients