Shared Flashcard Set

Details

CGS 4285 by Eduardo Monteiro Exam 3
CGS 4285 by Eduardo Monteiro Exam 3
46
Computer Science
Undergraduate 4
11/29/2012

Additional Computer Science Flashcards

 


 

Cards

Term

(lecture 18)

224.0.0.0/4 represents what kind of address?

 

 

Definition

Multicast

Term

(lecture 18)

What is multicast?

Definition
  • IP addresses that stations can subscribe to on a router. 
  • When a packet is addressed to a certain multicast address, the router will forward it to its subscribers
  • It's a way to create a pseudo broadcast where only a controlled number of stations will hear the traffic

 

Term

(lecture 18)

What kind of frame is used with multicasts?

Definition

Multicast ethernet frame

Term

(lecture 18)

What is a problem with a multicast ethernet frame?

 

Definition

Since only 24 bits of IP address are encoded, 2 addresses can map to the same Ethernet destination address

Term

(lecture 18)

Is IPv6 interoperable with IPv4?

Definition

No

Term

(lecture 18)

IPv4 uses a ___ bit address. IPv6 uses a ___ bit address.

Definition

32, 128

Term

(lecture 18)

IPv6 consists of ___ groups of ___ bit values

Definition

8,16

Term

(lecture 18)

When abbreviating IPv6 address:

Are leading zeroes necessary?

Definition

No

Term

(lecture 18)

When abbreviating IP6 addresses:

How do you denote sections with all zeroes?

Definition

::

Term

(lecture 18)

What are the 3 advantages of IPv6?

Definition
  1. Larger address space
  2. network security features built in (IPSec)
  3. Easier address autoconfiguration (DHCPv6)
Term

(lecture 18)

What are the 3 disadvantages of IPv6?

Definition
  1. Not interoperable with IPv4
  2. Addresses are hard to remember
  3. Abbreviation makes it hard to search for in text/log
Term

(lecture 17)

What is the wireless standard?

Definition

802.11x

Term

(lecture 17)

What are the 2 wireless network types?

Definition
  1. AD-HOC
  2. Infrastructure
Term

(lecture 17)

What is AD-HOC?

Definition

A host connects directly to another host in a point to point fashion

Term

(lecture 17)

What is infrastructure?

Definition
  • hosts connect to an access point
  • access point relays all traffic
Term

(lecture 17)

What kind of topology does a wireless network use?

Definition

Bus

Term

(lecture 17)

What are problems with wireless networks?

 

Definition
  • There may be collisions when transmitting
  • There may be a hidden host
Term

(lecture 17)

What is CSMA/CA?

Definition

Carrier sense multiple access with collision avoidance

  1. Listen for free channel
  2. If free, tell stations within range to be quiet
  3. Start transmission to access point
  4. Access point ACKs the transmission
Term

(lecture 17)

What are some qualities of WEP?

Definition
  • Uses an ejncryption key to encode traffic
  • Very weak. Can be easily broken
Term

(lecture 17)

What are some qualities of WPA?

Definition
  • Encryption key changes periodically
  • Stronger than WEP
  • Password used for additional security
Term

(lecture 17)

What does a Virtual Private Network (VPN) do?

Definition

It makes a host on the internet part of your network by encapsulating IP data inside IP data.

Term

(lecture 17)

What are the qualities of VPN protocol Generic Routing encapsulation (GRE)

Definition
  • IP protocol 47
  • Encapsulate an IP packet inside the payload of another IP packet
Term

(lecture 17)

What are the qualities of VPN protocol IPSec?

Definition
  • Not really a protocol but a protocol suite
  • Used to provide authentication and encryption to IP data
  • Used in VPN in 2 modes: Transport and Tunneling
Term

(lecture 16)

What are the 4 networking technologies classified according to distance spanned?

Definition
  1. PAN - spans a region near an individual
  2. LAN - spans a building or campus
  3. MAN - spans a large metropolitan area
  4. WAN - spans multiple cities or countries
Term

(lecture 16)

What are some qualities of dialup?

Definition
  • uses phone line
  • point to point
  • uses a modem to send signals as sound
  • uses PPP as framing protocol
  • 56Kbps maximum speed
Term

(lecture 16)

What are some qualities of Integrated Services Digital Network (ISDN)?

 

 

Definition
  • uses phone line
  • 2 main types: Basic Rate Interface (BRI) & Primary Rate Interface(PRI)
  • 128 Kbps maximum speed
Term

(lecture 16)

What are some qualities of Digital Subscriber Line (DSL)?

 

