cs244a-Introduction to Computer Networking-Unit1
Unit 1
学习目标:
- how an application use the Internet
- The structure of the Internet:The 4 layer model
- The Internet protocol(IP)
- Basic architectural ideas and principles:
- Packet switching
- Layering
- Encapsulation
1.1 A Day in the life of an Application
- Dominant model:
- bidrectional
- reliable byte stream connection
1. World Wide Web (HTTP)
- C/S架构
- 发送commands,接收responses
- request:"GET / HTTP/1.1"
- response: "HTTP/1.1 200 OK"
2. BitTorrent
- P2P架构
- break files into "pieces"
- 所有存有pieces file的client被称为swarm,client join and leave swarms
- tracker追踪swarm的成员,通过torrent file向一个tracker获取swarm中的client列表
- request: "GET list of clients in swarm"
- response: "200 OK list of clients"
3. Skype
- mixed架构
- 如果两个client能互联,就在client间建立连接--->P2P
- 如果有一方存在NAT:Client A-----Internet-----NAT---ClientB
- 由于NAT,B可以连接A,但A无法连接B
- A cannot open connection to B
- B在一个Rendezvous上注册,A向Rendezvous发送请求,Rendezvous转发请求给B,B主动和A建立连接
- 双方均存在NAT
- 通过一个Relay转发服务器作为中转,转发双方的消息
1.2 What the Internet is: The 4 Layer Internet Model
- Application:(http, bit-torrent)
- application-specific semantics
- Transport:(tcp, udp)
- guarantees correct, in-order delivery of data end-to-end
- controls congestion
- Network:(IP)
- must use the Internet Protocol(IP)
- best-effort attempt to deliver datagrams, no promises
- IP datagrams can get lost, out of order, and can be corrupted
- Link:(802.11, 3G, DSL, Ethernet)
- one-hop control
- delivers data over a single link between an end host and router, or between routers
two extra things need to know:
- IP is the "thin waist"
- the 7-layer OSI Model
- Application------http--------Application----7
- Application------ASCII-----Presentation--6
- Transport--------TCP-------Session--------5
- Transport--------TCP-------Transport------4
- Network----------IP----------Network--------3
- Link---------------Ethernet----Link------------2
- Link---------------Ethernet----Physical------1
1.3 What the Internet is: The IP service model
The Internet Protocol(IP)
- Transport Segment
- IP Datagram、Packets
- Link Frame
The IP service Model
Property Behavior Datagram Hop by hop routing Unreliable Packets might be dropped because of full wait queue Best effort Connectionless No per-flow state. Might be mis-sequenced why simple?
- faster, more streamlined and lower cost to build and maintain
- The end-to-end principle: implement features in the end hosts if possible
- Allows a variety of reliable(or not) services to be built on top
- Works over any link layer: IP makes very few assumptions about the link layer below
The IP service model
- Tries to prevent packets looping forever(TTL, time to live)
- Will fragment packets if they are too long
- Uses a header checksum to reduce chances of delivering datagram to wrong destination
- Allows for new versions of IP
- IPv4: 32 bit
- IPv6: 128 bit
- Allows for new options to be added to header
Quiz:
In an alternative to the Internet Protocol called "ATM" proposed in the 1990s, the source and destination address is replaced by a unique "flow" identifier that is dynamically created for each new end-to-end communication. Before the communication starts, the flow identifier is added to each router along the path, to indicate the next hop, and then removed when the communication is over. Which of the following statements are implications of this design? Check all that apply.
- (+)There is state in the network for every communication flow, rather than just for every destination.
- (-)If a link fails, there is no need to update any state in the network.
- (-)There must be a centralized controller to manage the insertion and removal of identifiers, as well as update them whenever a flow needs to be re-routed.
- (-)It means we no longer need a transport layer to reliably deliver correct, in-order data to applications.
1.4 A day in the life of a packet
- application: stream of data
- transport: segment of data
- network: packet of data
TCB Byte Stream
- "3-way handshaking"
- "SYN" "SYN/ACK" "ACK"
- To computer:network layer address: IP address
- To application:transport layer address: port
- web server: port 80
Inside the Stream
- hops: a link of two nodes
- access point
Inside Each Hop
- forwarding table
- key: IP address pattern, value: link
- longest prefix match
- default entry: least specific router
- mostly used in edge network
- forwarding table
1.5 Principle: Packet Switching
- Packet: A self-contained unit of data that carries information necessary for it to reach its destination.
- Flow: A collection of datagrams belonging to the same end-to-end communicaition, e.g. a TCP connection
- two consequences
- Simple: no per-flow state required, self-contained
- Efficient: allows flows to use all available link capacity
- Staticstical Multiplexing: taking a single resource and sharing it across multiple users in a probabilistic way
1.6 Principle: Layering
- layering: the organizaiton of a system into a number of separate functional components or layers
- Reasons for layering:
- Modularity
- Well defined service
- Reuse
- Separation of concerns
- Continuous improvement
- Peer to peer communications
1.7 Principle: Encapsulation
- layering:
- Transport: segment, inter-application communication
- Link: frame, inter-host communication on a shared link
- How layering manifests in data representation?
- layer N data is payload to layer N - 1
- allows to layer recursively
- Example: VPN(Virtual Private Network)
- VPN open a secure connection to a network you trust (like your office network)

