-
What is the difference between layer
2 and layer 3 in the OSI model?
-
What is the difference between a
hub, switch, and router?
-
What is a VLAN?
-
What is the difference between TCP
and UDP?
TCP is a connection oriented
protocol, which means that everytime
a packet is sent say from host A to
B, we will get an acknowledgement.
Whereas UDP on the other hand, is a
connection less protocol.
Where will it be used : TCP -> Say
you have a file transfer and you
need to ensure that the file reaches
intact, and time is not a factor, in
such a case we can use TCP.
UDP-> Media Streaming, question is
say you are watching a movie…would
you prefer that your movie
comes..perfectly….but u need to wait
a long time before you see the next
frame ?..or would you prefer the
movie to keep streaming…Yes…The
second option is definely
better….This is when we need UDP
-
How do you distinguish a DNS problem
from a network problem?
-
What is a runt, Giant, and
collision?
-
What is a broadcast storm?
-
What is the purpose of VRRP?
-
What is a VPN?
-
What information about a peer would
I need to establish a VPN?
-
What is a full-class C in CIDR
notation?
-
What is a default route?
-
What is a metric?
-
What is a MAC
address?
Ans:MAC is a machines Physical
address, The internet is addressed
based on a logical addressing
approach. Say,when the packet
reaches say the bridge connection a
LAN, the question is. how does it
identify, which computer it needs to
send the packet to. For this it uses
the concept of ARP, Address
Resolution Protocol, which it uses
over time to build up a table
mapping from the Logical addresses
to the Physical addresses. Each
computer is identified using its
MAC/Physical address ( u can use the
ipconfig -all option to get ur MAC
address).
-
What is ARP/RARP?
-
Describe a TCP connection sequence
-
What is MTU?
Ans:The MTU is the “Maximum
Transmission Unit” used by the TCP
protocol. TCP stands for
Transmission Control Prototcol. The
MTU determines the size of packets
used by TCP for each transmission of
data. Too large of an MTU size may
mean retransmissions if the packet
encounters a router along its route
that can’t handle that large a
packet. Too small of an MTU size
means relatively more overhead and
more acknowledgements that have to
be sent and handled. The MTU is
rated in “octets” or groups of 8
bits. The so-called “official”
internet standard MTU is 576, but
the standard rating for ethernet is
an MTU of 1500.
-
What other TCP setting can you
modify besides MTU to shorten
packets?