Removed NLR sites from topology
[sfa.git] / sfa / managers / vini / topology.py
1 #!/usr/bin/python
2
3 # $Id: topology.py 14181 2009-07-01 19:46:07Z acb $
4 # $URL: https://svn.planet-lab.org/svn/NodeManager-topo/trunk/topology.py $
5
6 #
7 # Links in the physical topology, gleaned from looking at the Internet2
8 # topology map.  Link (a, b) connects sites with IDs a and b.
9 #
10 PhysicalLinks = [(2, 12),  # I2 Princeton - New York 
11          (11, 13), # I2 Chicago - Wash DC
12          (11, 15), # I2 Chicago - Atlanta
13          (11, 16), # I2 Chicago - CESNET
14          (11, 17), # I2 Chicago - Kansas City
15          (12, 13), # I2 New York - Wash DC
16          (13, 15), # I2 Wash DC - Atlanta
17          (14, 15), # Ga Tech - I2 Atlanta
18          (15, 19), # I2 Atlanta - Houston
19          (17, 19), # I2 Kansas City - Houston
20          (17, 22), # I2 Kansas City - Salt Lake City
21          (17, 24), # I2 Kansas City - UMKC
22          (19, 20), # I2 Houston - Los Angeles
23          (20, 21), # I2 Los Angeles - Seattle
24          (20, 22), # I2 Los Angeles - Salt Lake City
25          (21, 22)] # I2 Seattle - Salt Lake City
26
27