- VPN open a secure connection to a network you trust (like your office network)
- Encapsulated payloads
- Help separation of concerns
- Help enforce boundaries/layering
- Simplify layer implementations
- Can not protect from malicious attacks
1.8 Byte order and Packet format
- Network byte order is big endian
- Helper functions: htons(), ntohs(), htonl(), ntohl()
- htons:"host to network short"
uint16_t http_port = 80; //Host order
if (packet->port == http_port) { ... //network vs. host order uint16_t http_port = 80;//Host order
uint16_t packet_port = ntohs(packet->port);
if (packet_port == http_port) { ... //OK
Quiz:
(+)The layout of a character string in memory is the same on big-endian and little-endian architectures.
1.9 IPv4 addresses and CIDR
- Goal of Internet Protocal(IP) Addresses
- Stitch many different networks together
- Need network-independent, unique address
- Internet Protocal, Version 4
- Layer 3(network) address
- 32 bits long(4 octets):a.b.c.d
- ex: 171.64.64.64
- Netmask: tells the device which IP addresses are local -- on the same link -- and which require going through an IP router.
if (A & netmask == B & netmask) {
on the same network
}
- 如果dest和src的掩码相同就不用经过路由器转发,可以直接发送
- smaller netmask means larger network
- Classes Inter-Domain Routing(CIDR, 无类别域间路由)
- 最初架构:将所有IP地址分成3类,每一类将IP地址分成两个部分,network和host,分别表示
- network part: administrative domain, such as MIT, BBN
- host part: which device within that network

- 当前CIDR架构:
- Rather than hava prefixes only of length 8, 16, and 24 bits, CIDR allows prefixes to be any number of bits
- Address block is pair: address, count
- All CIDR prefixes define a block of addresses that is a power of 2
- 因此描述IP地址时需要附带其掩码长度
- eg: 171.64.0.0/16 means any address in the range 171.64.0.0 to 171.64.255.255
- IPv4 Address Assignment
- IANA: Internet Assigned Numbers Authority
- Internet Corporation for Assignment of Names and Numbers(ICANN)'s job
- IANA gives out /8s(16百万个地址) to Regional Internet Registries(RIRs,每个大陆有一个,每个RIR有自己的分配政策)
- Ran out in Feburary 2011, 当只剩下最后5个/8s时,IANA给每个RIR一个/8
- IANA: Internet Assigned Numbers Authority
- 最初架构:将所有IP地址分成3类,每一类将IP地址分成两个部分,network和host,分别表示
- Longest prefix match(LPM)
- forwarding table is a set of CIDR entries
1.10 Address resolution protocol(ARP)
- Layers of Address
- ARP: The mechanism by which the network layer can discover the link address associated with a network address it's directly connected.
- A link address describes a particular network card. eg: Ethernet has 48 bit addresses
- Host: 171.67.76.65
- Interface: 00:13:72:4c:d9:6a
- Addressing Problem
- 因为子网掩码的概念,router或gateway通常有多个interface,每个接口(interface)对应一个识别自身网卡link address以及一个识别host主机的network layer address,例如下图中的网关(gateway),具有两个network cards:
- 当A向B发送IP packet时,通过子网掩码知道A和B不在一个网络中,因此首先需要经过gateway,A虽然知道gateway的IP地址,但是不一定知道gateway的link address
- 因为子网掩码的概念,router或gateway通常有多个interface,每个接口(interface)对应一个识别自身网卡link address以及一个识别host主机的network layer address,例如下图中的网关(gateway),具有两个network cards:
- Encapsulation
- 在IP层,Ip packet只需要知道dest和source host的ip地址
- 在Link layer,负责一段链路,因此每一段链路的link layer address
- Address Resolution Protocol
- request-reply protocal
- Each node keeps a cache of mappings from IP addresses on its network to link layer addresses
- 请求发送方式:广播(Link address全1,48个1)
- 请求中包含请求者的ip和link address,因此所有收到该ARP请求的节点都可以insert or refresh a mapping from their cache
- 响应发送方式:协议要求unicast(单播),通常实现为广播
- 节点仅响应对他们自己的请求
- 因此,如果一个节点断开连接或crash,当所有mappings过期后才算离开网络
- mappings存储时间取决于设备,Mac OSX保持20min。Cicso设备保持4hours
- 节点进入网络也可以发送gratuitour(免费) ARP packets,requesting non-existent mappings,in order to advertise themselves on a network
- ARP Packet Format(RFC826)
- Hardware: what link layer this request or response is for
- Protocol: what network protocol this request is for
- length fields: 长度
- opcode:packet类型是发送还是响应
cs244a-Introduction to Computer Networking-Unit1的更多相关文章
- A Simple Introduction To Computer Networking
Most networking discussions are a jumble of acronyms. Forget the configuration details - what are th ...
- MIT Introduction to Computer Science and Programming (Lesson one )
MIT Introduction to Computer Science and Programming (Lesson one ) 这篇文是记载 MIT 计算机科学及编程导论 第一集 的笔记 Les ...
- Computer Networking: A Top Down Approach
目录 Chapter 1: Computer Networks and the Internet 1. What is the Internet? 2. The Network Edge 3. The ...
- Note 2 for <Pratical Programming : An Introduction to Computer Science Using Python 3>
Book Imformation : <Pratical Programming : An Introduction to Computer Science Using Python 3> ...
- Note 1 for <Pratical Programming : An Introduction to Computer Science Using Python 3>
Book Imformation : <Pratical Programming : An Introduction to Computer Science Using Python 3> ...
- Introduction to Computer Science and Programming in Python--MIT
学习总结--(Introduction to Computer Science and Programming in Python--MIT) 导论 主题 重新利用数据结构来表达知识 理解算法的复杂性 ...
- Introduction to Computer Networks(网络架构与七层参考模式)
Network Connectivity 1. Important terminologies 1) Link 设备连接的连线.Link本身既可以是有线的,也可以是无线的. 2) Node 设备.电脑 ...
- An Introduction to Computer Thinking
1.Die Grundlage des Computers 1.1 Binärzahl in die Dezimalzahl umsetzen Bereiten nach Gewicht,dann b ...
- MITx: 6.00.1x Introduction to Computer Science and Programming Using Python Week 2: Simple Programs 4. Functions
ESTIMATED TIME TO COMPLETE: 18 minutes We can use the idea of bisection search to determine if a cha ...
- edX MITx: 6.00.1x Introduction to Computer Science and Programming Using Python 课程 Week 1: Python Basics Problem Set 1 Problem 3
Assume s is a string of lower case characters. Write a program that prints the longest substring of ...
随机推荐
- 八、定制new和delete
条款49:了解new-handler的行为 new异常会发生什么事? 在旧式的编译器中,operator new分配内存失败的时候,会返回一个null指针.而现在则是会抛出一个异常. 而在抛出这个异常 ...
- Super Mario(主席树)
Super Mario Mario is world-famous plumber. His “burly” figure and amazing jumping ability reminded ...
- python语言中多继承中super调用所有父类的方法以及要用到的MRO顺序
在python多继承中,利用super().父类方法,可以调用所有父类,从而在重写的状态下,再次对所有父类的调用! 例: print("******多继承使用super().__init__ ...
- sessionStorge和localStorage的使用-踩坑记_09
sessionStorge的使用 sessionStorage 属性允许你访问一个 session Storage 对象.它与 localStorage 相似,不同之处在于 localStorage ...
- JMS学习(一)
转自:https://blog.csdn.net/jiuqiyuliang/article/details/46701559 1.基本概念 JMS是java的消息服务,JMS的客户端之间可以通过JMS ...
- 一起学vue指令之v-bind
一起学vue指令之v-bind 一起学 vue指令 v-bind 网页的图片url地址并不是固定写死的,如果写死,每一个活动就改一次图片的url,一个网页有多少张图片,工作量多大? 通常来说,客户端 ...
- SQL Server2016 AlwaysOn无域高可用
https://blog.csdn.net/qq_41981651/article/details/90314817 https://blog.csdn.net/roven257/article/de ...
- OpenCV学习笔记(6)——几何变换
对图像进行各种变换,如移动,旋转,仿射变换等 变换 opencv提供了两个变换函数cv2.warpAffine cv2.warpPerspective使用这两个函数你可以实现所有类型的变换.前者接收的 ...
- jsp死循环
查看多重循环的 i 或者 j 是否写错
- Solr之java实现增删查操作
1.添加pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns=" ...