Advertisement
Dotscom

8-25-2014 Notes

Aug 26th, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. 8-25-2014 Notes
  2.  
  3. .Bandwidth - Amount of data that can be transmitted within a fixed time period. Measured in bits per second (Bps, Kbps, Mbps, Gbps)
  4. .Latency - Amount of time it takes data to travel from source to destination. Measured in milliseconds (MS)
  5. .Data is transmitted through simplex (one way), half duplex (one way at a time), duplex (both directions)
  6. .Octet - Numbers in IP separated by decimal. Can range from 0 to 255
  7.  
  8. **IP Classes (Public)**
  9. .Class A - Large networks (1.0.0.0 to 126.255.255.255)
  10. .Class B - Medium networks (128.0.0.0 to 191.255.255.255)
  11. .Class C - Small networks (192.0.0.0 to 223.255.255.255)
  12. .Class D - Special use for multicasting (224.0.0.0 to 239.255.255.255)
  13. .Class E - Expiremental testing (240.0.0.0 to 254.255.255.255)
  14.  
  15. **Private IP Classes**
  16. .Class A - 10.0.0.0 to 10.255.255.255
  17. .Class B - 172.16.0.0 to 172.31.255.255
  18. .Class C - 192.168.0.0 to 192.168.255.255
  19.  
  20.  
  21. Networks (Maximum) | Hosts (Maximum)
  22. .Class A - 126 | 16,777,214
  23. .Class B - 16234 | 65,534
  24. .Class C - 2,097,152 | 256
  25.  
  26. *Example: Class C is for homes. All cass C is connected to FiOS, so the network count is high. The hosts (Users within house) are going to be lower. That's why it's like that
  27.  
  28. .Subnet Mask - Shows user what portion is network and which is user
  29.  
  30. **Subnet Mask Classes**
  31. .Class A - 255.0.0.0
  32. .Class B - 255.255.0.0
  33. .Class C - 255.255.255.0
  34.  
  35. .Loopback address - Specialized IP address for NIC. Always 127.0.0.1
  36. .Broadcast - 255.255.255.255. For things like Amber Alerts
  37. .DHCP - Dynamic Host Configuration Protocol. Auto assigns IP, subnet mask, default gateway, DNS
  38. .Default Gateway - Lets you go out into the internet. Without default gateway, you can't go online. Router address
  39. .APIPA - 169.254.x.x Automatic IP Addressing. Auto configures by DHCP when DHCP server isn't available. When there is APIPA, you have no internet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement