Advertisement
Guest User

576 quiz cheatsheet

a guest
Feb 18th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. 1. What is a network?
  2. A system of “links” that interconnect “nodes” in order to move “information” between nodes
  3.  
  4. 2. types of networks
  5. Internet/telephone/transport/cellular/supervisory control and data aquisition/optical/sensor
  6.  
  7. 3. Channels concept
  8. *Peer entities communicate over channels
  9. *Peer entities provide higher-layer peers with higher-layer channels
  10. A channel is that into which an entity puts symbols and which causes those symbols (or a reasonable approximation) to appear somewhere else at a later point in time.
  11.  
  12. 4. Channel characteristics:
  13. Symbol type, capacity, delay, fidelity, cost, reliability, order-preserving, connectivity
  14.  
  15. 5. Physical channels:
  16. Twister Pair (TP)
  17. Coaxial cable
  18. Fiber optic cable
  19. Radio
  20.  
  21. 6. Properties of links
  22. Bandwidth (bits/sec)
  23. Latency (propagation time, sec)
  24. Bandwidth-delay product (BPD): latency * bits/second
  25.  
  26. 7. Circuit switching
  27. Nodes request a reservation of a circuit, circuit is built, node sends data, node sends circuit teardown request
  28. Pros: guaranteed performance, fast transfers once circuit is established
  29. cons: wastes bandwidth, has setup time overhead, slow recovery from failure
  30.  
  31. 8. Time division mux/demux
  32. x=time, y=freq. regions of a frame in x correspond to different channels. message: [c1,c2,c3],[c1,c2,c3],...
  33.  
  34. 9. packet switching
  35. data's send in packets of header and payload
  36. header: address, age, checksum
  37. switchers forward the packets per the header
  38. no circuits, each packet travels independently
  39. leverages statistical multiplexing
  40.  
  41. 10. OSI
  42. Application->presentation->session->transport->network->link->physical
  43. (presentation = interpreting the data, e.g. type, compression, encryption, etc., session=syncing,checkpointing,data recovery)
  44.  
  45. 11. What is a protocol?
  46. protocols define format, order of msgs sent and received among network entities, and actions taken on msg transmission, receipt
  47.  
  48. 12. Purpose of IP
  49. A logical network address that identifies a host
  50.  
  51. 13. IPv4 vs IPv6
  52. ipv4: 32bits/4octets, dotted decimal notation, over 4 billion possible combinations
  53. ipv6: 128 bits, 3*10^38 addresses.
  54.  
  55. 14. Parts of an IP address
  56. Network and host. Subnet mask determines the bits that belong to the network part.
  57.  
  58. 15. Types:
  59. Class A: 1-127. N.H.H.H. 255.0.0.0.
  60. Class B: 128-191. N.N.H.H. 255.255.0.0
  61. Class C: 192-223. N.N.N.H. 255.255.255.0
  62. Class D: 224-239.
  63. Class E: 240-255.
  64.  
  65. 16. Private IP
  66. Solves finite IP issue, allows local host communication
  67.  
  68. 17. Configuring DHCP
  69. Client sends a DHCP discover message to 255.255.255.255. All hosts in the network receive this message, but only the DHCP server replies.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement