Professor Mike Meyers Flashcards
(99 cards)
What is the PDU called the transport layer?
TCP PDU is called TCP segment
UDP PDU is called UDP datagram
Is ICMP just one packet?
No, it is not just one packet. There is a type field in the packet that will define what this particular ICMP packet is for?
For example this type field might mean host not found.
Define main fields of IGMP?
It has following ->
Source address + Group address + checksum + type
Define IGMP?
So when a sever hosting some live video for example and it needs to go to a large number of recipients, it can use a Multicast address. So it will assign a Multicast address to hosts or routers that comes in the way of hosts that want to listen to this live video, a multicast address. This way it can just send a one stream of data instead of sending multiple streams to cover all recipients.
What is traceroute and what is its windows equivalent?
It is a troubleshooting protocol that tell us the hop by hop patch to reach a remote host from the local host.
Windows equivalent is tracert
In some case if traceroute does not work as it is not allowed by some routers, we can use “ pathping “ command as it uses a different protocol.
When the things are running great, use the traceroute command so that you can get familiar with it.
What is one of the things that you should check if you are not getting right speed from ISP?
Look for cheap routers
Learn wireshark
I will
Name of the packet capturing tool that we can use in linux from command prompt?
tcpdump - it will start capturing the frames and we can save these into some file and then use some analyzer like wireshark to analyze the frames.
What is netstat command used for?
It is a command that we can use to list all the open ports and connections on our system.
It has no of different options.
Define some popular netstat options.
netstat -n This will give us the raw numbers like destination IP addresses instead of names.
netstat -b It will tell us the executable as well linked to a connection
netstat -o It will give us the process ID as well that we can use to find the associated applications in Task manager
netstat -nbo
netstat -a It shows all the active ports
What is netstat -r used for?
We can also use this to see the routing table in windows
If we need to check if some device is running a web server, how do we check that?
We use
netstat -a command and see if it is listening on port 80 or 443
What are the 2 common kind of web servers out there in the world?
One are Microsoft servers - Microsoft IIS ( internet information service )
Another is Apache ( open source )
What does FTP server listens on?
It listens on port no 21
And send the data back to clients on port 20
If we want people to connect to our FTP SRVER to download some files, without requiring to enter any USER NAME / PASSWORD, what kind of account do we need to create on FTP SERVER?
We can create ANONYMOUS account with no password
Can Inter Explorer acts as a FTP server and how?
Yes, we can type
ftp://202.13.212.104
Does windows have in-built ftp client?
We can use command prompt as ftp client.
Just type -> ftp serverName/ip address
Once connected, we can use GET command for file downloads and PUT command for file uploads.
What are the different modes that AP can work in?
- Repeater - it will just repeat the signal from the AP. Normally these repeaters have 2 set of transmitters and receivers. One set of transmitter and receiver is used to get the signal from AP and the other one is used to retransmit the signal. So this way there is no interference.
- Workgroup bridge - in this mode, it can act as wireless NIC for a wired client that does not have wireless capability. So WGB will work on the same frequency as the AP.
- Outdoor bridge - this used to connect 2 or more different buildings or cities that are apart by a large distance.
- Mesh network - it can also work in a Mesh topology.
Give an example of Cloud-based AP Architecture?
Cisco Meraki is a cloud based and offers centralized management of wireless, switched, and security networks built from Meraki products.
What is Split-Mac architecture terminology in ACCESS POINTS?
In split-mac, duties are divided between WLC (wireless controller) and the light weight APs.
Activities performed by AP is divided into 2 groups -> management functions and real time processes.
What are the management functions in Split -MAC AP architecture?
RF management, authentication, security management, QOS, Association and roaming management
What are the real time functions in AP?
RF transmit/receive
MAC management,
Encryption
How the WLC and AP talk to each other?
Using CAPWAP - Control and provisioning of wireless access point
What are the 2 kind of messages that travel in CAPWAP tunnels?
- CAPWAP control messages - these are the messages that travel between LWAP and WLC for controlling light weight APs. These messages are authenticated and encrypted so the AP is securely controlled by the appropriate WLC.
- CAPWAP data - this is used for packets travelling to and from wireless clients that are associated with AP. Data packets are transported over the data tunnel but are not encrypted by default. When the data encryption is enabled for AP, packets are protected with the Datagram Transport Layer Security (DTLS)