Outline. EE 122: Interdomain Routing Protocol (BGP) BGP Routing. Internet is more complicated... Ion Stoica TAs: Junda Liu, DK Moon, David Zats
|
|
- Bernice Bell
- 1 years ago
- Views:
Transcription
1 Outline EE 22: Interdomain Routing Protocol (BGP) Ion Stoica TAs: Junda Liu, DK Moon, David Zats (Materials with thanks to Vern Paxson, Jennifer Rexford, and colleagues at UC Berkeley) Why does BGP exist? What is interdomain routing and why do we need it? Why does BGP look the way it does? How does BGP work? Path vector algorithm and many boring details pay more attention to the why than the how 2 BGP Routing Internet is more complicated... Provides paths between networks Previous lecture presented two routing designs link-state distance vector Previous lecture assumed single domain all routers have same routing metric (shortest path) no privacy issues, no policy issues 3 Internet not just unstructured collection of networks Internet is comprised of a set of autonomous systems (ASes) independently run networks, some are commercial ISPs currently around 3, ASes ASes are sometimes called domains 4 hence interdomain routing
2 Internet: a large number of ASes Who speaks BGP? AS2 Large ISP Large ISP AS BGP R2 R3 R Stub Dial-Up ISP Stub Small ISP Stub Access Network R border router internal router Two types of routers Border router (Edge), Internal router (Core) 5 6 Purpose of BGP I-BGP and E-BGP you can reach net A via me AS2 I-BGP IGP: Intradomain routing Example: OSPF AS traffic to A R BGP R2 A R3 AS R2 E-BGP IGP AS2 A R3 announce B 7 table at R: R border router dest next hop A R2 internal router Share connectivity information across ASes 8 R R border router internal router R4 AS3 B R5 2
3 In more detail Rest of lecture... Motivate why BGP is the way it is Border router Internal router Discuss some problems with interdomain routing Discuss (briefly!) what a new BGP might look like. Provide internal reachability (IGP) 2. Learn routes to external destinations (ebgp) 3. Distribute externally learned routes internally (ibgp) 4. Select closest egress (IGP) 9. ASes are autonomous Want to choose their own internal routing protocol different algorithms and metrics 5 Minute Break Questions Before We Proceed? Want freedom to route based on policy my traffic can t be carried over my competitor s network I don t want to carry transit traffic through my network not expressible as Internet-wide shortest path! Want to keep their connections and policies private would reveal business relationships, network structure 2 3
4 2. ASes have business relationships 2. ASes have business relationships Relations between ASes provider customer peer peer Business Implications Customer pay provider Peers don t pay each other 3 traffic allowed traffic not allowed Peers provide transit between their customers Peers do not provide transit to each other 4 AS-level topology Destinations are IP prefixes (e.g., 2.../8) Nodes are Autonomous Systems (ASes) internals are hidden Links are connections & business relationships 4 3 What routing algorithm can we use? Key issues are policy and privacy Can t use shortest path domains don t have any shared metric policy choices might not be shortest path 5 2 Client Web server Can t use link state would have to flood policy preferences and topology would violate privacy 6 4
5 What about distance vector? Does not reveal any connectivity information But is designed to compute shortest paths Extend distance vector to allow policy choices? Path-Vector Routing Extension of distance-vector routing Support flexible routing policies Faster loop detection (no count-to-infinity) Key idea: advertise the entire path Distance vector: send distance metric per dest d Path vector: send the entire path for each dest d 3 d: path (2,) d: path () data traffic data traffic d Faster Loop Detection Node can easily detect a loop Look for its own node identifier in the path E.g., node sees itself in the path 3, 2, Node can simply discard paths with loops E.g., node simply discards the advertisement Flexible Policies Each node can apply local policies Path selection: Which path to use? Path export: Which paths to advertise? Examples Node 2 may prefer the path 2, 3, over 2, Node may not let node 3 hear the path, 2 3 d: path (2,) d: path () 2 9 d: path (3,2,) 2 5
6 Selection vs Export Selection policies determines which paths I want my traffic to take Export policies determines whose traffic I am willing to carry Illustration Route export Customer Route selection Primary Notes: any traffic I carry will follow the same path my traffic takes, so there is a connection between the two from a protocol perspective, decisions can be arbitrary can depend on entire path (advantage of PV approach) 2 Competitor Backup 22 Selection: controls traffic out of the network Export: controls traffic into the network Examples of Standard Policies Transit network: Selection: prefer customer to peer to provider Export: Let customers use any of your routes Let anyone route through you to your customer Block everything else Multihomed (nontransit) network: Export: Don t export routes for other domains Selection: pick primary over backup Issues with Path-vector Policy Routing Reachability Security Performance Lack of isolation Policy oscillations
7 Reachability In normal routing, if graph is connected then reachability is assured With policy routing, this does not always hold Peers don t provide transit to each other Customer doesn t provide transit for provider Security An AS can claim to serve a prefix that they actually don t have a route to (blackholing traffic) problem not specific to policy or path vector important because of AS autonomy Provider AS X AS 3 Provider Even worse: snoop on all traffic to almost any destination without anyone realizing that anything is wrong 25 AS 2 Customer Fixable: make ASes prove they have a path 26 but not used in today s Internet Performance BGP designed for policy not performance Performance (example) AS path length can be misleading An AS may have many router-level hops Hot Potato routing common but suboptimal AS wants to hand off the packet as soon as possible Even BGP shortest paths are not shortest Fewest AS s!= Fewest number of routers AS 3 BGP says that path 4 is better than path 3 2 AS 4 2% of paths inflated by at least 5 router hops AS 2 Not clear this is a significant problem AS 7
8 Lack of Isolation: dynamics If there is a change in the path, the path must be re-advertised to every node using the path Lack of isolation: routing table size Each BGP router must know path to every other IP prefix but router memory is expensive and thus constrained Number of prefixes growing more than linearly Subject of current research BGP updates per hour per prefix Fig. from [Huston] Number of prefixes in BGP table Fig. from [G. Huston] 29 3 Depends on the interactions of policies prefers over to reach Initially: nodes, 2, and 3 know only shortest path to
9 advertises its path to 2 advertise: advertises its path to advertise:
10 withdraws its path from 2 since is no longer using it withdraw: advertises its path to advertise: 39 4
11 3 withdraws its path from since is no longer using it withdraw: advertises its path to
12 2 withdraws its path from 3 since is no longer using it Depends on the interactions of policies withdraw: 46 We are back to where we started! Policy Oscillations (cont d) Redesigning BGP Policy autonomy vs network stability focus of much recent research Not an easy problem PSPACE-complete to decide whether given policies will eventually converge! [FP28] However, if policies follow normal business practices, stability is guaranteed [GR2] If we keep all the current constraints, not many alternative design options (at high-level) Which constraints might we lift? Are most policies really private? could use link-state for some of the routing Do ASes really need to see the entire path? could hide some of the path, reducing updates Can AS structure be integrated into addressing?
13 Summary BGP is essential to the Internet ties different organizations together Poses fundamental challenges... leads to use of path vector approach...and myriad details (not presented in this lecture) Reading: Sections K&R
BGP. EE 122, Fall 2013 Sylvia Ratnasamy
BGP EE 122, Fall 2013 Sylvia Ratnasamy http://inst.eecs.berkeley.edu/~ee122/ Material thanks to Ion Stoica, Scott Shenker, Jennifer Rexford, and many other colleagues BGP: The story so far l Destinations
Exterior Gateway Protocols (BGP)
Exterior Gateway Protocols (BGP) Internet Structure Large ISP Large ISP Stub Dial-Up ISP Small ISP Stub Stub Stub Autonomous Systems (AS) Internet is not a single network! The Internet is a collection
Intra-domain routing. CS 640: Introduction to Computer Networks. Inter-domain Routing: Hierarchy. Aditya Akella
CS 640: Introduction to Computer Networks Aditya Akella Lecture 11 - Inter-Domain Routing - BGP (Border Gateway Protocol) Intra-domain routing The Story So Far Routing protocols generate the forwarding
Inter-domain Routing. Outline. Border Gateway Protocol
Inter-domain Routing Outline Border Gateway Protocol Internet Structure Original idea Backbone service provider Consumer ISP Large corporation Consumer ISP Small corporation Consumer ISP Consumer ISP Small
Internet Technology. 09. Routing on the Internet. Paul Krzyzanowski. Rutgers University. Spring CS Paul Krzyzanowski
Internet Technology 09. Routing on the Internet Paul Krzyzanowski Rutgers University Spring 2016 March 21, 2016 CS 352 2013-2016 Paul Krzyzanowski 1 Summary Routing Enable a host to determine the next
Internet Technology 3/21/2016
Summary Internet Technology 09. Routing on the Internet Paul Krzyzanowski Rutgers University Spring 2016 Routing Enable a host to determine the next hop on a least-cost route to a Graph traversal problem
Lecture 11: Interdomain Routing
Lecture 11: Interdomain Routing CSE 123: Computer Networks Stefan Savage Midterm on Thursday Midterm reminder Covers everything through Lecture 10 (link state routing) All associated assigned readings
Inter-domain Routing Basics. Border Gateway Protocol. Inter-domain Routing Basics. Inter-domain Routing Basics. Exterior routing protocols created to:
Border Gateway Protocol Exterior routing protocols created to: control the expansion of routing tables provide a structured view of the Internet by segregating routing domains into separate administrations
6.263 Data Communication Networks
6.6 Data Communication Networks Lecture : Internet Routing (some slides are taken from I. Stoica and N. Mckewon & T. Griffin) Dina Katabi dk@mit.edu www.nms.csail.mit.edu/~dina Books Text Book Data Communication
Interdomain Routing. Outline
Interdomain Routing David Andersen 15-744 Spring 2007 Carnegie Mellon University Outline What does the Internet look like? Relationships between providers Enforced by: Export filters and import ranking
Outline. Internet Routing. Alleviating the Problem. DV Algorithm. Routing Information Protocol (RIP) Link State Routing. Routing algorithms
Outline Internet Routing Venkat Padmanabhan Microsoft Research 9 pril 2001 Routing algorithms distance-vector (DV) link-state (LS) Internet Routing border gateway protocol (BGP) BGP convergence paper Venkat
Border Gateway Protocol (BGP)
Border Gateway Protocol (BGP) Petr Grygárek rek 1 Role of Autonomous Systems on the Internet 2 Autonomous systems Not possible to maintain complete Internet topology information on all routers big database,
Multihoming and Multi-path Routing. CS 7260 Nick Feamster January 29. 2007
Multihoming and Multi-path Routing CS 7260 Nick Feamster January 29. 2007 Today s Topic IP-Based Multihoming What is it? What problem is it solving? (Why multihome?) How is it implemented today (in IP)?
Based on Computer Networking, 4 th Edition by Kurose and Ross
Computer Networks Internet Routing Based on Computer Networking, 4 th Edition by Kurose and Ross Intra-AS Routing Also known as Interior Gateway Protocols (IGP) Most common Intra-AS routing protocols:
Network Routing: Distance Vector, Link State 4/10/2012
Network Routing: Distance Vector, Link State 4/10/2012 1 2 Admin Possibility of scheduling Exam 2 during final period Recap: Distributed Distance-Vector Simple update rule: d ( h + 1) = min ( d + d ( h))
CS519: Computer Networks
: Computer Networks Lecture 4, Part 5: Mar 1, 2004 Internet Routing: AS s, igp, and BGP As we said earlier, the Internet is composed of Autonomous Systems (ASs) Where each AS is a set of routers, links,
Module 7. Routing and Congestion Control. Version 2 CSE IIT, Kharagpur
Module 7 Routing and Congestion Control Lesson 4 Border Gateway Protocol (BGP) Specific Instructional Objectives On completion of this lesson, the students will be able to: Explain the operation of the
Week 4 / Paper 1. Open issues in Interdomain Routing: a survey
Week 4 / Paper 1 Open issues in Interdomain Routing: a survey Marcelo Yannuzzi, Xavier Masip-Bruin, Olivier Bonaventure IEEE Network, Nov.-Dec. 2005, vol. 19, no. 6, pp. 49 56 Main point There are many
Internet inter-as routing: BGP
Internet inter-as routing: BGP BGP (Border Gateway Protocol): the de facto standard BGP provides each AS a means to: 1. Obtain subnet reachability information from neighboring ASs. 2. Propagate the reachability
Towards a Next- Generation Inter-domain Routing Protocol. L. Subramanian, M. Caesar, C.T. Ee, M. Handley, Z. Mao, S. Shenker, and I.
Towards a Next- Generation Inter-domain Routing Protocol L. Subramanian, M. Caesar, C.T. Ee, M. Handley, Z. Mao, S. Shenker, and I. Stoica Routing 1999 Internet Map Coloured by ISP Source: Bill Cheswick,
Active measurements: networks. Prof. Anja Feldmann, Ph.D. Dr. Nikolaos Chatzis Georgios Smaragdakis, Ph.D.
Active measurements: networks Prof. Anja Feldmann, Ph.D. Dr. Nikolaos Chatzis Georgios Smaragdakis, Ph.D. Outline Organization of Internet routing Types of domains Intra- and inter-domain routing Intra-domain
Internet Routing Overview
Internet Routing Overview AS, IGP,, BGP Agenda Routing at Large Types of Autonomous Systems -2 Introduction BGP Internet Routing Overview, v4.5 2 Page 45-1 Routing in Small Networks in small networks distance
Routing in Small Networks. Internet Routing Overview. Agenda. Routing in Large Networks
Routing in Small Networks Internet Routing Overview AS, IGP,, BGP in small networks distance vector or link state protocols like RIP or OSPF can be used for dynamic routing it is possible that every router
Border Gateway Protocol BGP4 (2)
Border Gateway Protocol BGP4 (2) Professor Richard Harris School of Engineering and Advanced Technology (SEAT) Presentation Outline Border Gateway Protocol - Continued Computer Networks - 1/2 Learning
Lecture 18: Border Gateway Protocol"
Lecture 18: Border Gateway Protocol" CSE 123: Computer Networks Alex C. Snoeren HW 3 due Wednesday! Some figures courtesy Mike Freedman Lecture 18 Overview" Path-vector Routing Allows scalable, informed
CSE 123b Communications Software
CSE 123b Communications Software Spring 2004 Lecture 6: Link-state & Interdomain Routing Stefan Savage Last class Routing: how to gets packets to their destination Forwarding: local calculation to decide
Routing Protocols. Interconnected ASes. Hierarchical Routing. Hierarchical Routing
Routing Protocols scale: with 200 million destinations: can t store all dest s in routing tables! routing table exchange would swamp links! Hierarchical Routing Our routing study thus far - idealization
Internet inter-as routing: BGP
Internet inter-as routing: BGP BGP (Border Gateway Protocol): the de facto standard BGP provides each AS a means to: 1. Obtain subnet reachability information from neighboring ASs. 2. Propagate the reachability
Can Forwarding Loops Appear when Activating ibgp Multipath Load Sharing?
Can Forwarding Loops Appear when Activating ibgp Multipath Load Sharing? Simon Balon and Guy Leduc Research Unit in Networking EECS Department- University of Liège (ULg) Institut Montefiore, B28 - B-4000
L11 : BGP Lecture 13. Timothy G. Griffin Computer Lab Cambridge UK
L11 : BGP Lecture 13 Timothy G. Griffin Computer Lab Cambridge UK JANET JANET and the Internet GARR-B WorldCom (UUNet) Architecture of Dynamic Routing IGP AS 1 BGP IGP = Interior Gateway Protocol. Metric
DD2491 p1 2008. Load balancing BGP. Johan Nicklasson KTHNOC/NADA
DD2491 p1 2008 Load balancing BGP Johan Nicklasson KTHNOC/NADA Dual home When do you need to be dual homed? How should you be dual homed? Same provider. Different providers. What do you need to have in
Introduction to Routing
Introduction to Routing How traffic flows on the Internet Philip Smith pfs@cisco.com RIPE NCC Regional Meeting, Moscow, 16-18 18 June 2004 1 Abstract Presentation introduces some of the terminologies used,
CSC458 Lecture 6. Homework #1 Grades. Inter-domain Routing IP Addressing. Administrivia. Midterm will Cover Following Topics
CSC458 Lecture 6 Inter-domain Routing IP Addressing Stefan Saroiu http://www.cs.toronto.edu/syslab/courses/csc458 University of Toronto at Mississauga Homework #1 Grades Fraction of Students 100 80 60
Route Discovery Protocols
Route Discovery Protocols Columbus, OH 43210 Jain@cse.ohio-State.Edu http://www.cse.ohio-state.edu/~jain/ 1 Overview Building Routing Tables Routing Information Protocol Version 1 (RIP V1) RIP V2 OSPF
Dynamic Routing Protocols II OSPF. Distance Vector vs. Link State Routing
Dynamic Routing Protocols II OSPF Relates to Lab 4. This module covers link state routing and the Open Shortest Path First (OSPF) routing protocol. 1 Distance Vector vs. Link State Routing With distance
Dove siamo? Architecture of Dynamic Routing
Dove siamo? Algoritmi di routing Protocolli di routing» Intra dominio (IGP)» Inter dominio (EGP) Le slides relative a questo argomenti sono tratte da Interdomain Routing and The Border Gateway Protocol
Would normally be due in a week, but there is no school next Wed so it ll be due Nov 16 th instead
CSE 123 Computer Networks Fall 2009 Lecture 9 Internet Routing: Link State Algorithms and Inter-domain Routing Assignments HW #2 is out Would normally be due in a week, but there is no school next Wed
Network Level Multihoming and BGP Challenges
Network Level Multihoming and BGP Challenges Li Jia Helsinki University of Technology jili@cc.hut.fi Abstract Multihoming has been traditionally employed by enterprises and ISPs to improve network connectivity.
Interdomain Routing. Project Report
Interdomain Routing Project Report Network Infrastructure improvement proposal To Company A Team 4: Zhang Li Bin Yang Md. Safiqul Islam Saurabh Arora Network Infrastructure Improvement Interdomain routing
Interior Gateway Protocols (RIP and OSPF)
Interior Gateway Protocols (RIP, OSPF) Interior Gateway Protocols (RIP and OSPF) What is Routing? To ensure information is delivered to the correct destination at a reasonable level of performance Forwarding
Towards a Next- Generation Inter-domain Routing Protocol
Towards a Next- Generation Inter-domain Routing Protocol L. Subramanian, M. Caesar, C.T. Ee, M. Handley, Z. Mao, S. Shenker, and I. Stoica Inter-domain Routing BGP4 is the only inter-domain routing protocol
ITRI CCL. IP Routing Primer. Paul C. Huang, Ph.D. ITRI / CCL / N300. CCL/N300; Paul Huang 1999/6/2 1
IP Routing Primer Paul C. Huang, Ph.D. ITRI / / N300 /N300; Paul Huang 1999/6/2 1 Basic Addressing / Subnetting Class A 0 Network Host Host Host 127 networks / 16,777,216 hosts Class A natural mask 255.0.0.0
Network-Wide Prediction of BGP Routes
Network-Wide Prediction of BGP Routes Nick Feamster Jennifer Rexford Georgia Tech Princeton University feamster@cc.gatech.edu jrex@cs.princeton.edu Abstract This paper presents provably correct algorithms
Internet Firewall CSIS 4222. Packet Filtering. Internet Firewall. Examples. Spring 2011 CSIS 4222. net15 1. Routers can implement packet filtering
Internet Firewall CSIS 4222 A combination of hardware and software that isolates an organization s internal network from the Internet at large Ch 27: Internet Routing Ch 30: Packet filtering & firewalls
Examination. IP routning på Internet och andra sammansatta nät, DD2491 IP routing in the Internet and other complex networks, DD2491
Examination IP routning på Internet och andra sammansatta nät, DD2491 IP routing in the Internet and other complex networks, DD2491 Date: December 15 2009 14:00 18:00 1. No help material is allowed - You
Lesson 5-3: Border Gateway Protocol
Unit 5: Intradomain and Interdomain Protocols Lesson 5-3: Gateway Protocol At a Glance The Gateway Protocol (BGP) is an interdomain routing protocol used in TCP/IP internetworks. BGP was created to allow
DD2491 p1 2008. Inter-domain routing and BGP part I Olof Hagsand KTH/CSC
DD2491 p1 2008 Inter-domain routing and BGP part I Olof Hagsand KTH/CSC Inter-domain routing The objective of inter-domain routing is to bind together all the thousands of independent IP networks that
Administra0via. STP lab due Wednesday (in BE 301a!), 5/15 BGP quiz Thursday (remember required reading), 5/16
BGP Brad Smith Administra0via How are the labs going? This week STP quiz Thursday, 5/9 Next week STP lab due Wednesday (in BE 301a!), 5/15 BGP quiz Thursday (remember required reading), 5/16 Following
Understanding Large Internet Service Provider Backbone Networks
Understanding Large Internet Service Provider Backbone Networks Joel M. Gottlieb IP Network Management & Performance Department AT&T Labs Research Florham Park, New Jersey joel@research.att.com Purpose
Policy Based QoS support using BGP Routing
Policy Based QoS support using BGP Routing Priyadarsi Nanda and Andrew James Simmonds Department of Computer Systems Faculty of Information Technology University of Technology, Sydney Broadway, NSW Australia
Internet Routing Protocols Lecture 04 BGP Continued
Internet Routing Protocols Lecture 04 BGP Continued Advanced Systems Topics Lent Term, 008 Timothy G. Griffin Computer Lab Cambridge UK Two Types of BGP Sessions AS External Neighbor (EBGP) in a different
B. Quoitin, S. Uhlig, C. Pelsser, L. Swinnen and O. Bonaventure
Interdomain traffic engineering with BGP B. Quoitin, S. Uhlig, C. Pelsser, L. Swinnen and O. Bonaventure Abstract Traffic engineering is performed by means of a set of techniques that can be used to better
Masterkurs Rechnernetze IN2097
Masterkurs Rechnernetze IN2097 Advanced computer networking Internet Protocols Prof. Dr.-Ing. Georg Carle, Wolfgang Mühlbauer Chair for Network Architectures and Services Computer Science Department Technical
IK2205 Inter-domain Routing
IK2205 Inter-domain Routing Lecture 5 Voravit Tanyingyong, voravit@kth.se Outline Redundancy, Symmetry, and Load Balancing Redundancy Symmetry Load balancing Scenarios Controlling Routing Inside the AS
Doing Don ts: Modifying BGP Attributes within an Autonomous System
Doing Don ts: Modifying BGP Attributes within an Autonomous System Luca Cittadini, Stefano Vissicchio, Giuseppe Di Battista Università degli Studi RomaTre IEEE/IFIP Network Operations and Management Symposium
BGP. 1. Internet Routing
BGP 1. Internet Routing (C) Herbert Haas 2005/03/11 1 Internet Routing Interior Gateway Protocols (IGPs) not suitable for Inter-ISP routing Technical metrics only No policy features Inter-ISP routing is
BGP route propagation. Internet AS relationships, Routing policy on Internet paths. Example of commercial relationship. Transit vs.
BGP route propagation Internet AS relationships, Routing policy on Internet paths Z. Morley Mao Lecture 5 Jan 20, 2005 Connectivity does not imply reachability Not all possible routes propagate Commercial
CS 457 Lecture 17 Global Internet. Fall 2011
CS 457 Lecture 17 Global Internet Fall 2011 Distance Vector: Poison Reverse If Z routes through Y to get to X : Z tells Y its (Z s) distance to X is infinite (so Y won t route to X via Z) Still, can have
The goal of this lecture is to explain how routing between different administrative domains
Copyright Hari Balakrishnan, 2001-2005, and Nick Feamster, 2005. All rights reserved. Please do not redistribute without permission. LECTURE 4 Interdomain Internet Routing The goal of this lecture is to
APNIC elearning: BGP Attributes
APNIC elearning: BGP Attributes Contact: training@apnic.net erou04_v1.0 Overview BGP Attributes Well-known and Optional Attributes AS Path AS Loop Detection ibgp and ebgp Next Hop Next Hop Best Practice
B. Quoitin, S. Uhlig, C. Pelsser, L. Swinnen and O. Bonaventure
Interdomain traffic engineering with BGP B. Quoitin, S. Uhlig, C. Pelsser, L. Swinnen and O. Bonaventure Abstract Traffic engineering is performed by means of a set of techniques that can be used to better
Border Gateway Protocol (BGP-4)
Vanguard Applications Ware IP and LAN Feature Protocols Border Gateway Protocol (BGP-4) Notice 2008 Vanguard Networks 25 Forbes Blvd Foxboro, MA 02035 Phone: (508) 964 6200 Fax: (508) 543 0237 All rights
BGP Prefix Hijack: An Empirical Investigation of a Theoretical Effect Masters Project
BGP Prefix Hijack: An Empirical Investigation of a Theoretical Effect Masters Project Advisor: Sharon Goldberg Adam Udi 1 Introduction Interdomain routing, the primary method of communication on the internet,
APNIC elearning: BGP Basics. Contact: training@apnic.net. erou03_v1.0
erou03_v1.0 APNIC elearning: BGP Basics Contact: training@apnic.net Overview What is BGP? BGP Features Path Vector Routing Protocol Peering and Transit BGP General Operation BGP Terminology BGP Attributes
Advanced BGP Policy. Advanced Topics
Advanced BGP Policy George Wu TCOM690 Advanced Topics Route redundancy Load balancing Routing Symmetry 1 Route Optimization Issues Redundancy provide multiple alternate paths usually multiple connections
A Systematic Approach to BGP Configuration Checking
A Systematic Approach to BGP Configuration Checking Nick Feamster and Hari Balakrishnan M.I.T. Computer Science and Artificial Intelligence Laboratory {feamster,hari}@lcs.mit.edu http://nms.lcs.mit.edu/bgp/
BGP: Border Gateway Protocol
LAB 8 BGP: Border Gateway Protocol An Interdomain Routing Protocol OBJECTIVES The objective of this lab is to simulate and study the basic features of an interdomain routing protocol called Border Gateway
Routing Basics. Chapter Goals. What Is Routing? CHAPTER
CHAPTER 5 Chapter Goals Learn the basics of routing protocols Learn the differences between link-state and distance vector routing protocols Learn about the metrics used by routing protocols to determine
Network Layer. Abusayeed Saifullah. CS 5600 Computer Networks. These slides are adapted from Kurose and Ross
Network Layer Abusayeed Saifullah CS 5600 Computer Networks These slides are adapted from Kurose and Ross IP addresses: how to get one? Q: how does network get subnet part of IP addr? A: gets allocated
Chapter 10 Link-State Routing Protocols
Chapter 10 Link-State Routing Protocols CCNA2-1 Chapter 10 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario. Thanks
OSPF -Open Shortest Path First
OSPF -Open Shortest Path First Abstract: This report discusses about the OSPF protocol, its advantages, some issues faced while designing large OSPF networks. Keywords: Internal Gateway Protocol (IGP),
E6998-02: Internet Routing
E6998-02: Internet Routing Lecture 13 Border Gateway Protocol, Part II John Ioannidis AT&T Labs Research ji+ir@cs.columbia.edu Copyright 2002 by John Ioannidis. All Rights Reserved. Announcements Lectures
A Case Study Design of Border Gateway Routing Protocol Using Simulation Technologies
A Case Study Design of Border Gateway Routing Protocol Using Simulation Technologies Chengcheng Li School of Information Technology University of Cincinnati Cincinnati, OH 45221 Chengcheng.li@uc.edu ABSTRACT
GregSowell.com. Mikrotik Routing
Mikrotik Routing Static Dynamic Routing To Be Discussed RIP Quick Discussion OSPF BGP What is Routing Wikipedia has a very lengthy explanation http://en.wikipedia.org/wiki/routing In the context of this
ETHEL THE AARDVARK GOES BGP ROUTING
Fable Of Contents ISP TECH TALK by Avi Freedman ETHEL THE AARDVARK GOES BGP ROUTING In this exciting column we'll actually walk through configuring a Cisco router for BGP. It's very important, however,
Datagram-based network layer: forwarding; routing. Additional function of VCbased network layer: call setup.
CEN 007C Computer Networks Fundamentals Instructor: Prof. A. Helmy Homework : Network Layer Assigned: Nov. 28 th, 2011. Due Date: Dec 8 th, 2011 (to the TA) 1. ( points) What are the 2 most important network-layer
Inter-Domain Routing: Stability, Policies, and Incentives
Inter-Domain Routing: Stability, Policies, and Incentives Vijay Ramachandran http://www.icsi.berkeley.edu/~vijayr Supported by the DoD URI program under ONR grant N00014-01-1-0795 Overview of Results:
Introduction to Dynamic Routing Protocol
Introduction to Dynamic Routing Protocol Routing Protocols and Concepts Ola Lundh Objectives Describe the role of dynamic routing protocols and place these protocols in the context of modern network design.
Resolving Inter-Domain Policy Disputes
Resolving Inter-Domain Policy Disputes heng Tien Ee, Byung-Gon hun, Vijay Ramachandran, Kaushik Lakshminarayanan, Scott Shenker Introduction Internet divided into different autonomous systems (ASes), controlled
Analyzing Capabilities of Commercial and Open-Source Routers to Implement Atomic BGP
Telfor Journal, Vol. 2, No. 1, 2010. 13 Analyzing Capabilities of Commercial and Open-Source Routers to Implement Atomic BGP Aleksandar Cvjetić and Aleksandra Smiljanić Abstract The paper analyzes implementations
CSE331: Introduction to Networks and Security. Lecture 8 Fall 2006
CSE331: Introduction to Networks and Security Lecture 8 Fall 2006 Announcements Reminders: Project I is due on Monday, Sept. 25th. Homework 1 is due on Friday, Sept. 29th. CSE331 Fall 2004 2 Internet Protocol
Cisco BGP Case Studies
Table of Contents BGP Case Studies...1 BGP4 Case Studies Section 1...3 Contents...3 Introduction...3 How Does BGP Work?...3 ebgp and ibgp...3 Enabling BGP Routing...4 Forming BGP Neighbors...4 BGP and
basic BGP in Huawei CLI
basic BGP in Huawei CLI BGP stands for Border Gateway Protocol. It is widely used among Internet Service Providers to make core routing decisions on the Internet. The current BGP version is BGP-4 defined
Routing Protocol - BGP
Routing Protocol - BGP BGP Enterprise Network BGP ISP AS 3000 AS 2000 BGP is using between Autonomous Systems BGP(cont.) RFC 1771(BGPv4) Support CIDR Transfer the AS information to reach destination Using
The Fundamentals of Routing
The Fundamentals of Routing EE22 Fall 20 Scott Shenker http://inst.eecs.berkeley.edu/~ee22/ Materials with thanks to Jennifer Rexford, Ion Stoica, Vern Paxson and other colleagues at Princeton and UC Berkeley
Using the Border Gateway Protocol for Interdomain Routing
CHAPTER 12 Using the Border Gateway Protocol for Interdomain Routing The Border Gateway Protocol (BGP), defined in RFC 1771, provides loop-free interdomain routing between autonomous systems. (An autonomous
Routing with OSPF. Introduction
Routing with OSPF Introduction The capabilities of an internet are largely determined by its routing protocol. An internet's scalability, its ability to quickly route around failures, and the consumption
s@lm@n Juniper Exam JN0-343 Juniper Networks Certified Internet Specialist (JNCIS-ENT) Version: 10.1 [ Total Questions: 498 ]
s@lm@n Juniper Exam JN0-343 Juniper Networks Certified Internet Specialist (JNCIS-ENT) Version: 10.1 [ Total Questions: 498 ] Topic 1, Volume A Question No : 1 - (Topic 1) How much overhead does the GRE
BGP overview BGP operations BGP messages BGP decision algorithm BGP states
BGP overview BGP operations BGP messages BGP decision algorithm BGP states 1 BGP overview Currently in version 4. InterAS (or Interdomain) routing protocol for exchanging network reachability information
Transitioning to BGP. ISP Workshops. Last updated 24 April 2013
Transitioning to BGP ISP Workshops Last updated 24 April 2013 1 Scaling the network How to get out of carrying all prefixes in IGP 2 Why use BGP rather than IGP? p IGP has Limitations: n The more routing
Introduction to LAN/WAN. Network Layer
Introduction to LAN/WAN Network Layer Topics Introduction (5-5.1) Routing (5.2) (The core) Internetworking (5.5) Congestion Control (5.3) Network Layer Design Isues Store-and-Forward Packet Switching Services
ASSEMBLER A BGP-COMPATIBLE MULTIPATH INTER-DOMAIN ROUTING PROTOCOL
ASSEMBLER A BGP-COMPATIBLE MULTIPATH INTER-DOMAIN ROUTING PROTOCOL Universidad Carlos III de Madrid/University of Twente June 2011 José Manuel Camacho Camacho Supervisor: Francisco Valera Pintor (UC3M)
Lecture 8: Routing I Distance-vector Algorithms. CSE 123: Computer Networks Stefan Savage
Lecture 8: Routing I Distance-vector Algorithms CSE 3: Computer Networks Stefan Savage This class New topic: routing How do I get there from here? Overview Routing overview Intra vs. Inter-domain routing
Routing and traffic measurements in ISP networks
Routing and traffic measurements in ISP networks Steve Uhlig Network Architectures and Services Delft University of Technology Email : S.P.W.G.Uhlig@ewi.tudelft.nl URL : http://www.nas.ewi.tudelft.nl/people/steve/
Quantifying the BGP routes diversity inside a tier-1 network
Quantifying the BGP routes diversity inside a tier-1 network Steve Uhlig, Sébastien Tandel Department of Computing Science and Engineering Université catholique de Louvain, Louvain-la-neuve, B-1348, Belgium
Introduction to LAN/WAN. Network Layer (part II)
Introduction to LAN/WAN Network Layer (part II) Topics The Network Layer Introduction Routing (5.2) The Internet (5.5) IP, IP addresses ARP (5.5.4) OSPF (5.5.5) BGP (5.5.6) Congestion Control (5.3) Internetworking
Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science. Abstract
Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.033, Spring 2009 Wide-Area Internet Routing January 2009 Abstract Our goal is to explain how routing between
Unicast Routing Protocols (RIP, OSPF, and BGP)
CHAPTER 4 Unicast Routing Protocols (RIP, OSPF, and BGP) Exercises. RIP is an intradomain routing protocol that enables routers to update their routing tables within an autonomous system.. A RIP message
CS 3251- Computer Networks 1: Routing Algorithms
CS 35- Computer Networks : Routing Algorithms Professor Patrick Tranor 0//3 Lecture 3 Reminders The due date for Homework was moved to Thursda. Reason: Allow ou to attend toda s lecture. Project is still
Traffic engineering with BGP
Traffic engineering with BGP Christian Ludwig (cludwig@cs.tu-berlin.de) Seminar "Internet Routing", Technical University Berlin SS 2009 (version from July 2, 2009) Distributed under a Creative Commons