Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George...

25
Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu Feb 2011

Transcript of Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George...

Page 1: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Internet Measurement Under Edge-Transit

Separation

Dept. of Electrical and Computer Eng. George Mason University

Fairfax, VA 22030-4444, USA

Kunpeng Liu

Feb 2011

Page 2: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Introduction (Transit-Edge Separation)

2

• On BGP level, the Internet can be separated into two parts:– Edge: The set of ASes act as destination-only or appear at

most at the third last position of any AS path. Edge ASes count 97% of all the Ases

– Transit: The set of the rest Ases

Page 3: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Tools Introduction

3

• Route Views are captured from an AS that peers with many big ISPs (bias)

• Clean scripts are used to clean some specific characters, like [ , { } ( ) ] as well as to add space to IP prefixes. (pay attention to AS4)

• Java tools are used to parse the routing tables.– MyLib is the libraries used in other java tools.– RouTabParse reads tables to create the link object– DrawGraph reads tables to create the graph– ReadResult reads the link object and graph to calculate

the statistics we need.

Page 4: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Tools Introduction (Link object)

• The link object

4

SimpleAS a SimpleAS b SimpleAS c

LinkSimpleAS

– SimpleAS and LinkSimpleAS are defined in MyLib– SimpleAS is used to store the information of an AS,

including AS number, IP prefix, if use AS path prepending or not, in which position does the AS appear and so on

– LinkSimpleAS is the link of SimpleAS, implementing serialization operation.

Page 5: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Tools Introduction (Graph)

• Java Universal Network/Graph Framework (JUNG) http://jung.sourceforge.net/– ASLink is edges of the graph, used to record the AS

path prepending times, the usage frequency of a link and so on.

– ASNode is vertex of the graph.– ASLInk and ASNode are defined in MyLib

5

Page 6: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

An Example of Raw Routing Table

6

Page 7: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Detail of Script

7

Page 8: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Detail of Script (cont.)

8

Page 9: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

An Example of Clean Table

9

Page 10: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Java Code-RouTabParse

public static void main(String[] args) throws IOException {System.out.println((new Date()));RouTabParse rtParse = new RouTabParse(args[0]);

try {rtParse.read();

} catch (Exception e) {e.printStackTrace();

}SimpleAS current = rtParse.totalASList.first;while(current!=null) {

current.findLevel();current = current.next;

}FileOutputStream f_out = new FileOutputStream(args[0]+".total");ObjectOutputStream obj_out = new ObjectOutputStream(f_out);rtParse.totalASList.writeExternal(obj_out);obj_out.flush();obj_out.close();f_out.close();

}

10

Page 11: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Java Code-RouTabParse (Cont.)

void read() throws IOException {log("Reading from file.");int cout = 0;// Scanner scanner = new Scanner(new File(rTabName));try {

String text = br.readLine();while (text != null) {parseline(text.trim());text = br.readLine();cout++;

}} finally {

System.out.println("The total lines of routing table: "+cout);br.close();

}}

11

Page 12: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Java Code-RouTabParse (Cont.)

void parseline(String text) {String[] list = text.split(" ");text = null;int length = list.length;SimpleAS simpleAS = null;int as=0; //use to eliminate AS path prependingint position=0;try {

as=Integer.parseInt(list[length - 1]);simpleAS = new SimpleAS(as);list[length - 1] = null;position++;simpleAS.addPosition(position);simpleAS.addAddr(list[0].trim());totalASList.insert(simpleAS);

} catch (Exception e) {System.out.println(list[length - 1]);

}

12

int i=2;boolean isASprepended = false;while(i < length) {

int tmp=Integer.parseInt(list[length - i]);list[length - i] = null;if(as==tmp){

isASprepended = true;i++;continue;

}else{ as=tmp; i++;

simpleAS.setASPathPrepended(isASprepended); simpleAS = new SimpleAS(as); position++; simpleAS.addPosition(position); isASprepended = false; totalASList.insert(simpleAS); }

}

Page 13: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Java Code-DrawGraph

public static void main(String[] args) {System.out.println((new Date()));String filename = args[0];DrawGraph drawGraph = new DrawGraph(filename);drawGraph.init();try {

drawGraph.readSingleLine();FileOutputStream fos = new FileOutputStream(filename + ".graph");ObjectOutputStream out = new ObjectOutputStream(fos);out.writeObject(drawGraph.g);out.close();fos.close();System.out.println((new Date()));

} catch (Exception ex) {ex.printStackTrace();

}}

13

Page 14: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Java Code-DrawGraph (Cont.)

void readSingleLine() throws IOException {System.out.print("Reading from file.");int cout = 0;try {

String text = br.readLine();while (text != null) {drawSingleLine(text.trim());text = br.readLine();cout++;

} finally {System.out.println("The total lines of routing table: " + cout);br.close();

}}

14

Page 15: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Java Code-DrawGraph (Cont.)

void drawSingleLine(String rTabEntry) { String[] list = rTabEntry.split(" "); rTabEntry = null; int length = list.length; try { ASNode previousAS = null; ASNode currentAS = null; int previousASNo = 0; int currentASNo = 0; int weight = 1; for (int i = 1; i < length; i++) { currentASNo = Integer.parseInt(list[i]); if (previousASNo == currentASNo){ weight++; continue; } currentAS = findASNode(currentASNo); if (currentAS == null) { currentAS = new ASNode(currentASNo); g.addVertex(currentAS); }

15

if (previousAS != null) {ASLink link = findASLink(previousAS, currentAS);if (link == null) {link = new ASLink(linkCount++);link.setWeight(weight);g.addEdge(link, previousAS, currentAS,EdgeType.UNDIRECTED);} else {int tmp = link.getWeight();if(weight>tmp)link.setWeight(weight);link.addReferCount();}weight = 1;}previousAS = currentAS;previousASNo = currentASNo;}} catch (Exception e) {e.printStackTrace();}

Page 16: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Internet Diameter

16

Page 17: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Shortest paths

17

Page 18: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

CCDF of Ases’ Degree

18

Page 19: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Model Parameters vs. Time

19

Page 20: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Betweenness

20

Page 21: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

Routing Centrality

21

Page 22: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

T-E separation property

22

Page 23: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

AS Path Prepending Usage

23

Page 24: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

IP-Deaggregation

24

Page 25: Internet Measurement Under Edge-Transit Separation Dept. of Electrical and Computer Eng. George Mason University Fairfax, VA 22030-4444, USA Kunpeng Liu.

IP-Deaggregation

25