Definition
  • uses phone line
  • ADSL - assymmetric: different up/down speeds
  • SDSL - symmetric: same up/down speeds
  • Speed mainly depends on distance to central office
Term

(lecture 16)

What are some qualities of Cable?

Definition
  • Coaxial cable used for TV
  • bus topology
  • DOCSIS standard
  • asymmetric up down speeds
Term

(lecture 16)

What are the qualities of frame relay?

Definition
  • uses phone line
  • similar to ISDN
  • T0 = 64Kbps
  • T1 = 1.5 Mbps
  • T3 = 50 Mbps
Term

(lecture 16)

What are the qualities of synchronous optical networking (Sonet)

Definition
  • Optical fiber
  • Bandwidth can be partitioned to allocate many T1 or T3 into a single optical channel
  • OC1 = 50 Mbps
  • OC3 = 155 Mbps
  • OC12 = 622 Mbps
  • OC48 = 2.4 Gbps
  • OC192 = 9.6 Gbps
Term

(lecture 15)

What are the two routing protocols?

Definition
  1. Interior Gateway Protocol (IGP)
  2. Exterior Gateway Protocol (EGP)
Term

(lecture 15)

What are the 2 main types of Interior Gateway Protocol?

Definition
  1. Distance Vector
  2. Link State
Term

(lecture 15)

(True or False)

IGP is only used within an Autonomous System

Definition

True

Term

(lecture 15)

What is an autonomous system?

Definition

A set of machines on a network under the same administrative authority. Autonomous Systems get assigned a number by ARIN

Term

 (lecture 15)

What are the qualities of Distance Vector?

Definition
  • Regular and periodically shares information with neighbor routers
  • Shares the entire routing table
  • uses UDP broadcast packets to transmit this data
  • determines how many hops it takes to reach a particular network based on infromation it receives from its neighbors
  • protocol automatically chooses a path with the lowest hop count
Term

(lecture 15)

What are some qualities of Link State?

Definition
  • Link state protocols transmit information about the status links on a network
  • Unlike distance vector protocols, link state protocols only transmits data once it detects a link has gone down
  • more bandwidth efficent than distance vector
  • OSPF is the most used protocol (IP proto 89)
  • uses a multicast 'hello' protocol to transmit data
  • routers get a database dump from the 'king of the network'
Term

(lecture 15)

What are the qualities of Border Gateway Protocol (BGPv4)?

Definition
  • Routing between autonomous systems
  • Neither a distance vector nor link state protocol
  • Path vector protocol
  • combines metrics such as hop counts, costs and many others to determine paths
  • communicates the entire path, not only next hop
Term

(lecture 14)

What range of ports is reserved for 'well known services'?

Definition

1-1023

Term

(lecture 14)

What range of ports are the ephemeral ports?

Definition

1024-65535

Term

(lecture 14)

What are the 3 main types of Firewall?

Definition
  1. Layer 2 firewall: switch that forwards frames based on ethernet parameters
  2. Layer 3 firewall: router that forwards frames based on IP, TCP, UDP rules
  3. Layer 7 firewall: incorporates Layer 2 & 3 firewall but is also capable of analyizing packet contents
Term

(lecture 14)

What are the components of firewall rules?

Definition
  • Source IP address
  • Destination IP address
  • IP protocol (ICMP, TCP or UDP)
  • Source TCP or UDP port
  • Destination TCP or UDP port
Term

(lecture 14)

(True or False)

The order of firewall rules is important

Definition

True

Term

(lecture 14)

What does Network Address Translation (NAT) do?

Definition
  • Translates a private address into an available public address selected from a pool of vailable addresses without any change inports
  • Relates 1 private address to 1 public address
  • Limits the amount of simutaneous connections from private IP address by the number of available public IP addresses
Term

(lecture 14)

What is Network Address Port Translation?

Definition
  • A private IP/port is translated into a public IP/port
  • one public IP address can be translated to many private IP addresses
  • the acting NAT device associates the public/private IP translation based on TCP and UDP ports
  • The NAT device tracks TCP/UDP "Flows" in a table and translates accordingly
Term

(lecture 14)

What are the advantages of Network address Translation?

Definition
  • multiple private address can use a single public address
  • technically it is a default blocking firewall since it does not allow incoming traffic to initiate a connection
Term

(lecture 14)

What are the disadvantages of network address translation?

Definition
  • sometimes connections can be dropped because of timeouts. common in UDP
  • unless special measures are taken, public hosts cannot initialte a connection with a private host.
Supporting users have an ad free experience!