3.1--> Flashcards

1
Q

IP Protocols?

A

how information is encoded and sent between computers. used on the web and networks.

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

what is the TCP?

A

TCP- Transmission Control Protocol; breaks up data into small pieces then the ip protocol adds the source and destination address and send those pieces of data.

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

what protocol is used when one needs redundancy or guarantee that packets have traveled to the destination?

A

TCP- Transfer Control Protocol: each packet is numbered, assembled in correct order and a msg verifying that the packets have been received are sent back to the sender.

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

what IP protocol is used when low overhead is needed on the network, no guarantee of packet received?

A

UDP- User data gram protocol

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

what is ICMP?

A

ICMP: Internet Control Message Protocol: used to test and verify connections between hosts. uses an ICMP echo request and response and measures latency time between devices.

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

IPV4 Addresses are what layer of the tcp/ip?

A

layer 3 (Internet). logical address. not the mac address which is a hardware physical address. logical addresses can be assigned.

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

what is NAT?

A

NAT: Network Address Translation

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

how does NAT work

A

NAT Network address Translation: works by having a class of ipv4 addresses that can be assigned to the local network then a NAT router translated that IPV4 address into a Globally Unique Address (GUA) that is an IPV4 address that is allowed on the web.

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

what is VLSM?

A

VLSM: Variable Length Subnet Mask

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

what is classless subnetting?

A

same as VLSM: Variable Length Subnet Mask

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

what is Cider Notation?

A

when the network mask/ subnet mask is represented with a “/#” after the ip address. this number represents the network portion of the ip address and the number is the number of bits in all octets from left to right

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

what is the pre-fix in an IPv6 address?

A

the first 4 quartets of the ipv6 address. used for network address and marked as /64 because its 64 bits.

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

what is the Interface ID in a ipv6 address?

A

the last 4 quartets or last 64 bytes and is used to identify the hosts on the network

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

what is a Unique Local Ipv6 ADDRESS and how does it work?

A

similar to a private ipv4 address it is not routable on the web unless it is translated by a NAT device.

  • the first 4 bits are always FC or FD.
  • first 8 bits .
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

if you see the following hexadecimal letters used in the beginning of the ipv6 address what does it mean?
**FC or FD

A

this is used only in private ipv6 addresses also called: Unique Local Prefix. the first 8 bits are for this while the next 40 bits are a global unique address. this type of address can not be used on the web.

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

what is a Link Local IPV6 address?

A

used for automatic address config, neighbor discovery and router subnets. only works on the local network and routers will NOT route these.

17
Q

if i see an ipv6 address with the prefix of: FE8, FE9, FEA or FEB. what does it mean?

A

that this is a Link Local Address and can not be routed. used for automatic address configuration, neighbor discovery and non-routed subnets.

18
Q

how many bits are in an ipv6 address? what are each section AA8F:XXXX:XXXX:… called?

A

128 bits in an ipv6 address and each section is called a Quartet.

19
Q

in ipv6 how many bits does a quartet represent?

A

16 bits (16 ones in binary)

20
Q

how many parts are there in an ipv6 address and what are the parts?

A

128 bits made up of 2 parts:

  • 1st 64 bits is the prefix. it is the Network and Subnet portion.
  • 2nd part is 64 bits and is the interface ID (assigned to the host).
21
Q

what are the 2 types of unicast addresses?

A

1-Global: not link local (works on web)

2- Link-local: non-routable address. used to discover neighbor routers.

22
Q

what is a multicast address? what is the prefix?

A

prefix: FF00::/8
- an address used to contact a group of hosts by sending out one addresses packet. not a broadcast but not a unicast either.

23
Q

what are the multicast addresses (3 of them) most popular.

A

FF02::1-all nodes on the local link

  • FF02::2 all routers on the local link/ node
  • FF02::1:2 all DHCP servers on locl link (DHCP relay agents can forward these packets to other subnets)
24
Q

anycast address?

A

anytime a unicast address is assigned to more than 1 host it then is a Anycast address.

25
Q

what is the loopback address in ipv6?

A

::1/128 (all 0’s with one 1 in last quartet)

used to verify the tcp/ip stack