Network + Part 3

  1. Class A IP address range
    0.0.0.0 - 127.255.255.255
  2. Class B IP address range
    128.0.0.0 to 191.255.255.255
  3. Class C IP address range
    192.0. 0.0 through 223.255.255.0
  4. Network address translation
    When a device changes an IP address as it is communicating through a network. Assigned at the router. Goes from a private to a public IP address.
  5. NAT overload / PAT
    Port address translation. Allows multiple IP addresses to use a single NAT IP address through a router.
  6. Unicast
    One station sends information to another station. One to one.
  7. Broadcast Communication
    1 source device that sends out the packet to everyone connected on the network. Used in IPv4. Has performance issues with many devices connected to the network.
  8. Multicast Communication
    Delivery of information to any interested systems. Used in IPv4 and mostly in IPv6
  9. Anycast Communication
    Single destination IP address has multiple paths to 2 or more endpoints. Sends to 1 device which relays the packet to others. Used in IPv4 and IPv6.
  10. What is IPv6 and how is it shown?
    128 bit address with 340 undecillion addresses. Shown as a hexadecimal.
  11. IPv6 Compression rules
    • Groups of zeros can be abbreviated with a double colon. However, only one of these abbreviations are allowed per address.
    • Leading zeros are optional.
  12. 2600:DDDD:1111:0001:0000:0000:0000:0001 Compressed with be
    2600:DDDD:1111:1::1
  13. EUI-64
    Static IP addressing with IPv6. Extended Unique Identifier. Combined the MAC address with the IPv6 address.
  14. MAC Address
    Media Access Control Address. On the physical network adapter. The first 3 sections are the manufacturer. The last 3 sections are the serial number. Also known as an EUI-48, Extended Unique Identifier with 48 bits.
  15. Process for converting the EUI-48 address to the EUI-64 address
    • Split the MAC address into two 24 bit halves.
    • Put FFFE in the middle for the missing 16 bits.
    • Invert the seventh bit. 0 to 1 and vice versa.

    • Flipping the 7th bit
    •  0 1
      2 3
         
      4 5
      6 7
         
      8 9
      A
         
      C D
      E F
  16. Convert Mac to EUI-64
    8c:2d:aa:4b:98:a7
    8e2d:aaff:fe4b:98a7
  17. IANA
    Internet Assigned numbers Authority. Provides address blocks to RIRs
  18. RIR
    Regional Internet Registries. RIR assigns smaller subnet blocks to ISPs. The ISP assigns a /48 subnet to the customer.
  19. Breakdown of how IPv6 addresses are assigned by the RIR
  20. 6 to 4 addressing
    Sends IPv6 over an existing IPv4 Network. Creates an IPv6 address based on the IPv4 address. Requires relay routers. No support for NAT. Network Address Translation.
  21. 4 to 6 tunneling
    Tunnel IPv4 traffic on an IPv6 network.
  22. Teredo / Miredo
    Tunnels IPv6 through a NATed IPv4 network. No special IPv6 router needed.
  23. Dual Stack Routing
    Run both IPv4 and IPv6 at the same time. Interfaces will be assigned multiple address types. Separate configurations.
  24. ARP
    Address Resolution Protocol (ARP) is a protocol or procedure that connects an ever-changing Internet Protocol (IP) address to a fixed physical machine address, also known as a media access control (MAC) address, in a local-area network (LAN). Similar to DHCP. This is for IPv4 Only.
  25. Neighbor Solicitation
    Replaces ARP for IPv6. Allow computers a way to find each other on the network.
  26. SLAAC
    Stateless Address Autoconfiguration. Automatically configure an IP address without a DHCP server. Uses EUI-64, Extended unique identifier, in an IPv6 network.
  27. DAD
    Duplicate Address Detection for IPv6.
  28. What does a Ethernet Frame contain?
    Contains the Header, IP, TCP/UDP port Number, Ethernet Payload, Ethernet Trailer.
  29. Multiplexing
    Allows the use of many different applications at the same time. TCP and UDP can both be encapsulated by the IP protocol. Moves on the Lay 4 Transport Layer.
  30. TCP
    • Transmission Control Protocol
    • Connection Oriented. Reliable in the sense it can recover from errors and orders messages. Allows for flow control
  31. UDP
    User Datagram Protocol. Connectionless, there is no error recovery or ordering of data. No flow control. The receiver does not talk back to the sender.
  32. Both TCP and UDP use blank to say exactly where the data is going to.
    Port Numbers
  33. Telnet – Telecommunication Network
    • tcp/23
    • Console access from another device. Unencrypted.
  34. SSH
    • TCP/22
    • Secure Shell. Encrypted version of Telnet.
  35. DNS
    • UDP/53
    • Domain Name System. Converts names to IP addresses.
    • Large transfers may use TCP/53
  36. SMTP
    • tcp/25 – SMTP using plaintext
    • tcp/587 – SMTP using TLS encryption
    • Simple Mail Transfer Protocol.
    • Server to server email transfer. SENDS MAIL. IMAP and POP3 are for inbound.
  37. POP 3
    • tcp/110 plaintext
    • tcp/995 POP over TLS
    • Receive emails from an email server. Can authenticate and transfer.
  38. IMAP 4
    • tcp/143 plaintext
    • tcp/993 IMAP over TLS
    • Internet Message Access Protocol. Includes management of email inbox from multiple clients. Receives.
  39. SFTP
    • Secure File Transfer Protocol
    • tcp/22 -Uses the SSH File Transfer Protocol
    • Provides file system functionality. Resuming interrupted transfers, directory listings, remote file removal.
  40. FTP
    • File Transfer Protocol
    • tcp/20 for active mode data
    • tcp/21 for control
    • Transfers files between systems. Authenticates with a username and password. Full functionality such as list, add, delete.
  41. TFTP
    • Trivial File Transfer Protocol
    • udp/69
    • Very simple file transfer application. Can read and write files. No Authentication. Not used in production systems.
  42. DHCP
    • Dynamic Host Configuration Protocol
    • udp/67
    • udp/68
    • Automatic configuration of IP address subnet mask and other options. Requires a DHCP server. IP addresses can be dynamic, pulled from a pool, or reserved for a specific MAC address.
  43. HTTP
    • Hypertext Transfer Protocol
    • tcp/80
    • Communication in the browser and through applications. Web server communication.
  44. HTTPS
    • Hypertext Transfer Protocol Secure
    • tcp/443
    • Uses TLS (Transport Layer Security)(Current) or SSL(Secure Sockets Layer)(Outdated). Provides web server communication with encryption.
  45. SNMP
    • Simple Network Management Protocol
    • udp/161
    • Gather stats from network devices. Version 3 has message integrity, authentication, and encryption.
  46. SNMP Trap
    • Simple Network Management Protocol Trap.
    • udp/162
    • Alerts and notifications from the network devices.
  47. Syslog
    • udp/514
    • Standard for message logging for diverse systems. Uses a SIEM (Security Information Event Manager).
  48. RDP
    • Remote desktop protocol
    • tcp/3389
    • Shares a desktop from a remote location.
  49. NTP
    • Network Time Protocol
    • udp/123
    • Sends clock information to every device
  50. SIP
    • Session Initiation Protocol
    • tcp/5060
    • tcp/5061
    • Voice over IP VOIP
  51. SMB / CIFS
    • Server Message Block Common Internet File System
    • tcp/445
    • Windows protocol for file sharing, printer sharing.
  52. LDAP
    • Lightweight Directory Access Protocol
    • tcp/389
    • Store and retrieve information in a network directory. Used to keep track of users.
  53. LDAPS
    • Lightweight Directory Access Protocol Secure
    • tcp/636
    • LDAP over SSL
    • Store and retrieve information in a network directory. Used to keep track of users.
Author
dsagent
ID
363205
Card Set
Network + Part 3
Description
Network Address Translation Network Communication IPv6 Addressing IPv6 Subnet Masks Configuring IPv6 Introduction to IP Common Ports
Updated