omf_sfa 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +24 -0
- data/Gemfile +6 -0
- data/README.md +211 -0
- data/Rakefile +23 -0
- data/bin/parse_rspec.rb +167 -0
- data/etc/omf-sfa/omf-sfa-am.yaml +12 -0
- data/examples/exogeni5nodemanifest.rspec +105 -0
- data/examples/instageni5nodemanifest.rspec +150 -0
- data/lib/omf-sfa/am/am-rest/REST_API.md +301 -0
- data/lib/omf-sfa/am/am-rest/account_handler.rb +145 -0
- data/lib/omf-sfa/am/am-rest/am_rest_server.rb +255 -0
- data/lib/omf-sfa/am/am-rest/api_template.html +48 -0
- data/lib/omf-sfa/am/am-rest/config.ru +110 -0
- data/lib/omf-sfa/am/am-rest/resource_handler.rb +178 -0
- data/lib/omf-sfa/am/am-rest/rest_handler.rb +573 -0
- data/lib/omf-sfa/am/am-rest/session_authenticator.rb +130 -0
- data/lib/omf-sfa/am/am-rpc/abstract_rpc_service.rb +60 -0
- data/lib/omf-sfa/am/am-rpc/am_authorizer.rb +161 -0
- data/lib/omf-sfa/am/am-rpc/am_rpc_api.rb +450 -0
- data/lib/omf-sfa/am/am-rpc/am_rpc_service.rb +402 -0
- data/lib/omf-sfa/am/am_liaison.rb +93 -0
- data/lib/omf-sfa/am/am_manager.rb +859 -0
- data/lib/omf-sfa/am/am_runner.rb +108 -0
- data/lib/omf-sfa/am/am_scheduler.rb +146 -0
- data/lib/omf-sfa/am/am_server.rb +194 -0
- data/lib/omf-sfa/am/config.ru +122 -0
- data/lib/omf-sfa/am/credential.rb +145 -0
- data/lib/omf-sfa/am/default_authorizer.rb +44 -0
- data/lib/omf-sfa/am/privilege_credential.rb +76 -0
- data/lib/omf-sfa/am/signature.rb +37 -0
- data/lib/omf-sfa/am/user_credential.rb +56 -0
- data/lib/omf-sfa/am.rb +7 -0
- data/lib/omf-sfa/model/abstract_prop_description.rb +87 -0
- data/lib/omf-sfa/model/model_class_description.rb +145 -0
- data/lib/omf-sfa/model/model_data_prop_description.rb +28 -0
- data/lib/omf-sfa/model/model_obj_prop_description.rb +49 -0
- data/lib/omf-sfa/model/ontology.rb +169 -0
- data/lib/omf-sfa/resource/README.md +24 -0
- data/lib/omf-sfa/resource/channel.rb +49 -0
- data/lib/omf-sfa/resource/comp_group.rb +41 -0
- data/lib/omf-sfa/resource/component_lease.rb +10 -0
- data/lib/omf-sfa/resource/constants.rb +24 -0
- data/lib/omf-sfa/resource/group_component.rb +35 -0
- data/lib/omf-sfa/resource/group_membership.rb +17 -0
- data/lib/omf-sfa/resource/gurn.rb +187 -0
- data/lib/omf-sfa/resource/interface.rb +78 -0
- data/lib/omf-sfa/resource/ip.rb +48 -0
- data/lib/omf-sfa/resource/link.rb +29 -0
- data/lib/omf-sfa/resource/node.rb +75 -0
- data/lib/omf-sfa/resource/oaccount.rb +94 -0
- data/lib/omf-sfa/resource/ocomponent.rb +134 -0
- data/lib/omf-sfa/resource/ogroup.rb +106 -0
- data/lib/omf-sfa/resource/olease.rb +61 -0
- data/lib/omf-sfa/resource/oproperty.rb +178 -0
- data/lib/omf-sfa/resource/oreference.rb +15 -0
- data/lib/omf-sfa/resource/oresource.rb +491 -0
- data/lib/omf-sfa/resource/project.rb +28 -0
- data/lib/omf-sfa/resource/project_membership.rb +13 -0
- data/lib/omf-sfa/resource/sfa_base.rb +544 -0
- data/lib/omf-sfa/resource/user.rb +25 -0
- data/lib/omf-sfa/resource.rb +20 -0
- data/lib/omf-sfa/util/create_sample_testbed.rb +68 -0
- data/lib/omf-sfa/util/load_from_sfa_xml.rb +65 -0
- data/lib/omf-sfa/version.rb +4 -0
- data/lib/omf_sfa.rb +5 -0
- data/omf_sfa.gemspec +46 -0
- data/owl/README +3 -0
- data/owl/ben-6509.rdf +1377 -0
- data/owl/ben-dell.rdf +586 -0
- data/owl/ben-dtn.rdf +1698 -0
- data/owl/ben.rdf +1335 -0
- data/owl/collections.owl +309 -0
- data/owl/compute.owl +1486 -0
- data/owl/domain.owl +444 -0
- data/owl/dtn.owl +1165 -0
- data/owl/ec2.owl +385 -0
- data/owl/ethernet.owl +466 -0
- data/owl/eucalyptus.owl +431 -0
- data/owl/id-mp-Request1.rdf +247 -0
- data/owl/itu-grid.owl +147 -0
- data/owl/kansei.owl +511 -0
- data/owl/layer.owl +645 -0
- data/owl/location.owl +117 -0
- data/owl/mass.rdf +608 -0
- data/owl/nlr.rdf +901 -0
- data/owl/orca.owl +181 -0
- data/owl/planetlab.owl +124 -0
- data/owl/protogeni.owl +467 -0
- data/owl/request-6509-2.rdf +150 -0
- data/owl/request-6509-3.rdf +158 -0
- data/owl/request-6509.rdf +199 -0
- data/owl/request.owl +222 -0
- data/owl/storage.owl +511 -0
- data/owl/topology.owl +608 -0
- data/schema/rspec-v3/ad-common.xsd +269 -0
- data/schema/rspec-v3/ad-reservation.rnc +12 -0
- data/schema/rspec-v3/ad-reservation.rng +28 -0
- data/schema/rspec-v3/ad-reservation.xsd +13 -0
- data/schema/rspec-v3/ad.rnc +151 -0
- data/schema/rspec-v3/ad.xsd +77 -0
- data/schema/rspec-v3/any-extension-schema.xsd +38 -0
- data/schema/rspec-v3/any-extension.rnc +30 -0
- data/schema/rspec-v3/common.rnc +185 -0
- data/schema/rspec-v3/manifest-common.xsd +244 -0
- data/schema/rspec-v3/manifest-request.xsd +95 -0
- data/schema/rspec-v3/manifest.rnc +62 -0
- data/schema/rspec-v3/manifest.xsd +34 -0
- data/schema/rspec-v3/request-common.xsd +219 -0
- data/schema/rspec-v3/request-reservation.rnc +12 -0
- data/schema/rspec-v3/request-reservation.xsd +13 -0
- data/schema/rspec-v3/request.rnc +118 -0
- data/schema/rspec-v3/request.xsd +94 -0
- data/share/assets/css/default.css +147 -0
- data/share/assets/css/rest_api.css +0 -0
- data/share/assets/network.html +28 -0
- data/share/assets/network.js +82 -0
- data/spec/am/am-rest/common.rb +29 -0
- data/spec/am/am-rest/resource_group_handler_XspecX.rb +97 -0
- data/spec/am/am-rest/resource_handler_spec.rb +204 -0
- data/spec/am/am-rpc/sfa_methods_spec.rb +150 -0
- data/spec/am/am_manager_spec.rb +307 -0
- data/spec/am/am_scheduler_spec.rb +57 -0
- data/spec/am/common.rb +24 -0
- data/spec/resource/common.rb +31 -0
- data/spec/resource/node_spec.rb +171 -0
- data/spec/resource/oaccount_spec.rb +92 -0
- data/spec/resource/ocomponent_spec.rb +225 -0
- data/spec/resource/ogroup_spec.rb +93 -0
- data/spec/resource/oresource_spec.rb +208 -0
- data/spec/resource_and_leases_spec.rb +377 -0
- data/test/OLD_FILES/assertion1.xml +117 -0
- data/test/OLD_FILES/greeter_spec.rb +15 -0
- data/test/OLD_FILES/mongo_test.rb +45 -0
- data/test/OLD_FILES/req-sfa-2.xml +6 -0
- data/test/OLD_FILES/req-sfa-g.xml +8 -0
- data/test/OLD_FILES/req-sfa-g2.xml +10 -0
- data/test/OLD_FILES/req-sfa-g3.xml +14 -0
- data/test/OLD_FILES/req-sfa.xml +6 -0
- data/test/OLD_FILES/req1.xml +22 -0
- data/test/OLD_FILES/req1b.xml +15 -0
- data/test/OLD_FILES/rspec-test.xml +1867 -0
- data/test/OLD_FILES/test.rb +67 -0
- data/test/OLD_FILES/test2.rb +32 -0
- data/test/am/am_manager_rspec_tests.rb +378 -0
- data/test/am/am_manager_tests.rb +518 -0
- data/test/am/am_scheduler_tests.rb +173 -0
- data/test/resource/olease_test.rb +74 -0
- data/test/sfa_requests/request.xml +5 -0
- data/test/sfa_requests/request1.xml +5 -0
- data/test/sfa_requests/request2.xml +5 -0
- data/test/sfa_requests/request3.xml +5 -0
- metadata +601 -0
data/owl/nlr.rdf
ADDED
|
@@ -0,0 +1,901 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
<!DOCTYPE rdf:RDF [
|
|
5
|
+
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
|
|
6
|
+
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
|
|
7
|
+
<!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" >
|
|
8
|
+
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
|
|
9
|
+
<!ENTITY ben "http://geni-orca.renci.org/owl/ben.rdf#" >
|
|
10
|
+
<!ENTITY dtn "http://geni-orca.renci.org/owl/dtn.owl#" >
|
|
11
|
+
<!ENTITY wgs84_pos "http://www.w3.org/2003/01/geo/wgs84_pos#" >
|
|
12
|
+
<!ENTITY mass "http://geni-orca.renci.org/owl/mass.rdf#" >
|
|
13
|
+
<!ENTITY layer "http://geni-orca.renci.org/owl/layer.owl#" >
|
|
14
|
+
<!ENTITY domain "http://geni-orca.renci.org/owl/domain.owl#" >
|
|
15
|
+
<!ENTITY nlr "http://geni-orca.renci.org/owl/nlr.rdf#nlr/" >
|
|
16
|
+
<!ENTITY layer2 "http://geni-orca.renci.org/owl/layer.owl#10" >
|
|
17
|
+
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
|
|
18
|
+
<!ENTITY NLR "http://geni-orca.renci.org/owl/nlr.rdf#NLR/" >
|
|
19
|
+
<!ENTITY ethernet "http://geni-orca.renci.org/owl/ethernet.owl#" >
|
|
20
|
+
<!ENTITY location "http://geni-orca.renci.org/owl/location.owl#" >
|
|
21
|
+
<!ENTITY topology "http://geni-orca.renci.org/owl/topology.owl#" >
|
|
22
|
+
<!ENTITY starlight "http://geni-orca.renci.org/owl/starlight.rdf#" >
|
|
23
|
+
<!ENTITY BBN "http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/" >
|
|
24
|
+
<!ENTITY collections "http://geni-orca.renci.org/owl/collections.owl#" >
|
|
25
|
+
<!ENTITY Mass "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Mass/" >
|
|
26
|
+
<!ENTITY Renci "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/" >
|
|
27
|
+
<!ENTITY Houston "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/" >
|
|
28
|
+
<!ENTITY StarLight "http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/" >
|
|
29
|
+
<!ENTITY Cisco "http://geni-orca.renci.org/owl/nlr.rdf#Duke/Cisco/6509/" >
|
|
30
|
+
<!ENTITY Cisco3 "http://geni-orca.renci.org/owl/nlr.rdf#Mass/Cisco/6509/" >
|
|
31
|
+
<!ENTITY Cisco2 "http://geni-orca.renci.org/owl/nlr.rdf#Renci/Cisco/6509/" >
|
|
32
|
+
<!ENTITY Cisco6 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/" >
|
|
33
|
+
<!ENTITY Cisco5 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/" >
|
|
34
|
+
<!ENTITY Cisco4 "http://geni-orca.renci.org/owl/nlr.rdf#StarLight/Cisco/6509/" >
|
|
35
|
+
<!ENTITY Cisco8 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509/" >
|
|
36
|
+
<!ENTITY Cisco7 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/" >
|
|
37
|
+
<!ENTITY NetworkService "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Domain/NetworkService/1/" >
|
|
38
|
+
<!ENTITY TenGigabitEthernet5 "http://geni-orca.renci.org/owl/nlr.rdf#Mass/Cisco/6509/TenGigabitEthernet/1/2/" >
|
|
39
|
+
<!ENTITY TenGigabitEthernet7 "http://geni-orca.renci.org/owl/nlr.rdf#Mass/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
40
|
+
<!ENTITY TenGigabitEthernet "http://geni-orca.renci.org/owl/nlr.rdf#Duke/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
41
|
+
<!ENTITY TenGigabitEthernet4 "http://geni-orca.renci.org/owl/nlr.rdf#Renci/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
42
|
+
<!ENTITY TenGigabitEthernet2 "http://geni-orca.renci.org/owl/nlr.rdf#Renci/Cisco/6509/TenGigabitEthernet/1/2/" >
|
|
43
|
+
<!ENTITY TenGigabitEthernet9 "http://geni-orca.renci.org/owl/mass.rdf#UMass/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
44
|
+
<!ENTITY TenGigabitEthernet16 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/" >
|
|
45
|
+
<!ENTITY TenGigabitEthernet17 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
46
|
+
<!ENTITY TenGigabitEthernet14 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/" >
|
|
47
|
+
<!ENTITY TenGigabitEthernet11 "http://geni-orca.renci.org/owl/nlr.rdf#StarLight/Cisco/6509/TenGigabitEthernet/1/3/" >
|
|
48
|
+
<!ENTITY TenGigabitEthernet8 "http://geni-orca.renci.org/owl/nlr.rdf#StarLight/Cisco/6509/TenGigabitEthernet/1/2/" >
|
|
49
|
+
<!ENTITY TenGigabitEthernet18 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
50
|
+
<!ENTITY TenGigabitEthernet6 "http://geni-orca.renci.org/owl/nlr.rdf#StarLight/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
51
|
+
<!ENTITY TenGigabitEthernet3 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/1/" >
|
|
52
|
+
<!ENTITY TenGigabitEthernet19 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/2/" >
|
|
53
|
+
<!ENTITY TenGigabitEthernet21 "http://geni-orca.renci.org/owl/learn.rdf#Learn/NLR/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
54
|
+
<!ENTITY TenGigabitEthernet20 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
55
|
+
<!ENTITY TenGigabitEtherent "http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509/TenGigabitEtherent/1/1/" >
|
|
56
|
+
<!ENTITY TenGigabitEthernet12 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/" >
|
|
57
|
+
<!ENTITY TenGigabitEthernet15 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
58
|
+
<!ENTITY TenGigabitEthernet13 "http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/" >
|
|
59
|
+
<!ENTITY TenGigabitEthernet10 "http://geni-orca.renci.org/owl/starlight.rdf#StarLight/Cisco/6509/TenGigabitEthernet/1/1/" >
|
|
60
|
+
]>
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<rdf:RDF xmlns="http://geni-orca.renci.org/owl/nlr.rdf#"
|
|
64
|
+
xml:base="http://geni-orca.renci.org/owl/nlr.rdf"
|
|
65
|
+
xmlns:NetworkService="&NLR;Domain/NetworkService/1/"
|
|
66
|
+
xmlns:TenGigabitEthernet21="http://geni-orca.renci.org/owl/learn.rdf#Learn/NLR/Cisco/6509/TenGigabitEthernet/1/1/"
|
|
67
|
+
xmlns:location="http://geni-orca.renci.org/owl/location.owl#"
|
|
68
|
+
xmlns:TenGigabitEthernet20="&NLR;Houston/Cisco/6509/TenGigabitEthernet/1/1/"
|
|
69
|
+
xmlns:Cisco="http://geni-orca.renci.org/owl/nlr.rdf#Duke/Cisco/6509/"
|
|
70
|
+
xmlns:mass="http://geni-orca.renci.org/owl/mass.rdf#"
|
|
71
|
+
xmlns:dtn="http://geni-orca.renci.org/owl/dtn.owl#"
|
|
72
|
+
xmlns:Cisco7="&NLR;StarLight/Cisco/6509/"
|
|
73
|
+
xmlns:StarLight="&NLR;StarLight/"
|
|
74
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
75
|
+
xmlns:Cisco8="&NLR;Houston/Cisco/6509/"
|
|
76
|
+
xmlns:Cisco5="&NLR;Renci/Cisco/6509/"
|
|
77
|
+
xmlns:Cisco6="&NLR;BBN/Cisco/6509/"
|
|
78
|
+
xmlns:Cisco3="http://geni-orca.renci.org/owl/nlr.rdf#Mass/Cisco/6509/"
|
|
79
|
+
xmlns:nlr="http://geni-orca.renci.org/owl/nlr.rdf#nlr/"
|
|
80
|
+
xmlns:Cisco4="http://geni-orca.renci.org/owl/nlr.rdf#StarLight/Cisco/6509/"
|
|
81
|
+
xmlns:BBN="&NLR;BBN/"
|
|
82
|
+
xmlns:Cisco2="http://geni-orca.renci.org/owl/nlr.rdf#Renci/Cisco/6509/"
|
|
83
|
+
xmlns:wgs84_pos="http://www.w3.org/2003/01/geo/wgs84_pos#"
|
|
84
|
+
xmlns:ben="http://geni-orca.renci.org/owl/ben.rdf#"
|
|
85
|
+
xmlns:TenGigabitEthernet2="&Cisco2;TenGigabitEthernet/1/2/"
|
|
86
|
+
xmlns:Mass="&NLR;Mass/"
|
|
87
|
+
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
|
88
|
+
xmlns:TenGigabitEthernet9="&mass;UMass/Cisco/6509/TenGigabitEthernet/1/1/"
|
|
89
|
+
xmlns:TenGigabitEthernet7="&Cisco3;TenGigabitEthernet/1/1/"
|
|
90
|
+
xmlns:TenGigabitEthernet8="&Cisco4;TenGigabitEthernet/1/2/"
|
|
91
|
+
xmlns:TenGigabitEthernet5="&Cisco3;TenGigabitEthernet/1/2/"
|
|
92
|
+
xmlns:TenGigabitEthernet6="&Cisco4;TenGigabitEthernet/1/1/"
|
|
93
|
+
xmlns:TenGigabitEthernet3="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/1/"
|
|
94
|
+
xmlns:TenGigabitEthernet4="&Cisco2;TenGigabitEthernet/1/1/"
|
|
95
|
+
xmlns:layer2="&layer;10"
|
|
96
|
+
xmlns:starlight="http://geni-orca.renci.org/owl/starlight.rdf#"
|
|
97
|
+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
|
98
|
+
xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
|
|
99
|
+
xmlns:ethernet="http://geni-orca.renci.org/owl/ethernet.owl#"
|
|
100
|
+
xmlns:domain="http://geni-orca.renci.org/owl/domain.owl#"
|
|
101
|
+
xmlns:topology="http://geni-orca.renci.org/owl/topology.owl#"
|
|
102
|
+
xmlns:collections="http://geni-orca.renci.org/owl/collections.owl#"
|
|
103
|
+
xmlns:TenGigabitEthernet19="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/2/"
|
|
104
|
+
xmlns:TenGigabitEthernet18="&NLR;Renci/Cisco/6509/TenGigabitEthernet/1/1/"
|
|
105
|
+
xmlns:TenGigabitEthernet17="&NLR;BBN/Cisco/6509/TenGigabitEthernet/1/1/"
|
|
106
|
+
xmlns:TenGigabitEthernet16="&NLR;BBN/Cisco/6509/TenGigabitEthernet/1/2/"
|
|
107
|
+
xmlns:Houston="&NLR;Houston/"
|
|
108
|
+
xmlns:layer="http://geni-orca.renci.org/owl/layer.owl#"
|
|
109
|
+
xmlns:Renci="&NLR;Renci/"
|
|
110
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
|
111
|
+
xmlns:TenGigabitEthernet10="&starlight;StarLight/Cisco/6509/TenGigabitEthernet/1/1/"
|
|
112
|
+
xmlns:TenGigabitEthernet11="&Cisco4;TenGigabitEthernet/1/3/"
|
|
113
|
+
xmlns:TenGigabitEtherent="&NLR;Houston/Cisco/6509/TenGigabitEtherent/1/1/"
|
|
114
|
+
xmlns:TenGigabitEthernet="&Cisco;TenGigabitEthernet/1/1/"
|
|
115
|
+
xmlns:TenGigabitEthernet14="&NLR;Renci/Cisco/6509/TenGigabitEthernet/1/2/"
|
|
116
|
+
xmlns:TenGigabitEthernet15="&NLR;StarLight/Cisco/6509/TenGigabitEthernet/1/1/"
|
|
117
|
+
xmlns:TenGigabitEthernet12="&NLR;StarLight/Cisco/6509/TenGigabitEthernet/1/3/"
|
|
118
|
+
xmlns:NLR="http://geni-orca.renci.org/owl/nlr.rdf#NLR/"
|
|
119
|
+
xmlns:TenGigabitEthernet13="&NLR;StarLight/Cisco/6509/TenGigabitEthernet/1/2/">
|
|
120
|
+
<owl:Ontology rdf:about="">
|
|
121
|
+
<owl:imports rdf:resource="http://geni-orca.renci.org/owl/domain.owl"/>
|
|
122
|
+
</owl:Ontology>
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
<!--
|
|
127
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
128
|
+
//
|
|
129
|
+
// Object Properties
|
|
130
|
+
//
|
|
131
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
132
|
+
-->
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
<!-- http://geni-orca.renci.org/owl/collections.owl#element -->
|
|
138
|
+
|
|
139
|
+
<owl:ObjectProperty rdf:about="&collections;element"/>
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#hasAccessMethod -->
|
|
144
|
+
|
|
145
|
+
<owl:ObjectProperty rdf:about="&domain;hasAccessMethod"/>
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#hasResourceType -->
|
|
150
|
+
|
|
151
|
+
<owl:ObjectProperty rdf:about="&domain;hasResourceType"/>
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#hasService -->
|
|
156
|
+
|
|
157
|
+
<owl:ObjectProperty rdf:about="&domain;hasService"/>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#hasTopology -->
|
|
162
|
+
|
|
163
|
+
<owl:ObjectProperty rdf:about="&domain;hasTopology"/>
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#TenGbase-R -->
|
|
168
|
+
|
|
169
|
+
<owl:ObjectProperty rdf:about="&dtn;TenGbase-R"/>
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#WDM -->
|
|
174
|
+
|
|
175
|
+
<owl:ObjectProperty rdf:about="&dtn;WDM"/>
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
<!-- http://geni-orca.renci.org/owl/ethernet.owl#availableVLANSet -->
|
|
180
|
+
|
|
181
|
+
<owl:ObjectProperty rdf:about="ðernet;availableVLANSet"/>
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#atLayer -->
|
|
186
|
+
|
|
187
|
+
<owl:ObjectProperty rdf:about="&layer;atLayer"/>
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#hasBitRate -->
|
|
192
|
+
|
|
193
|
+
<owl:ObjectProperty rdf:about="&layer;hasBitRate"/>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#switchingCapability -->
|
|
198
|
+
|
|
199
|
+
<owl:ObjectProperty rdf:about="&layer;switchingCapability"/>
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
<!-- http://geni-orca.renci.org/owl/location.owl#locatedAt -->
|
|
204
|
+
|
|
205
|
+
<owl:ObjectProperty rdf:about="&location;locatedAt"/>
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasInterface -->
|
|
210
|
+
|
|
211
|
+
<owl:ObjectProperty rdf:about="&topology;hasInterface"/>
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasSwitchMatrix -->
|
|
216
|
+
|
|
217
|
+
<owl:ObjectProperty rdf:about="&topology;hasSwitchMatrix"/>
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#interfaceOf -->
|
|
222
|
+
|
|
223
|
+
<owl:ObjectProperty rdf:about="&topology;interfaceOf"/>
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#linkTo -->
|
|
228
|
+
|
|
229
|
+
<owl:ObjectProperty rdf:about="&topology;linkTo"/>
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
<!--
|
|
234
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
235
|
+
//
|
|
236
|
+
// Data properties
|
|
237
|
+
//
|
|
238
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
239
|
+
-->
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
<!-- http://geni-orca.renci.org/owl/collections.owl#size -->
|
|
245
|
+
|
|
246
|
+
<owl:DatatypeProperty rdf:about="&collections;size"/>
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#bandwidth -->
|
|
251
|
+
|
|
252
|
+
<owl:DatatypeProperty rdf:about="&layer;bandwidth"/>
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#isLabelProducer -->
|
|
257
|
+
|
|
258
|
+
<owl:DatatypeProperty rdf:about="&layer;isLabelProducer"/>
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
<!-- http://www.w3.org/2003/01/geo/wgs84_pos#lat -->
|
|
263
|
+
|
|
264
|
+
<owl:DatatypeProperty rdf:about="&wgs84_pos;lat"/>
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
<!-- http://www.w3.org/2003/01/geo/wgs84_pos#long -->
|
|
269
|
+
|
|
270
|
+
<owl:DatatypeProperty rdf:about="&wgs84_pos;long"/>
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
<!--
|
|
275
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
276
|
+
//
|
|
277
|
+
// Classes
|
|
278
|
+
//
|
|
279
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
280
|
+
-->
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
<!-- http://geni-orca.renci.org/owl/collections.owl#Set -->
|
|
286
|
+
|
|
287
|
+
<owl:Class rdf:about="&collections;Set"/>
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#NetworkService -->
|
|
292
|
+
|
|
293
|
+
<owl:Class rdf:about="&domain;NetworkService"/>
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#FiberNetworkElement -->
|
|
298
|
+
|
|
299
|
+
<owl:Class rdf:about="&dtn;FiberNetworkElement"/>
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#LambdaNetworkElement -->
|
|
304
|
+
|
|
305
|
+
<owl:Class rdf:about="&dtn;LambdaNetworkElement"/>
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
<!-- http://geni-orca.renci.org/owl/ethernet.owl#EthernetNetworkElement -->
|
|
310
|
+
|
|
311
|
+
<owl:Class rdf:about="ðernet;EthernetNetworkElement"/>
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
<!-- http://geni-orca.renci.org/owl/ethernet.owl#EthernetSwitchingMatrix -->
|
|
316
|
+
|
|
317
|
+
<owl:Class rdf:about="ðernet;EthernetSwitchingMatrix"/>
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#LabelRange -->
|
|
322
|
+
|
|
323
|
+
<owl:Class rdf:about="&layer;LabelRange"/>
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#LabelSet -->
|
|
328
|
+
|
|
329
|
+
<owl:Class rdf:about="&layer;LabelSet"/>
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
<!-- http://geni-orca.renci.org/owl/location.owl#Location -->
|
|
334
|
+
|
|
335
|
+
<owl:Class rdf:about="&location;Location"/>
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#Device -->
|
|
340
|
+
|
|
341
|
+
<owl:Class rdf:about="&topology;Device"/>
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#Interface -->
|
|
346
|
+
|
|
347
|
+
<owl:Class rdf:about="&topology;Interface"/>
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#NetworkDomain -->
|
|
352
|
+
|
|
353
|
+
<owl:Class rdf:about="&topology;NetworkDomain"/>
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
<!--
|
|
358
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
359
|
+
//
|
|
360
|
+
// Individuals
|
|
361
|
+
//
|
|
362
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
363
|
+
-->
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
<!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/2/fiber -->
|
|
369
|
+
|
|
370
|
+
<rdf:Description rdf:about="&TenGigabitEthernet19;fiber"/>
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Renci -->
|
|
375
|
+
|
|
376
|
+
<rdf:Description rdf:about="&ben;Renci"/>
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#Node -->
|
|
381
|
+
|
|
382
|
+
<rdf:Description rdf:about="&domain;Node"/>
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#ORCAActor -->
|
|
387
|
+
|
|
388
|
+
<rdf:Description rdf:about="&domain;ORCAActor"/>
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
<!-- http://geni-orca.renci.org/owl/domain.owl#VLAN -->
|
|
393
|
+
|
|
394
|
+
<rdf:Description rdf:about="&domain;VLAN"/>
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
<!-- http://geni-orca.renci.org/owl/ethernet.owl#EthernetNetworkElement -->
|
|
399
|
+
|
|
400
|
+
<rdf:Description rdf:about="ðernet;EthernetNetworkElement"/>
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#10G -->
|
|
405
|
+
|
|
406
|
+
<rdf:Description rdf:about="&layer;10G"/>
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
<!-- http://geni-orca.renci.org/owl/learn.rdf#Learn/NLR/Cisco/6509/TenGigabitEthernet/1/1/fiber -->
|
|
411
|
+
|
|
412
|
+
<rdf:Description rdf:about="&TenGigabitEthernet21;fiber"/>
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
<!-- http://geni-orca.renci.org/owl/mass.rdf#UMass -->
|
|
417
|
+
|
|
418
|
+
<rdf:Description rdf:about="&mass;UMass"/>
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN -->
|
|
423
|
+
|
|
424
|
+
<location:Location rdf:about="#NLR/BBN">
|
|
425
|
+
<wgs84_pos:lat>42.389741</wgs84_pos:lat>
|
|
426
|
+
<wgs84_pos:long>-71.147504</wgs84_pos:long>
|
|
427
|
+
</location:Location>
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509 -->
|
|
432
|
+
|
|
433
|
+
<topology:Device rdf:about="#NLR/BBN/Cisco/6509">
|
|
434
|
+
<rdfs:label>6509</rdfs:label>
|
|
435
|
+
<topology:hasSwitchMatrix rdf:resource="#NLR/BBN/Cisco/6509/EthernetSwitchingMatrix"/>
|
|
436
|
+
<topology:hasInterface rdf:resource="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
437
|
+
<topology:hasInterface rdf:resource="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/fiber"/>
|
|
438
|
+
</topology:Device>
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/EthernetSwitchingMatrix -->
|
|
443
|
+
|
|
444
|
+
<ethernet:EthernetSwitchingMatrix rdf:about="#NLR/BBN/Cisco/6509/EthernetSwitchingMatrix">
|
|
445
|
+
<layer:switchingCapability rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
446
|
+
</ethernet:EthernetSwitchingMatrix>
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/ethernet -->
|
|
451
|
+
|
|
452
|
+
<topology:Interface rdf:about="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/ethernet">
|
|
453
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
454
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
455
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
456
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/BBN/Cisco/6509/availableVLANSet"/>
|
|
457
|
+
</topology:Interface>
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/fiber -->
|
|
462
|
+
|
|
463
|
+
<topology:Interface rdf:about="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/fiber">
|
|
464
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
465
|
+
<topology:interfaceOf rdf:resource="#NLR/BBN/Cisco/6509"/>
|
|
466
|
+
<dtn:WDM rdf:resource="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/lambda"/>
|
|
467
|
+
<topology:linkTo rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/fiber"/>
|
|
468
|
+
</topology:Interface>
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/lambda -->
|
|
473
|
+
|
|
474
|
+
<topology:Interface rdf:about="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/lambda">
|
|
475
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
476
|
+
<dtn:TenGbase-R rdf:resource="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/ethernet"/>
|
|
477
|
+
</topology:Interface>
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/ethernet -->
|
|
482
|
+
|
|
483
|
+
<ethernet:EthernetNetworkElement rdf:about="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/ethernet">
|
|
484
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
485
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
486
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
487
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/BBN/Cisco/6509/availableVLANSet"/>
|
|
488
|
+
</ethernet:EthernetNetworkElement>
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/fiber -->
|
|
493
|
+
|
|
494
|
+
<dtn:FiberNetworkElement rdf:about="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/fiber">
|
|
495
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
496
|
+
<topology:interfaceOf rdf:resource="#NLR/BBN/Cisco/6509"/>
|
|
497
|
+
<dtn:WDM rdf:resource="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/lambda"/>
|
|
498
|
+
</dtn:FiberNetworkElement>
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/lambda -->
|
|
503
|
+
|
|
504
|
+
<dtn:LambdaNetworkElement rdf:about="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/lambda">
|
|
505
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
506
|
+
<dtn:TenGbase-R rdf:resource="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/2/ethernet"/>
|
|
507
|
+
</dtn:LambdaNetworkElement>
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Cisco/6509/availableVLANSet -->
|
|
512
|
+
|
|
513
|
+
<layer:LabelSet rdf:about="#NLR/BBN/Cisco/6509/availableVLANSet"/>
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/Csico/6509/availableLabelSet/1 -->
|
|
518
|
+
|
|
519
|
+
<layer:LabelRange rdf:about="#NLR/BBN/Csico/6509/availableLabelSet/1"/>
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/BBN/PoP -->
|
|
524
|
+
|
|
525
|
+
<collections:Set rdf:about="#NLR/BBN/PoP">
|
|
526
|
+
<location:locatedAt rdf:resource="#NLR/BBN"/>
|
|
527
|
+
<collections:element rdf:resource="#NLR/BBN/Cisco/6509"/>
|
|
528
|
+
</collections:Set>
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Domain/NetworkService/1 -->
|
|
533
|
+
|
|
534
|
+
<domain:NetworkService rdf:about="#NLR/Domain/NetworkService/1">
|
|
535
|
+
<domain:hasTopology rdf:resource="&domain;Node"/>
|
|
536
|
+
<domain:hasAccessMethod rdf:resource="&domain;ORCAActor"/>
|
|
537
|
+
<layer:atLayer rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
538
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/Domain/NetworkService/1/availableVLANSet"/>
|
|
539
|
+
</domain:NetworkService>
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Domain/NetworkService/1/availableVLANSet -->
|
|
544
|
+
|
|
545
|
+
<layer:LabelSet rdf:about="#NLR/Domain/NetworkService/1/availableVLANSet">
|
|
546
|
+
<collections:size rdf:datatype="&xsd;int">10</collections:size>
|
|
547
|
+
<domain:hasResourceType rdf:resource="&domain;VLAN"/>
|
|
548
|
+
</layer:LabelSet>
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston -->
|
|
553
|
+
|
|
554
|
+
<location:Location rdf:about="#NLR/Houston">
|
|
555
|
+
<wgs84_pos:lat>29.762884</wgs84_pos:lat>
|
|
556
|
+
<wgs84_pos:long>-95.383061</wgs84_pos:long>
|
|
557
|
+
</location:Location>
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509 -->
|
|
562
|
+
|
|
563
|
+
<topology:Device rdf:about="#NLR/Houston/Cisco/6509">
|
|
564
|
+
<topology:hasSwitchMatrix rdf:resource="#NLR/Houston/Cisco/6509/EthernetSwitchingMatrix"/>
|
|
565
|
+
<topology:hasInterface rdf:resource="#NLR/Houston/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
566
|
+
</topology:Device>
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509/EthernetSwitchingMatrix -->
|
|
571
|
+
|
|
572
|
+
<ethernet:EthernetSwitchingMatrix rdf:about="#NLR/Houston/Cisco/6509/EthernetSwitchingMatrix">
|
|
573
|
+
<layer:switchingCapability rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
574
|
+
</ethernet:EthernetSwitchingMatrix>
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509/TenGigabitEtherent/1/1/etherent -->
|
|
579
|
+
|
|
580
|
+
<ethernet:EthernetNetworkElement rdf:about="#NLR/Houston/Cisco/6509/TenGigabitEtherent/1/1/etherent">
|
|
581
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
582
|
+
<rdfs:label
|
|
583
|
+
>houston.layer2.nlr.net:TenGigabitEthernet1/1</rdfs:label>
|
|
584
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
585
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
586
|
+
</ethernet:EthernetNetworkElement>
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509/TenGigabitEthernet/1/1/fiber -->
|
|
591
|
+
|
|
592
|
+
<dtn:FiberNetworkElement rdf:about="#NLR/Houston/Cisco/6509/TenGigabitEthernet/1/1/fiber">
|
|
593
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
594
|
+
<rdfs:label
|
|
595
|
+
>houston.layer2.nlr.net:TenGigabitEthernet1/1</rdfs:label>
|
|
596
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet21;fiber"/>
|
|
597
|
+
<topology:interfaceOf rdf:resource="#NLR/Houston/Cisco/6509"/>
|
|
598
|
+
<dtn:WDM rdf:resource="#NLR/Houston/Cisco/6509/TenGigabitEthernet/1/1/lambda"/>
|
|
599
|
+
</dtn:FiberNetworkElement>
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/Cisco/6509/TenGigabitEthernet/1/1/lambda -->
|
|
604
|
+
|
|
605
|
+
<dtn:LambdaNetworkElement rdf:about="#NLR/Houston/Cisco/6509/TenGigabitEthernet/1/1/lambda">
|
|
606
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
607
|
+
<dtn:TenGbase-R rdf:resource="#NLR/Houston/Cisco/6509/TenGigabitEtherent/1/1/etherent"/>
|
|
608
|
+
</dtn:LambdaNetworkElement>
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Houston/PoP -->
|
|
613
|
+
|
|
614
|
+
<collections:Set rdf:about="#NLR/Houston/PoP">
|
|
615
|
+
<location:locatedAt rdf:resource="#NLR/Houston"/>
|
|
616
|
+
<collections:element rdf:resource="#NLR/Houston/Cisco/6509"/>
|
|
617
|
+
</collections:Set>
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Mass/PoP -->
|
|
622
|
+
|
|
623
|
+
<collections:Set rdf:about="#NLR/Mass/PoP">
|
|
624
|
+
<location:locatedAt rdf:resource="&mass;UMass"/>
|
|
625
|
+
<collections:element rdf:resource="#NLR/BBN/Cisco/6509"/>
|
|
626
|
+
</collections:Set>
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509 -->
|
|
631
|
+
|
|
632
|
+
<topology:Device rdf:about="#NLR/Renci/Cisco/6509">
|
|
633
|
+
<rdfs:label>6509</rdfs:label>
|
|
634
|
+
<topology:hasSwitchMatrix rdf:resource="#NLR/Renci/Cisco/6509/EthernetSwitchingMatrix"/>
|
|
635
|
+
<topology:hasInterface rdf:resource="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
636
|
+
<topology:hasInterface rdf:resource="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/fiber"/>
|
|
637
|
+
</topology:Device>
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/EthernetSwitchingMatrix -->
|
|
642
|
+
|
|
643
|
+
<ethernet:EthernetSwitchingMatrix rdf:about="#NLR/Renci/Cisco/6509/EthernetSwitchingMatrix">
|
|
644
|
+
<layer:switchingCapability rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
645
|
+
</ethernet:EthernetSwitchingMatrix>
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/ethernet -->
|
|
650
|
+
|
|
651
|
+
<topology:Interface rdf:about="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/ethernet">
|
|
652
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
653
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
654
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
655
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/Renci/Cisco/6509/availableVLANSet"/>
|
|
656
|
+
</topology:Interface>
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/fiber -->
|
|
661
|
+
|
|
662
|
+
<topology:Interface rdf:about="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/fiber">
|
|
663
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
664
|
+
<dtn:WDM rdf:resource="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/lambda"/>
|
|
665
|
+
<topology:linkTo rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
666
|
+
</topology:Interface>
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/lambda -->
|
|
671
|
+
|
|
672
|
+
<topology:Interface rdf:about="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/lambda">
|
|
673
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
674
|
+
<topology:interfaceOf rdf:resource="#NLR/Renci/Cisco/6509"/>
|
|
675
|
+
<dtn:TenGbase-R rdf:resource="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/ethernet"/>
|
|
676
|
+
</topology:Interface>
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/ethernet -->
|
|
681
|
+
|
|
682
|
+
<ethernet:EthernetNetworkElement rdf:about="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/ethernet">
|
|
683
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
684
|
+
<rdfs:label
|
|
685
|
+
>rale.layer2.nlr.net:TenGigabitEthernet2/2</rdfs:label>
|
|
686
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
687
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
688
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/Renci/Cisco/6509/availableVLANSet"/>
|
|
689
|
+
</ethernet:EthernetNetworkElement>
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/fiber -->
|
|
694
|
+
|
|
695
|
+
<topology:Interface rdf:about="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/fiber">
|
|
696
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
697
|
+
<rdfs:label
|
|
698
|
+
>rale.layer2.nlr.net:TenGigabitEthernet2/2</rdfs:label>
|
|
699
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet19;fiber"/>
|
|
700
|
+
<topology:interfaceOf rdf:resource="#NLR/Renci/Cisco/6509"/>
|
|
701
|
+
<dtn:WDM rdf:resource="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/lambda"/>
|
|
702
|
+
</topology:Interface>
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/lambda -->
|
|
707
|
+
|
|
708
|
+
<dtn:LambdaNetworkElement rdf:about="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/lambda">
|
|
709
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
710
|
+
<dtn:TenGbase-R rdf:resource="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/2/ethernet"/>
|
|
711
|
+
</dtn:LambdaNetworkElement>
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Cisco/6509/availableVLANSet -->
|
|
716
|
+
|
|
717
|
+
<layer:LabelSet rdf:about="#NLR/Renci/Cisco/6509/availableVLANSet"/>
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/Csico/6509/availableLabelSet/1 -->
|
|
722
|
+
|
|
723
|
+
<layer:LabelRange rdf:about="#NLR/Renci/Csico/6509/availableLabelSet/1"/>
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/Renci/PoP -->
|
|
728
|
+
|
|
729
|
+
<collections:Set rdf:about="#NLR/Renci/PoP">
|
|
730
|
+
<location:locatedAt rdf:resource="&ben;Renci"/>
|
|
731
|
+
<collections:element rdf:resource="#NLR/Renci/Cisco/6509"/>
|
|
732
|
+
</collections:Set>
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509 -->
|
|
737
|
+
|
|
738
|
+
<topology:Device rdf:about="#NLR/StarLight/Cisco/6509">
|
|
739
|
+
<rdfs:label>6509</rdfs:label>
|
|
740
|
+
<topology:hasSwitchMatrix rdf:resource="#NLR/StarLight/Cisco/6509/EthernetSwitchingMatrix"/>
|
|
741
|
+
<topology:hasInterface rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
742
|
+
<topology:hasInterface rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/fiber"/>
|
|
743
|
+
</topology:Device>
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/EthernetSwitchingMatrix -->
|
|
748
|
+
|
|
749
|
+
<ethernet:EthernetSwitchingMatrix rdf:about="#NLR/StarLight/Cisco/6509/EthernetSwitchingMatrix">
|
|
750
|
+
<layer:switchingCapability rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
751
|
+
</ethernet:EthernetSwitchingMatrix>
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/ethernet -->
|
|
756
|
+
|
|
757
|
+
<ethernet:EthernetNetworkElement rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/ethernet">
|
|
758
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
759
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
760
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
761
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/StarLight/Cisco/6509/availableVLANSet"/>
|
|
762
|
+
</ethernet:EthernetNetworkElement>
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/fiber -->
|
|
767
|
+
|
|
768
|
+
<dtn:FiberNetworkElement rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/fiber">
|
|
769
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
770
|
+
<topology:linkTo rdf:resource="#NLR/Renci/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
771
|
+
<topology:interfaceOf rdf:resource="#NLR/StarLight/Cisco/6509"/>
|
|
772
|
+
<dtn:WDM rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/lambda"/>
|
|
773
|
+
</dtn:FiberNetworkElement>
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/lambda -->
|
|
778
|
+
|
|
779
|
+
<dtn:LambdaNetworkElement rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/lambda">
|
|
780
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
781
|
+
<dtn:TenGbase-R rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/1/ethernet"/>
|
|
782
|
+
</dtn:LambdaNetworkElement>
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/ethernet -->
|
|
787
|
+
|
|
788
|
+
<ethernet:EthernetNetworkElement rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/ethernet">
|
|
789
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
790
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
791
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
792
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/StarLight/Cisco/6509/availableVLANSet"/>
|
|
793
|
+
</ethernet:EthernetNetworkElement>
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/fiber -->
|
|
798
|
+
|
|
799
|
+
<topology:Interface rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/fiber">
|
|
800
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
801
|
+
<topology:linkTo rdf:resource="#NLR/BBN/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
802
|
+
<topology:interfaceOf rdf:resource="#NLR/StarLight/Cisco/6509"/>
|
|
803
|
+
<dtn:WDM rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/lambda"/>
|
|
804
|
+
</topology:Interface>
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/lambda -->
|
|
809
|
+
|
|
810
|
+
<dtn:LambdaNetworkElement rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/lambda">
|
|
811
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
812
|
+
<dtn:TenGbase-R rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/2/ethernet"/>
|
|
813
|
+
</dtn:LambdaNetworkElement>
|
|
814
|
+
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/ethernet -->
|
|
818
|
+
|
|
819
|
+
<topology:Interface rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/ethernet">
|
|
820
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
821
|
+
<rdfs:label
|
|
822
|
+
>chic.layer2.nlr.net:GigabitEthernet9/10</rdfs:label>
|
|
823
|
+
<layer:bandwidth rdf:datatype="&xsd;long">10000000000</layer:bandwidth>
|
|
824
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
825
|
+
<ethernet:availableVLANSet rdf:resource="#NLR/StarLight/Cisco/6509/availableVLANSet"/>
|
|
826
|
+
</topology:Interface>
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/fiber -->
|
|
831
|
+
|
|
832
|
+
<dtn:FiberNetworkElement rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/fiber">
|
|
833
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
834
|
+
<rdfs:label
|
|
835
|
+
>chic.layer2.nlr.net:GigabitEthernet9/10</rdfs:label>
|
|
836
|
+
<topology:interfaceOf rdf:resource="#NLR/StarLight/Cisco/6509"/>
|
|
837
|
+
<dtn:WDM rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/lambda"/>
|
|
838
|
+
<topology:linkTo rdf:resource="&starlight;StarLight/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
839
|
+
</dtn:FiberNetworkElement>
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/lambda -->
|
|
844
|
+
|
|
845
|
+
<topology:Interface rdf:about="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/lambda">
|
|
846
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
847
|
+
<dtn:TenGbase-R rdf:resource="#NLR/StarLight/Cisco/6509/TenGigabitEthernet/1/3/ethernet"/>
|
|
848
|
+
</topology:Interface>
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Cisco/6509/availableVLANSet -->
|
|
853
|
+
|
|
854
|
+
<layer:LabelSet rdf:about="#NLR/StarLight/Cisco/6509/availableVLANSet"/>
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/Csico/6509/availableLabelSet/1 -->
|
|
859
|
+
|
|
860
|
+
<layer:LabelRange rdf:about="#NLR/StarLight/Csico/6509/availableLabelSet/1"/>
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#NLR/StarLight/PoP -->
|
|
865
|
+
|
|
866
|
+
<collections:Set rdf:about="#NLR/StarLight/PoP">
|
|
867
|
+
<collections:element rdf:resource="#NLR/StarLight/Cisco/6509"/>
|
|
868
|
+
<location:locatedAt rdf:resource="&starlight;StarLight"/>
|
|
869
|
+
</collections:Set>
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
<!-- http://geni-orca.renci.org/owl/nlr.rdf#nlr/Domain -->
|
|
874
|
+
|
|
875
|
+
<topology:NetworkDomain rdf:about="#nlr/Domain">
|
|
876
|
+
<layer:isLabelProducer rdf:datatype="&xsd;boolean">true</layer:isLabelProducer>
|
|
877
|
+
<collections:element rdf:resource="#NLR/BBN/PoP"/>
|
|
878
|
+
<domain:hasService rdf:resource="#NLR/Domain/NetworkService/1"/>
|
|
879
|
+
<collections:element rdf:resource="#NLR/Houston/PoP"/>
|
|
880
|
+
<collections:element rdf:resource="#NLR/Mass/PoP"/>
|
|
881
|
+
<collections:element rdf:resource="#NLR/Renci/PoP"/>
|
|
882
|
+
<collections:element rdf:resource="#NLR/StarLight/PoP"/>
|
|
883
|
+
</topology:NetworkDomain>
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
<!-- http://geni-orca.renci.org/owl/starlight.rdf#StarLight -->
|
|
888
|
+
|
|
889
|
+
<rdf:Description rdf:about="&starlight;StarLight"/>
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
<!-- http://geni-orca.renci.org/owl/starlight.rdf#StarLight/Cisco/6509/TenGigabitEthernet/1/1/fiber -->
|
|
894
|
+
|
|
895
|
+
<rdf:Description rdf:about="&starlight;StarLight/Cisco/6509/TenGigabitEthernet/1/1/fiber"/>
|
|
896
|
+
</rdf:RDF>
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
<!-- Generated by the OWL API (version 2.2.1.1101) http://owlapi.sourceforge.net -->
|
|
901
|
+
|