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/ben-dtn.rdf
ADDED
|
@@ -0,0 +1,1698 @@
|
|
|
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 layer "http://geni-orca.renci.org/owl/layer.owl#" >
|
|
12
|
+
<!ENTITY layer3 "http://geni-orca.renci.org/owl/layer.owl#2" >
|
|
13
|
+
<!ENTITY layer2 "http://geni-orca.renci.org/owl/layer.owl#10" >
|
|
14
|
+
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
|
|
15
|
+
<!ENTITY ethernet "http://geni-orca.renci.org/owl/ethernet.owl#" >
|
|
16
|
+
<!ENTITY topology "http://geni-orca.renci.org/owl/topology.owl#" >
|
|
17
|
+
<!ENTITY collections "http://geni-orca.renci.org/owl/collections.owl#" >
|
|
18
|
+
<!ENTITY Polatis "http://geni-orca.renci.org/owl/ben.rdf#UNC/Polatis/" >
|
|
19
|
+
<!ENTITY Polatis4 "http://geni-orca.renci.org/owl/ben.rdf#NCSU/Polatis/" >
|
|
20
|
+
<!ENTITY Polatis3 "http://geni-orca.renci.org/owl/ben.rdf#Duke/Polatis/" >
|
|
21
|
+
<!ENTITY Infinera4 "http://geni-orca.renci.org/owl/ben.rdf#UNC/Infinera/" >
|
|
22
|
+
<!ENTITY Infinera "http://geni-orca.renci.org/owl/ben.rdf#Duke/Infinera/" >
|
|
23
|
+
<!ENTITY Infinera2 "http://geni-orca.renci.org/owl/ben.rdf#NCSU/Infinera/" >
|
|
24
|
+
<!ENTITY Polatis2 "http://geni-orca.renci.org/owl/ben.rdf#Renci/Polatis/" >
|
|
25
|
+
<!ENTITY Infinera3 "http://geni-orca.renci.org/owl/ben.rdf#Renci/Infinera/" >
|
|
26
|
+
<!ENTITY DTN3 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/" >
|
|
27
|
+
<!ENTITY DTN4 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/" >
|
|
28
|
+
<!ENTITY DTN "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/" >
|
|
29
|
+
<!ENTITY DTN2 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/" >
|
|
30
|
+
<!ENTITY f13 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/f1/" >
|
|
31
|
+
<!ENTITY f23 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/f2/" >
|
|
32
|
+
<!ENTITY f22 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/f2/" >
|
|
33
|
+
<!ENTITY f1 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/f1/" >
|
|
34
|
+
<!ENTITY f12 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/f1/" >
|
|
35
|
+
<!ENTITY f2 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/f2/" >
|
|
36
|
+
<!ENTITY f24 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/f2/" >
|
|
37
|
+
<!ENTITY fB8 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/" >
|
|
38
|
+
<!ENTITY f14 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/f1/" >
|
|
39
|
+
<!ENTITY fB7 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/2/" >
|
|
40
|
+
<!ENTITY t2B2 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t2B/1/" >
|
|
41
|
+
<!ENTITY fB3 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/" >
|
|
42
|
+
<!ENTITY fB2 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/" >
|
|
43
|
+
<!ENTITY t1B3 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t1B/1/" >
|
|
44
|
+
<!ENTITY fB5 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/2/" >
|
|
45
|
+
<!ENTITY fB6 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/2/" >
|
|
46
|
+
<!ENTITY fB "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/" >
|
|
47
|
+
<!ENTITY t1B6 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/t1B/1/" >
|
|
48
|
+
<!ENTITY t1B4 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t1B/2/" >
|
|
49
|
+
<!ENTITY fB4 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/" >
|
|
50
|
+
<!ENTITY t2B3 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t2B/1/" >
|
|
51
|
+
<!ENTITY t1B "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t1B/1/" >
|
|
52
|
+
<!ENTITY t1B2 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t1B/1/" >
|
|
53
|
+
<!ENTITY t1B5 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t1B/2/" >
|
|
54
|
+
<!ENTITY t2B "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t2B/1/" >
|
|
55
|
+
<!ENTITY fiber3 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/fiber/" >
|
|
56
|
+
<!ENTITY fiber4 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/fiber/" >
|
|
57
|
+
<!ENTITY fiber2 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/fiber/" >
|
|
58
|
+
<!ENTITY ocgB3 "http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/ocgB/1/" >
|
|
59
|
+
<!ENTITY ocgB4 "http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/ocgB/1/" >
|
|
60
|
+
<!ENTITY fiber "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/fiber/" >
|
|
61
|
+
<!ENTITY fiber5 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/fiber/" >
|
|
62
|
+
<!ENTITY ocgB2 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/ocgB/1/" >
|
|
63
|
+
<!ENTITY ocgB5 "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/ocgB/1/" >
|
|
64
|
+
<!ENTITY ocgB "http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/ocgB/1/" >
|
|
65
|
+
<!ENTITY TenGigabitEthernet9 "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/7/" >
|
|
66
|
+
<!ENTITY TenGigabitEthernet3 "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/2/1/" >
|
|
67
|
+
<!ENTITY TenGigabitEthernet5 "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/1/" >
|
|
68
|
+
<!ENTITY TenGigabitEthernet12 "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/8/" >
|
|
69
|
+
<!ENTITY TenGigabitEthernet8 "http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/7/" >
|
|
70
|
+
<!ENTITY TenGigabitEthernet13 "http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/8/" >
|
|
71
|
+
<!ENTITY TenGigabitEthernet "http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/1/" >
|
|
72
|
+
<!ENTITY TenGigabitEthernet7 "http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/3/" >
|
|
73
|
+
<!ENTITY TenGigabitEthernet2 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/1/" >
|
|
74
|
+
<!ENTITY TenGigabitEthernet6 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/2/" >
|
|
75
|
+
<!ENTITY TenGigabitEthernet4 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/3/" >
|
|
76
|
+
<!ENTITY TenGigabitEthernet10 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/7/" >
|
|
77
|
+
<!ENTITY TenGigabitEthernet11 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/8/" >
|
|
78
|
+
]>
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
<rdf:RDF xmlns="http://geni-orca.renci.org/owl/ben-dtn.rdf#"
|
|
82
|
+
xml:base="http://geni-orca.renci.org/owl/ben-dtn.rdf"
|
|
83
|
+
xmlns:t1B4="&DTN;t1B/2/"
|
|
84
|
+
xmlns:t1B3="&DTN3;t1B/1/"
|
|
85
|
+
xmlns:t1B2="&DTN2;t1B/1/"
|
|
86
|
+
xmlns:dtn="http://geni-orca.renci.org/owl/dtn.owl#"
|
|
87
|
+
xmlns:t1B5="&DTN2;t1B/2/"
|
|
88
|
+
xmlns:t1B6="&DTN4;t1B/1/"
|
|
89
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
90
|
+
xmlns:t2B2="&DTN3;t2B/1/"
|
|
91
|
+
xmlns:t2B3="&DTN;t2B/1/"
|
|
92
|
+
xmlns:Polatis4="&ben;NCSU/Polatis/"
|
|
93
|
+
xmlns:Polatis2="&ben;Renci/Polatis/"
|
|
94
|
+
xmlns:Polatis3="&ben;Duke/Polatis/"
|
|
95
|
+
xmlns:DTN="http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/"
|
|
96
|
+
xmlns:Infinera4="&ben;UNC/Infinera/"
|
|
97
|
+
xmlns:Infinera2="&ben;NCSU/Infinera/"
|
|
98
|
+
xmlns:Infinera3="&ben;Renci/Infinera/"
|
|
99
|
+
xmlns:ben="http://geni-orca.renci.org/owl/ben.rdf#"
|
|
100
|
+
xmlns:DTN4="http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/"
|
|
101
|
+
xmlns:DTN3="http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/"
|
|
102
|
+
xmlns:DTN2="http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/"
|
|
103
|
+
xmlns:TenGigabitEthernet2="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/1/"
|
|
104
|
+
xmlns:t2B="&DTN2;t2B/1/"
|
|
105
|
+
xmlns:Infinera="&ben;Duke/Infinera/"
|
|
106
|
+
xmlns:ocgB="&DTN2;fB/1/ocgB/1/"
|
|
107
|
+
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
|
108
|
+
xmlns:TenGigabitEthernet9="http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/7/"
|
|
109
|
+
xmlns:TenGigabitEthernet7="http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/3/"
|
|
110
|
+
xmlns:TenGigabitEthernet8="http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/7/"
|
|
111
|
+
xmlns:TenGigabitEthernet5="http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/1/"
|
|
112
|
+
xmlns:TenGigabitEthernet6="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/2/"
|
|
113
|
+
xmlns:TenGigabitEthernet3="http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/2/1/"
|
|
114
|
+
xmlns:TenGigabitEthernet4="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/3/"
|
|
115
|
+
xmlns:layer2="&layer;10"
|
|
116
|
+
xmlns:Polatis="&ben;UNC/Polatis/"
|
|
117
|
+
xmlns:layer3="&layer;2"
|
|
118
|
+
xmlns:f12="&DTN;f1/"
|
|
119
|
+
xmlns:f14="&DTN2;f1/"
|
|
120
|
+
xmlns:f13="&DTN3;f1/"
|
|
121
|
+
xmlns:fiber="&DTN2;fB/1/fiber/"
|
|
122
|
+
xmlns:fB="&DTN2;fB/1/"
|
|
123
|
+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
|
124
|
+
xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
|
|
125
|
+
xmlns:ethernet="http://geni-orca.renci.org/owl/ethernet.owl#"
|
|
126
|
+
xmlns:t1B="&DTN;t1B/1/"
|
|
127
|
+
xmlns:f1="&DTN4;f1/"
|
|
128
|
+
xmlns:topology="http://geni-orca.renci.org/owl/topology.owl#"
|
|
129
|
+
xmlns:f2="&DTN;f2/"
|
|
130
|
+
xmlns:collections="http://geni-orca.renci.org/owl/collections.owl#"
|
|
131
|
+
xmlns:f23="&DTN3;f2/"
|
|
132
|
+
xmlns:f22="&DTN4;f2/"
|
|
133
|
+
xmlns:layer="http://geni-orca.renci.org/owl/layer.owl#"
|
|
134
|
+
xmlns:f24="&DTN2;f2/"
|
|
135
|
+
xmlns:fB2="&DTN4;fB/1/"
|
|
136
|
+
xmlns:fB3="&DTN;fB/1/"
|
|
137
|
+
xmlns:fiber5="&DTN2;fB/2/fiber/"
|
|
138
|
+
xmlns:fiber4="&DTN4;fB/1/fiber/"
|
|
139
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
|
140
|
+
xmlns:TenGigabitEthernet10="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/7/"
|
|
141
|
+
xmlns:ocgB2="&DTN;fB/1/ocgB/1/"
|
|
142
|
+
xmlns:TenGigabitEthernet11="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/8/"
|
|
143
|
+
xmlns:fB8="&DTN3;fB/1/"
|
|
144
|
+
xmlns:fiber3="&DTN3;fB/1/fiber/"
|
|
145
|
+
xmlns:TenGigabitEthernet="http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/1/"
|
|
146
|
+
xmlns:fB6="&DTN;fB/2/"
|
|
147
|
+
xmlns:ocgB5="&DTN2;fB/2/ocgB/1/"
|
|
148
|
+
xmlns:fiber2="&DTN;fB/1/fiber/"
|
|
149
|
+
xmlns:fB7="&DTN3;fB/2/"
|
|
150
|
+
xmlns:fB4="&DTN2;fB/2/"
|
|
151
|
+
xmlns:ocgB4="&DTN4;fB/1/ocgB/1/"
|
|
152
|
+
xmlns:TenGigabitEthernet12="http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/8/"
|
|
153
|
+
xmlns:fB5="&DTN4;fB/2/"
|
|
154
|
+
xmlns:TenGigabitEthernet13="http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/8/"
|
|
155
|
+
xmlns:ocgB3="&DTN3;fB/1/ocgB/1/">
|
|
156
|
+
<owl:Ontology rdf:about="">
|
|
157
|
+
<owl:imports rdf:resource="http://geni-orca.renci.org/owl/ben.rdf"/>
|
|
158
|
+
<owl:imports rdf:resource="http://geni-orca.renci.org/owl/collections.owl"/>
|
|
159
|
+
<owl:imports rdf:resource="http://geni-orca.renci.org/owl/ethernet.owl"/>
|
|
160
|
+
</owl:Ontology>
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
<!--
|
|
165
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
166
|
+
//
|
|
167
|
+
// Object Properties
|
|
168
|
+
//
|
|
169
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
170
|
+
-->
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
<!-- http://geni-orca.renci.org/owl/collections.owl#element -->
|
|
176
|
+
|
|
177
|
+
<owl:ObjectProperty rdf:about="&collections;element"/>
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OCG -->
|
|
182
|
+
|
|
183
|
+
<owl:ObjectProperty rdf:about="&dtn;OCG"/>
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#TenGbase-R -->
|
|
188
|
+
|
|
189
|
+
<owl:ObjectProperty rdf:about="&dtn;TenGbase-R"/>
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#WDM -->
|
|
194
|
+
|
|
195
|
+
<owl:ObjectProperty rdf:about="&dtn;WDM"/>
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#availableLambdaSet -->
|
|
200
|
+
|
|
201
|
+
<owl:ObjectProperty rdf:about="&dtn;availableLambdaSet"/>
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#availableOCGSet -->
|
|
206
|
+
|
|
207
|
+
<owl:ObjectProperty rdf:about="&dtn;availableOCGSet"/>
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#connector -->
|
|
212
|
+
|
|
213
|
+
<owl:ObjectProperty rdf:about="&dtn;connector"/>
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#hasTimeSlotGranularity -->
|
|
218
|
+
|
|
219
|
+
<owl:ObjectProperty rdf:about="&dtn;hasTimeSlotGranularity"/>
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#ocg -->
|
|
224
|
+
|
|
225
|
+
<owl:ObjectProperty rdf:about="&dtn;ocg"/>
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#ocgGroup -->
|
|
230
|
+
|
|
231
|
+
<owl:ObjectProperty rdf:about="&dtn;ocgGroup"/>
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#ocgLine -->
|
|
236
|
+
|
|
237
|
+
<owl:ObjectProperty rdf:about="&dtn;ocgLine"/>
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#polish -->
|
|
242
|
+
|
|
243
|
+
<owl:ObjectProperty rdf:about="&dtn;polish"/>
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#usedLambdaSet -->
|
|
248
|
+
|
|
249
|
+
<owl:ObjectProperty rdf:about="&dtn;usedLambdaSet"/>
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#usedOCGSet -->
|
|
254
|
+
|
|
255
|
+
<owl:ObjectProperty rdf:about="&dtn;usedOCGSet"/>
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#hasBitRate -->
|
|
260
|
+
|
|
261
|
+
<owl:ObjectProperty rdf:about="&layer;hasBitRate"/>
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#lowerBound -->
|
|
266
|
+
|
|
267
|
+
<owl:ObjectProperty rdf:about="&layer;lowerBound"/>
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#switchingCapability -->
|
|
272
|
+
|
|
273
|
+
<owl:ObjectProperty rdf:about="&layer;switchingCapability"/>
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#upperBound -->
|
|
278
|
+
|
|
279
|
+
<owl:ObjectProperty rdf:about="&layer;upperBound"/>
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#connectionDirection -->
|
|
284
|
+
|
|
285
|
+
<owl:ObjectProperty rdf:about="&topology;connectionDirection"/>
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasInputInterface -->
|
|
290
|
+
|
|
291
|
+
<owl:ObjectProperty rdf:about="&topology;hasInputInterface"/>
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasInterface -->
|
|
296
|
+
|
|
297
|
+
<owl:ObjectProperty rdf:about="&topology;hasInterface"/>
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasOutputInterface -->
|
|
302
|
+
|
|
303
|
+
<owl:ObjectProperty rdf:about="&topology;hasOutputInterface"/>
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hasSwitchMatrix -->
|
|
308
|
+
|
|
309
|
+
<owl:ObjectProperty rdf:about="&topology;hasSwitchMatrix"/>
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#interfaceOf -->
|
|
314
|
+
|
|
315
|
+
<owl:ObjectProperty rdf:about="&topology;interfaceOf"/>
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#linkTo -->
|
|
320
|
+
|
|
321
|
+
<owl:ObjectProperty rdf:about="&topology;linkTo"/>
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#locatedAt -->
|
|
326
|
+
|
|
327
|
+
<owl:ObjectProperty rdf:about="&topology;locatedAt"/>
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
<!--
|
|
332
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
333
|
+
//
|
|
334
|
+
// Data properties
|
|
335
|
+
//
|
|
336
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
337
|
+
-->
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
<!-- http://geni-orca.renci.org/owl/collections.owl#size -->
|
|
343
|
+
|
|
344
|
+
<owl:DatatypeProperty rdf:about="&collections;size"/>
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#maxOCG -->
|
|
349
|
+
|
|
350
|
+
<owl:DatatypeProperty rdf:about="&dtn;maxOCG"/>
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#maxWavelength -->
|
|
355
|
+
|
|
356
|
+
<owl:DatatypeProperty rdf:about="&dtn;maxWavelength"/>
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#label_ID -->
|
|
361
|
+
|
|
362
|
+
<owl:DatatypeProperty rdf:about="&layer;label_ID"/>
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#hostName -->
|
|
367
|
+
|
|
368
|
+
<owl:DatatypeProperty rdf:about="&topology;hostName"/>
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#managementIP -->
|
|
373
|
+
|
|
374
|
+
<owl:DatatypeProperty rdf:about="&topology;managementIP"/>
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
<!--
|
|
379
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
380
|
+
//
|
|
381
|
+
// Classes
|
|
382
|
+
//
|
|
383
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
384
|
+
-->
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#FiberNetworkElement -->
|
|
390
|
+
|
|
391
|
+
<owl:Class rdf:about="&dtn;FiberNetworkElement"/>
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#LambdaLabelSet -->
|
|
396
|
+
|
|
397
|
+
<owl:Class rdf:about="&dtn;LambdaLabelSet"/>
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#LambdaNetworkElement -->
|
|
402
|
+
|
|
403
|
+
<owl:Class rdf:about="&dtn;LambdaNetworkElement"/>
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#LambdaSwitchingMatrix -->
|
|
408
|
+
|
|
409
|
+
<owl:Class rdf:about="&dtn;LambdaSwitchingMatrix"/>
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OCGLabel -->
|
|
414
|
+
|
|
415
|
+
<owl:Class rdf:about="&dtn;OCGLabel"/>
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OCGLabelSet -->
|
|
420
|
+
|
|
421
|
+
<owl:Class rdf:about="&dtn;OCGLabelSet"/>
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OCGNetworkElement -->
|
|
426
|
+
|
|
427
|
+
<owl:Class rdf:about="&dtn;OCGNetworkElement"/>
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OCGSwitchingMatrix -->
|
|
432
|
+
|
|
433
|
+
<owl:Class rdf:about="&dtn;OCGSwitchingMatrix"/>
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#ODUSwitchingMatrix -->
|
|
438
|
+
|
|
439
|
+
<owl:Class rdf:about="&dtn;ODUSwitchingMatrix"/>
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#WavelengthLabel -->
|
|
444
|
+
|
|
445
|
+
<owl:Class rdf:about="&dtn;WavelengthLabel"/>
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
<!-- http://geni-orca.renci.org/owl/ethernet.owl#EthernetNetworkElement -->
|
|
450
|
+
|
|
451
|
+
<owl:Class rdf:about="ðernet;EthernetNetworkElement"/>
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#LabelRange -->
|
|
456
|
+
|
|
457
|
+
<owl:Class rdf:about="&layer;LabelRange"/>
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#LabelSet -->
|
|
462
|
+
|
|
463
|
+
<owl:Class rdf:about="&layer;LabelSet"/>
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
<!-- http://geni-orca.renci.org/owl/topology.owl#Interface -->
|
|
468
|
+
|
|
469
|
+
<owl:Class rdf:about="&topology;Interface"/>
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
<!--
|
|
474
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
475
|
+
//
|
|
476
|
+
// Individuals
|
|
477
|
+
//
|
|
478
|
+
///////////////////////////////////////////////////////////////////////////////////////
|
|
479
|
+
-->
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
<!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/7/fiber -->
|
|
485
|
+
|
|
486
|
+
<rdf:Description rdf:about="&TenGigabitEthernet8;fiber"/>
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
<!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/TenGigabitEthernet/2/8/fiber -->
|
|
491
|
+
|
|
492
|
+
<rdf:Description rdf:about="&TenGigabitEthernet13;fiber"/>
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
<!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/7/fiber -->
|
|
497
|
+
|
|
498
|
+
<rdf:Description rdf:about="&TenGigabitEthernet10;fiber"/>
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
<!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/TenGigabitEthernet/3/8/fiber -->
|
|
503
|
+
|
|
504
|
+
<rdf:Description rdf:about="&TenGigabitEthernet11;fiber"/>
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
<!-- http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/7/fiber -->
|
|
509
|
+
|
|
510
|
+
<rdf:Description rdf:about="&TenGigabitEthernet9;fiber"/>
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
<!-- http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/TenGigabitEthernet/3/8/fiber -->
|
|
515
|
+
|
|
516
|
+
<rdf:Description rdf:about="&TenGigabitEthernet12;fiber"/>
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/LambdaSwitchingMatrix -->
|
|
521
|
+
|
|
522
|
+
<dtn:LambdaSwitchingMatrix rdf:about="#Duke/Infinera/DTN/LambdaSwitchingMatrix">
|
|
523
|
+
<layer:switchingCapability rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
524
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;OTU2"/>
|
|
525
|
+
</dtn:LambdaSwitchingMatrix>
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/OCGSwitchingMatrix -->
|
|
530
|
+
|
|
531
|
+
<dtn:OCGSwitchingMatrix rdf:about="#Duke/Infinera/DTN/OCGSwitchingMatrix">
|
|
532
|
+
<layer:switchingCapability rdf:resource="&dtn;OCGNetworkElement"/>
|
|
533
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;OTU4"/>
|
|
534
|
+
</dtn:OCGSwitchingMatrix>
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/ODUSwitchingMatrix -->
|
|
539
|
+
|
|
540
|
+
<dtn:ODUSwitchingMatrix rdf:about="#Duke/Infinera/DTN/ODUSwitchingMatrix">
|
|
541
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;ODU1"/>
|
|
542
|
+
<layer:switchingCapability rdf:resource="&dtn;ODUNetworkElement"/>
|
|
543
|
+
</dtn:ODUSwitchingMatrix>
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/f1/fiber -->
|
|
548
|
+
|
|
549
|
+
<dtn:FiberNetworkElement rdf:about="#Duke/Infinera/DTN/f1/fiber">
|
|
550
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
551
|
+
<rdfs:label
|
|
552
|
+
>Duke/Infinera/DTN/f1</rdfs:label>
|
|
553
|
+
</dtn:FiberNetworkElement>
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/f1/ocg/1 -->
|
|
558
|
+
|
|
559
|
+
<dtn:OCGNetworkElement rdf:about="#Duke/Infinera/DTN/f1/ocg/1">
|
|
560
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
561
|
+
</dtn:OCGNetworkElement>
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/f2/fiber -->
|
|
566
|
+
|
|
567
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/f2/fiber">
|
|
568
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
569
|
+
<rdfs:label
|
|
570
|
+
>DTN-Infinera-Duke:l2</rdfs:label>
|
|
571
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
572
|
+
<dtn:OCG rdf:resource="#Duke/Infinera/DTN/f2/ocg/1"/>
|
|
573
|
+
<dtn:connector rdf:resource="&dtn;LC-Connector"/>
|
|
574
|
+
<dtn:polish rdf:resource="&dtn;PC"/>
|
|
575
|
+
</topology:Interface>
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/f2/ocg/1 -->
|
|
580
|
+
|
|
581
|
+
<dtn:OCGNetworkElement rdf:about="#Duke/Infinera/DTN/f2/ocg/1">
|
|
582
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
583
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
584
|
+
</dtn:OCGNetworkElement>
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/fiber -->
|
|
589
|
+
|
|
590
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/fB/1/fiber">
|
|
591
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
592
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-3</rdfs:label>
|
|
593
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
594
|
+
<topology:hasInputInterface rdf:resource="#Duke/Infinera/DTN/f1/fiber"/>
|
|
595
|
+
<topology:hasOutputInterface rdf:resource="#Duke/Infinera/DTN/f2/fiber"/>
|
|
596
|
+
<dtn:availableOCGSet rdf:resource="#Duke/Infinera/DTN/fB/1/fiber/availableOCGSet"/>
|
|
597
|
+
<dtn:usedOCGSet rdf:resource="#Duke/Infinera/DTN/fB/1/fiber/usedOCGSet"/>
|
|
598
|
+
<dtn:OCG rdf:resource="#Duke/Infinera/DTN/fB/1/ocgB/1"/>
|
|
599
|
+
<topology:interfaceOf rdf:resource="&ben;Duke/Infinera/DTN"/>
|
|
600
|
+
<topology:linkTo rdf:resource="&ben;Duke/Polatis/f7-23"/>
|
|
601
|
+
<dtn:connector rdf:resource="&dtn;LC-Connector"/>
|
|
602
|
+
<dtn:polish rdf:resource="&dtn;PC"/>
|
|
603
|
+
<topology:connectionDirection rdf:resource="&layer;BIDirectional"/>
|
|
604
|
+
</topology:Interface>
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/fiber/availableOCGSet -->
|
|
609
|
+
|
|
610
|
+
<layer:LabelSet rdf:about="#Duke/Infinera/DTN/fB/1/fiber/availableOCGSet">
|
|
611
|
+
<collections:size rdf:datatype="&xsd;int">4</collections:size>
|
|
612
|
+
<collections:element rdf:resource="#Duke/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
613
|
+
</layer:LabelSet>
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/fiber/ocgLabel/1 -->
|
|
618
|
+
|
|
619
|
+
<dtn:OCGLabel rdf:about="#Duke/Infinera/DTN/fB/1/fiber/ocgLabel/1">
|
|
620
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
621
|
+
<dtn:ocgGroup rdf:resource="&dtn;OCG1"/>
|
|
622
|
+
</dtn:OCGLabel>
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/fiber/usedOCGSet -->
|
|
627
|
+
|
|
628
|
+
<layer:LabelSet rdf:about="#Duke/Infinera/DTN/fB/1/fiber/usedOCGSet"/>
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/ocgB/1 -->
|
|
633
|
+
|
|
634
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/fB/1/ocgB/1">
|
|
635
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
636
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-3-l1</rdfs:label>
|
|
637
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
638
|
+
<topology:hasInputInterface rdf:resource="#Duke/Infinera/DTN/f1/ocg/1"/>
|
|
639
|
+
<topology:hasOutputInterface rdf:resource="#Duke/Infinera/DTN/f2/ocg/1"/>
|
|
640
|
+
<dtn:ocg rdf:resource="#Duke/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
641
|
+
<dtn:availableLambdaSet rdf:resource="#Duke/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet"/>
|
|
642
|
+
<dtn:usedLambdaSet rdf:resource="#Duke/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet"/>
|
|
643
|
+
</topology:Interface>
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet -->
|
|
648
|
+
|
|
649
|
+
<dtn:LambdaLabelSet rdf:about="#Duke/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet">
|
|
650
|
+
<collections:size rdf:datatype="&xsd;int">10</collections:size>
|
|
651
|
+
<collections:element rdf:resource="#Duke/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1"/>
|
|
652
|
+
</dtn:LambdaLabelSet>
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1 -->
|
|
657
|
+
|
|
658
|
+
<layer:LabelRange rdf:about="#Duke/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1">
|
|
659
|
+
<layer:lowerBound rdf:resource="#Duke/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1"/>
|
|
660
|
+
<layer:upperBound rdf:resource="#Duke/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10"/>
|
|
661
|
+
</layer:LabelRange>
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1 -->
|
|
666
|
+
|
|
667
|
+
<dtn:WavelengthLabel rdf:about="#Duke/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1">
|
|
668
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
669
|
+
</dtn:WavelengthLabel>
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10 -->
|
|
674
|
+
|
|
675
|
+
<dtn:WavelengthLabel rdf:about="#Duke/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10">
|
|
676
|
+
<layer:label_ID rdf:datatype="&xsd;float">10</layer:label_ID>
|
|
677
|
+
</dtn:WavelengthLabel>
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet -->
|
|
682
|
+
|
|
683
|
+
<layer:LabelSet rdf:about="#Duke/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet"/>
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/2/fiber -->
|
|
688
|
+
|
|
689
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/fB/2/fiber">
|
|
690
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
691
|
+
<rdfs:label>1-a-4</rdfs:label>
|
|
692
|
+
<dtn:OCG rdf:resource="#Duke/Infinera/DTN/fB/2/ocgB/1"/>
|
|
693
|
+
<topology:connectionDirection rdf:resource="&layer;BIDirectional"/>
|
|
694
|
+
</topology:Interface>
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/fB/2/ocgB/1 -->
|
|
699
|
+
|
|
700
|
+
<dtn:OCGNetworkElement rdf:about="#Duke/Infinera/DTN/fB/2/ocgB/1">
|
|
701
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
702
|
+
</dtn:OCGNetworkElement>
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t1B/1/ethernet -->
|
|
707
|
+
|
|
708
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/t1B/1/ethernet">
|
|
709
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
710
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
711
|
+
</topology:Interface>
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t1B/1/fiber -->
|
|
716
|
+
|
|
717
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/t1B/1/fiber">
|
|
718
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
719
|
+
<rdfs:label>1-a-3-t1-1</rdfs:label>
|
|
720
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet8;fiber"/>
|
|
721
|
+
<dtn:ocgLine rdf:resource="#Duke/Infinera/DTN/fB/1/fiber"/>
|
|
722
|
+
<dtn:WDM rdf:resource="#Duke/Infinera/DTN/t1B/1/lambda"/>
|
|
723
|
+
<topology:interfaceOf rdf:resource="&ben;Duke/Infinera/DTN"/>
|
|
724
|
+
</topology:Interface>
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t1B/1/lambda -->
|
|
729
|
+
|
|
730
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/t1B/1/lambda">
|
|
731
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
732
|
+
<rdfs:label>1-a-3-t1-1</rdfs:label>
|
|
733
|
+
<dtn:TenGbase-R rdf:resource="#Duke/Infinera/DTN/t1B/1/ethernet"/>
|
|
734
|
+
</topology:Interface>
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t2B/1/ethernet -->
|
|
739
|
+
|
|
740
|
+
<ethernet:EthernetNetworkElement rdf:about="#Duke/Infinera/DTN/t2B/1/ethernet">
|
|
741
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
742
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
743
|
+
</ethernet:EthernetNetworkElement>
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t2B/1/fiber -->
|
|
748
|
+
|
|
749
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/t2B/1/fiber">
|
|
750
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
751
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-4-t1-1</rdfs:label>
|
|
752
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet13;fiber"/>
|
|
753
|
+
<dtn:WDM rdf:resource="#Duke/Infinera/DTN/t2B/1/lambda"/>
|
|
754
|
+
<dtn:ocgLine rdf:resource="#NCSU/Infinera/DTN/fB/2/fiber"/>
|
|
755
|
+
<topology:interfaceOf rdf:resource="&ben;Duke/Infinera/DTN"/>
|
|
756
|
+
</topology:Interface>
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Duke/Infinera/DTN/t2B/1/lambda -->
|
|
761
|
+
|
|
762
|
+
<topology:Interface rdf:about="#Duke/Infinera/DTN/t2B/1/lambda">
|
|
763
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
764
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-4-t1-1</rdfs:label>
|
|
765
|
+
<dtn:TenGbase-R rdf:resource="#Duke/Infinera/DTN/t2B/1/ethernet"/>
|
|
766
|
+
</topology:Interface>
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/LambdaSwitchingMatrix -->
|
|
771
|
+
|
|
772
|
+
<dtn:LambdaSwitchingMatrix rdf:about="#NCSU/Infinera/DTN/LambdaSwitchingMatrix">
|
|
773
|
+
<layer:switchingCapability rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
774
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;OTU2"/>
|
|
775
|
+
</dtn:LambdaSwitchingMatrix>
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/OCGSwitchingMatrix -->
|
|
780
|
+
|
|
781
|
+
<dtn:OCGSwitchingMatrix rdf:about="#NCSU/Infinera/DTN/OCGSwitchingMatrix">
|
|
782
|
+
<layer:switchingCapability rdf:resource="&dtn;OCGNetworkElement"/>
|
|
783
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;OTU4"/>
|
|
784
|
+
</dtn:OCGSwitchingMatrix>
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/ODUSwitchingMatrix -->
|
|
789
|
+
|
|
790
|
+
<dtn:ODUSwitchingMatrix rdf:about="#NCSU/Infinera/DTN/ODUSwitchingMatrix">
|
|
791
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;ODU1"/>
|
|
792
|
+
<layer:switchingCapability rdf:resource="&dtn;ODUNetworkElement"/>
|
|
793
|
+
</dtn:ODUSwitchingMatrix>
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/f1/fiber -->
|
|
798
|
+
|
|
799
|
+
<dtn:FiberNetworkElement rdf:about="#NCSU/Infinera/DTN/f1/fiber"/>
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/f1/ocg/1 -->
|
|
804
|
+
|
|
805
|
+
<dtn:OCGNetworkElement rdf:about="#NCSU/Infinera/DTN/f1/ocg/1"/>
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/f2/fiber -->
|
|
810
|
+
|
|
811
|
+
<dtn:FiberNetworkElement rdf:about="#NCSU/Infinera/DTN/f2/fiber"/>
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/f2/ocg/1 -->
|
|
816
|
+
|
|
817
|
+
<dtn:OCGNetworkElement rdf:about="#NCSU/Infinera/DTN/f2/ocg/1"/>
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/fiber -->
|
|
822
|
+
|
|
823
|
+
<dtn:FiberNetworkElement rdf:about="#NCSU/Infinera/DTN/fB/1/fiber">
|
|
824
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
825
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
826
|
+
<topology:hasInputInterface rdf:resource="#NCSU/Infinera/DTN/f1/fiber"/>
|
|
827
|
+
<topology:hasOutputInterface rdf:resource="#NCSU/Infinera/DTN/f2/fiber"/>
|
|
828
|
+
<dtn:availableOCGSet rdf:resource="#NCSU/Infinera/DTN/fB/1/fiber/availableOCGSet"/>
|
|
829
|
+
<dtn:OCG rdf:resource="#NCSU/Infinera/DTN/fB/1/ocgB/1"/>
|
|
830
|
+
<topology:interfaceOf rdf:resource="&ben;NCSU/Infinera/DTN"/>
|
|
831
|
+
<topology:linkTo rdf:resource="&ben;NCSU/Polatis/f7-23"/>
|
|
832
|
+
</dtn:FiberNetworkElement>
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/fiber/availableOCGSet -->
|
|
837
|
+
|
|
838
|
+
<dtn:OCGLabelSet rdf:about="#NCSU/Infinera/DTN/fB/1/fiber/availableOCGSet">
|
|
839
|
+
<collections:size rdf:datatype="&xsd;int">4</collections:size>
|
|
840
|
+
<collections:element rdf:resource="#NCSU/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
841
|
+
</dtn:OCGLabelSet>
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/fiber/ocgLabel/1 -->
|
|
846
|
+
|
|
847
|
+
<dtn:OCGLabel rdf:about="#NCSU/Infinera/DTN/fB/1/fiber/ocgLabel/1">
|
|
848
|
+
<layer:label_ID>1</layer:label_ID>
|
|
849
|
+
<dtn:ocgGroup rdf:resource="&dtn;OCG1"/>
|
|
850
|
+
</dtn:OCGLabel>
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/ocgB/1 -->
|
|
855
|
+
|
|
856
|
+
<topology:Interface rdf:about="#NCSU/Infinera/DTN/fB/1/ocgB/1">
|
|
857
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
858
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
859
|
+
<dtn:ocg rdf:resource="#NCSU/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
860
|
+
<dtn:availableLambdaSet rdf:resource="#NCSU/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet"/>
|
|
861
|
+
</topology:Interface>
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet -->
|
|
866
|
+
|
|
867
|
+
<dtn:LambdaLabelSet rdf:about="#NCSU/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet">
|
|
868
|
+
<collections:size rdf:datatype="&xsd;int">10</collections:size>
|
|
869
|
+
<collections:element rdf:resource="#NCSU/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1"/>
|
|
870
|
+
</dtn:LambdaLabelSet>
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1 -->
|
|
875
|
+
|
|
876
|
+
<layer:LabelRange rdf:about="#NCSU/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1">
|
|
877
|
+
<layer:lowerBound rdf:resource="#NCSU/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1"/>
|
|
878
|
+
<layer:upperBound rdf:resource="#NCSU/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10"/>
|
|
879
|
+
</layer:LabelRange>
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1 -->
|
|
884
|
+
|
|
885
|
+
<dtn:WavelengthLabel rdf:about="#NCSU/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1">
|
|
886
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
887
|
+
</dtn:WavelengthLabel>
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10 -->
|
|
892
|
+
|
|
893
|
+
<dtn:WavelengthLabel rdf:about="#NCSU/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10">
|
|
894
|
+
<layer:label_ID rdf:datatype="&xsd;float">10</layer:label_ID>
|
|
895
|
+
</dtn:WavelengthLabel>
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/fB/2/fiber -->
|
|
900
|
+
|
|
901
|
+
<dtn:FiberNetworkElement rdf:about="#NCSU/Infinera/DTN/fB/2/fiber">
|
|
902
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
903
|
+
<topology:connectionDirection rdf:resource="&layer;BIDirectional"/>
|
|
904
|
+
</dtn:FiberNetworkElement>
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/t1B/1/ethernet -->
|
|
909
|
+
|
|
910
|
+
<topology:Interface rdf:about="#NCSU/Infinera/DTN/t1B/1/ethernet">
|
|
911
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
912
|
+
</topology:Interface>
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/t1B/1/fiber -->
|
|
917
|
+
|
|
918
|
+
<topology:Interface rdf:about="#NCSU/Infinera/DTN/t1B/1/fiber">
|
|
919
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
920
|
+
<dtn:ocgLine rdf:resource="#NCSU/Infinera/DTN/fB/1/ocgB/1"/>
|
|
921
|
+
<dtn:WDM rdf:resource="#NCSU/Infinera/DTN/t1B/1/lambda"/>
|
|
922
|
+
</topology:Interface>
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#NCSU/Infinera/DTN/t1B/1/lambda -->
|
|
927
|
+
|
|
928
|
+
<topology:Interface rdf:about="#NCSU/Infinera/DTN/t1B/1/lambda">
|
|
929
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
930
|
+
<dtn:TenGbase-R rdf:resource="#NCSU/Infinera/DTN/t1B/1/ethernet"/>
|
|
931
|
+
</topology:Interface>
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/LambdaSwitchingMatrix -->
|
|
936
|
+
|
|
937
|
+
<dtn:LambdaSwitchingMatrix rdf:about="#Renci/Infinera/DTN/LambdaSwitchingMatrix">
|
|
938
|
+
<layer:switchingCapability rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
939
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;OTU2"/>
|
|
940
|
+
</dtn:LambdaSwitchingMatrix>
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/OCGSwitchingMatrix -->
|
|
945
|
+
|
|
946
|
+
<dtn:OCGSwitchingMatrix rdf:about="#Renci/Infinera/DTN/OCGSwitchingMatrix">
|
|
947
|
+
<layer:switchingCapability rdf:resource="&dtn;OCGNetworkElement"/>
|
|
948
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;OTU4"/>
|
|
949
|
+
</dtn:OCGSwitchingMatrix>
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/ODUSwitchingMatrix -->
|
|
954
|
+
|
|
955
|
+
<dtn:ODUSwitchingMatrix rdf:about="#Renci/Infinera/DTN/ODUSwitchingMatrix">
|
|
956
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;ODU1"/>
|
|
957
|
+
<layer:switchingCapability rdf:resource="&dtn;ODUNetworkElement"/>
|
|
958
|
+
</dtn:ODUSwitchingMatrix>
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/f1/fiber -->
|
|
963
|
+
|
|
964
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/f1/fiber">
|
|
965
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
966
|
+
<rdfs:label
|
|
967
|
+
>Renci/Infinera/DTN/f1</rdfs:label>
|
|
968
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
969
|
+
<dtn:OCG rdf:resource="#Renci/Infinera/DTN/f1/ocg/1"/>
|
|
970
|
+
</topology:Interface>
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
|
|
974
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/f1/ocg/1 -->
|
|
975
|
+
|
|
976
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/f1/ocg/1">
|
|
977
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
978
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
979
|
+
</topology:Interface>
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/f2/fiber -->
|
|
984
|
+
|
|
985
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/f2/fiber">
|
|
986
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
987
|
+
<rdfs:label
|
|
988
|
+
>DTN-Infinera-Renci:l2</rdfs:label>
|
|
989
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
990
|
+
<dtn:OCG rdf:resource="#Renci/Infinera/DTN/f2/ocg/1"/>
|
|
991
|
+
<dtn:connector rdf:resource="&dtn;LC-Connector"/>
|
|
992
|
+
<dtn:polish rdf:resource="&dtn;PC"/>
|
|
993
|
+
</topology:Interface>
|
|
994
|
+
|
|
995
|
+
|
|
996
|
+
|
|
997
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/f2/ocg/1 -->
|
|
998
|
+
|
|
999
|
+
<dtn:OCGNetworkElement rdf:about="#Renci/Infinera/DTN/f2/ocg/1">
|
|
1000
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
1001
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
1002
|
+
</dtn:OCGNetworkElement>
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/fiber -->
|
|
1007
|
+
|
|
1008
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/fB/1/fiber">
|
|
1009
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
1010
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-3</rdfs:label>
|
|
1011
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
1012
|
+
<topology:hasInputInterface rdf:resource="#Renci/Infinera/DTN/f1/fiber"/>
|
|
1013
|
+
<topology:hasOutputInterface rdf:resource="#Renci/Infinera/DTN/f2/fiber"/>
|
|
1014
|
+
<dtn:availableOCGSet rdf:resource="#Renci/Infinera/DTN/fB/1/fiber/availableOCGSet"/>
|
|
1015
|
+
<dtn:usedOCGSet rdf:resource="#Renci/Infinera/DTN/fB/1/fiber/usedOCGSet"/>
|
|
1016
|
+
<dtn:OCG rdf:resource="#Renci/Infinera/DTN/fB/1/ocgB/1"/>
|
|
1017
|
+
<topology:interfaceOf rdf:resource="&ben;Renci/Infinera/DTN"/>
|
|
1018
|
+
<topology:linkTo rdf:resource="&ben;Renci/Polatis/f6-22"/>
|
|
1019
|
+
<topology:connectionDirection rdf:resource="&layer;BIDirectional"/>
|
|
1020
|
+
</topology:Interface>
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/fiber/availableOCGSet -->
|
|
1025
|
+
|
|
1026
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/1/fiber/availableOCGSet">
|
|
1027
|
+
<collections:size rdf:datatype="&xsd;int">4</collections:size>
|
|
1028
|
+
<collections:element rdf:resource="#Renci/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
1029
|
+
</layer:LabelSet>
|
|
1030
|
+
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/fiber/ocgLabel/1 -->
|
|
1034
|
+
|
|
1035
|
+
<dtn:OCGLabel rdf:about="#Renci/Infinera/DTN/fB/1/fiber/ocgLabel/1">
|
|
1036
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
1037
|
+
<dtn:ocgGroup rdf:resource="&dtn;OCG1"/>
|
|
1038
|
+
</dtn:OCGLabel>
|
|
1039
|
+
|
|
1040
|
+
|
|
1041
|
+
|
|
1042
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/fiber/usedOCGSet -->
|
|
1043
|
+
|
|
1044
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/1/fiber/usedOCGSet"/>
|
|
1045
|
+
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/ocgB/1 -->
|
|
1049
|
+
|
|
1050
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/fB/1/ocgB/1">
|
|
1051
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
1052
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-3-l1</rdfs:label>
|
|
1053
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
1054
|
+
<topology:hasInputInterface rdf:resource="#Renci/Infinera/DTN/f1/ocg/1"/>
|
|
1055
|
+
<topology:hasOutputInterface rdf:resource="#Renci/Infinera/DTN/f2/ocg/1"/>
|
|
1056
|
+
<dtn:ocg rdf:resource="#Renci/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
1057
|
+
<dtn:availableLambdaSet rdf:resource="#Renci/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet"/>
|
|
1058
|
+
<dtn:usedLambdaSet rdf:resource="#Renci/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet"/>
|
|
1059
|
+
</topology:Interface>
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet -->
|
|
1064
|
+
|
|
1065
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet">
|
|
1066
|
+
<collections:size rdf:datatype="&xsd;int">10</collections:size>
|
|
1067
|
+
<collections:element rdf:resource="#Renci/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1"/>
|
|
1068
|
+
</layer:LabelSet>
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
|
|
1072
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1 -->
|
|
1073
|
+
|
|
1074
|
+
<layer:LabelRange rdf:about="#Renci/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1">
|
|
1075
|
+
<layer:lowerBound rdf:resource="#Renci/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1"/>
|
|
1076
|
+
<layer:upperBound rdf:resource="#Renci/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10"/>
|
|
1077
|
+
</layer:LabelRange>
|
|
1078
|
+
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1 -->
|
|
1082
|
+
|
|
1083
|
+
<dtn:WavelengthLabel rdf:about="#Renci/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1">
|
|
1084
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
1085
|
+
</dtn:WavelengthLabel>
|
|
1086
|
+
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10 -->
|
|
1090
|
+
|
|
1091
|
+
<dtn:WavelengthLabel rdf:about="#Renci/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10">
|
|
1092
|
+
<layer:label_ID rdf:datatype="&xsd;float">10</layer:label_ID>
|
|
1093
|
+
</dtn:WavelengthLabel>
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet -->
|
|
1098
|
+
|
|
1099
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet"/>
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
|
|
1103
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/fiber -->
|
|
1104
|
+
|
|
1105
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/fB/2/fiber">
|
|
1106
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
1107
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-4</rdfs:label>
|
|
1108
|
+
<dtn:availableOCGSet rdf:resource="#Renci/Infinera/DTN/fB/2/fiber/availableOCGSet"/>
|
|
1109
|
+
<dtn:usedOCGSet rdf:resource="#Renci/Infinera/DTN/fB/2/fiber/usedOCGSet"/>
|
|
1110
|
+
<dtn:OCG rdf:resource="#Renci/Infinera/DTN/fB/2/ocgB/1"/>
|
|
1111
|
+
<topology:interfaceOf rdf:resource="&ben;Renci/Infinera/DTN"/>
|
|
1112
|
+
<topology:linkTo rdf:resource="&ben;Renci/Polatis/f7-23"/>
|
|
1113
|
+
<topology:connectionDirection rdf:resource="&layer;BIDirectional"/>
|
|
1114
|
+
</topology:Interface>
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/fiber/availableOCGSet -->
|
|
1119
|
+
|
|
1120
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/2/fiber/availableOCGSet">
|
|
1121
|
+
<collections:size rdf:datatype="&xsd;int">4</collections:size>
|
|
1122
|
+
<collections:element rdf:resource="#Renci/Infinera/DTN/fB/2/fiber/ocgLabel/1"/>
|
|
1123
|
+
</layer:LabelSet>
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
|
|
1127
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/fiber/ocgLabel/1 -->
|
|
1128
|
+
|
|
1129
|
+
<dtn:OCGLabel rdf:about="#Renci/Infinera/DTN/fB/2/fiber/ocgLabel/1">
|
|
1130
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
1131
|
+
<dtn:ocgGroup rdf:resource="&dtn;OCG1"/>
|
|
1132
|
+
</dtn:OCGLabel>
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/fiber/usedOCGSet -->
|
|
1137
|
+
|
|
1138
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/2/fiber/usedOCGSet"/>
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/ocgB/1 -->
|
|
1143
|
+
|
|
1144
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/fB/2/ocgB/1">
|
|
1145
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
1146
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-4-l1</rdfs:label>
|
|
1147
|
+
<dtn:ocg rdf:resource="#Renci/Infinera/DTN/fB/2/fiber/ocgLabel/1"/>
|
|
1148
|
+
<dtn:availableLambdaSet rdf:resource="#Renci/Infinera/DTN/fB/2/ocgB/1/availableLambdaSet"/>
|
|
1149
|
+
<dtn:usedLambdaSet rdf:resource="#Renci/Infinera/DTN/fB/2/ocgB/1/usedLambdaSet"/>
|
|
1150
|
+
</topology:Interface>
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
|
|
1154
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/ocgB/1/availableLambdaSet -->
|
|
1155
|
+
|
|
1156
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/2/ocgB/1/availableLambdaSet">
|
|
1157
|
+
<collections:size rdf:datatype="&xsd;int">10</collections:size>
|
|
1158
|
+
<collections:element rdf:resource="#Renci/Infinera/DTN/fB/2/ocgB/1/availableLambdaSet/1"/>
|
|
1159
|
+
</layer:LabelSet>
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/ocgB/1/availableLambdaSet/1 -->
|
|
1164
|
+
|
|
1165
|
+
<layer:LabelRange rdf:about="#Renci/Infinera/DTN/fB/2/ocgB/1/availableLambdaSet/1">
|
|
1166
|
+
<layer:lowerBound rdf:resource="#Renci/Infinera/DTN/fB/2/ocgB/1/lambdaLabel/1"/>
|
|
1167
|
+
<layer:upperBound rdf:resource="#Renci/Infinera/DTN/fB/2/ocgB/1/lambdaLabel/10"/>
|
|
1168
|
+
</layer:LabelRange>
|
|
1169
|
+
|
|
1170
|
+
|
|
1171
|
+
|
|
1172
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/ocgB/1/lambdaLabel/1 -->
|
|
1173
|
+
|
|
1174
|
+
<dtn:WavelengthLabel rdf:about="#Renci/Infinera/DTN/fB/2/ocgB/1/lambdaLabel/1">
|
|
1175
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
1176
|
+
</dtn:WavelengthLabel>
|
|
1177
|
+
|
|
1178
|
+
|
|
1179
|
+
|
|
1180
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/ocgB/1/lambdaLabel/10 -->
|
|
1181
|
+
|
|
1182
|
+
<dtn:WavelengthLabel rdf:about="#Renci/Infinera/DTN/fB/2/ocgB/1/lambdaLabel/10">
|
|
1183
|
+
<layer:label_ID rdf:datatype="&xsd;float">10</layer:label_ID>
|
|
1184
|
+
</dtn:WavelengthLabel>
|
|
1185
|
+
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/fB/2/ocgB/1/usedLambdaSet -->
|
|
1189
|
+
|
|
1190
|
+
<layer:LabelSet rdf:about="#Renci/Infinera/DTN/fB/2/ocgB/1/usedLambdaSet"/>
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t1B/1/ethernet -->
|
|
1195
|
+
|
|
1196
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/t1B/1/ethernet">
|
|
1197
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
1198
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
1199
|
+
</topology:Interface>
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t1B/1/fiber -->
|
|
1204
|
+
|
|
1205
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/t1B/1/fiber">
|
|
1206
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
1207
|
+
<rdfs:label>1-a-3-t1-1</rdfs:label>
|
|
1208
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet10;fiber"/>
|
|
1209
|
+
<dtn:ocgLine rdf:resource="#Renci/Infinera/DTN/fB/1/fiber"/>
|
|
1210
|
+
<dtn:WDM rdf:resource="#Renci/Infinera/DTN/t1B/1/lambda"/>
|
|
1211
|
+
<topology:interfaceOf rdf:resource="&ben;Renci/Infinera/DTN"/>
|
|
1212
|
+
</topology:Interface>
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t1B/1/lambda -->
|
|
1217
|
+
|
|
1218
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/t1B/1/lambda">
|
|
1219
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
1220
|
+
<rdfs:label>1-a-3-t1-1</rdfs:label>
|
|
1221
|
+
<dtn:TenGbase-R rdf:resource="#Renci/Infinera/DTN/t1B/1/ethernet"/>
|
|
1222
|
+
</topology:Interface>
|
|
1223
|
+
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t2B/1/ethernet -->
|
|
1227
|
+
|
|
1228
|
+
<ethernet:EthernetNetworkElement rdf:about="#Renci/Infinera/DTN/t2B/1/ethernet">
|
|
1229
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
1230
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
1231
|
+
</ethernet:EthernetNetworkElement>
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t2B/1/fiber -->
|
|
1236
|
+
|
|
1237
|
+
<topology:Interface rdf:about="#Renci/Infinera/DTN/t2B/1/fiber">
|
|
1238
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
1239
|
+
<rdfs:label>1-a-4-t1-1</rdfs:label>
|
|
1240
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet11;fiber"/>
|
|
1241
|
+
<dtn:WDM rdf:resource="#Renci/Infinera/DTN/t2B/1/lambda"/>
|
|
1242
|
+
<dtn:ocgLine rdf:resource="#UNC/Infinera/DTN/fB/2/fiber"/>
|
|
1243
|
+
<topology:interfaceOf rdf:resource="&ben;Renci/Infinera/DTN"/>
|
|
1244
|
+
</topology:Interface>
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
|
|
1248
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#Renci/Infinera/DTN/t2B/1/lambda -->
|
|
1249
|
+
|
|
1250
|
+
<dtn:LambdaNetworkElement rdf:about="#Renci/Infinera/DTN/t2B/1/lambda">
|
|
1251
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
1252
|
+
<rdfs:label>1-a-4-t1-1</rdfs:label>
|
|
1253
|
+
<dtn:TenGbase-R rdf:resource="#Renci/Infinera/DTN/t2B/1/ethernet"/>
|
|
1254
|
+
</dtn:LambdaNetworkElement>
|
|
1255
|
+
|
|
1256
|
+
|
|
1257
|
+
|
|
1258
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/LambdaSwitchingMatrix -->
|
|
1259
|
+
|
|
1260
|
+
<dtn:LambdaSwitchingMatrix rdf:about="#UNC/Infinera/DTN/LambdaSwitchingMatrix">
|
|
1261
|
+
<layer:switchingCapability rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
1262
|
+
</dtn:LambdaSwitchingMatrix>
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/OCGSwitchingMatrix -->
|
|
1267
|
+
|
|
1268
|
+
<dtn:OCGSwitchingMatrix rdf:about="#UNC/Infinera/DTN/OCGSwitchingMatrix">
|
|
1269
|
+
<layer:switchingCapability rdf:resource="&dtn;OCGNetworkElement"/>
|
|
1270
|
+
</dtn:OCGSwitchingMatrix>
|
|
1271
|
+
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/ODUSwitchingMatrix -->
|
|
1275
|
+
|
|
1276
|
+
<dtn:ODUSwitchingMatrix rdf:about="#UNC/Infinera/DTN/ODUSwitchingMatrix">
|
|
1277
|
+
<dtn:hasTimeSlotGranularity rdf:resource="&dtn;ODU1"/>
|
|
1278
|
+
<layer:switchingCapability rdf:resource="&dtn;ODUNetworkElement"/>
|
|
1279
|
+
</dtn:ODUSwitchingMatrix>
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/f1/fiber -->
|
|
1284
|
+
|
|
1285
|
+
<dtn:FiberNetworkElement rdf:about="#UNC/Infinera/DTN/f1/fiber">
|
|
1286
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
1287
|
+
<rdfs:label
|
|
1288
|
+
>UNC/Infinera/DTN/f1</rdfs:label>
|
|
1289
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
1290
|
+
<dtn:OCG rdf:resource="#UNC/Infinera/DTN/f1/ocg/1"/>
|
|
1291
|
+
</dtn:FiberNetworkElement>
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
|
|
1295
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/f1/ocg/1 -->
|
|
1296
|
+
|
|
1297
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/f1/ocg/1">
|
|
1298
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
1299
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
1300
|
+
</topology:Interface>
|
|
1301
|
+
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/f2/fiber -->
|
|
1305
|
+
|
|
1306
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/f2/fiber">
|
|
1307
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
1308
|
+
<rdfs:label
|
|
1309
|
+
>DTN-Infinera-UNC:l2</rdfs:label>
|
|
1310
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
1311
|
+
<dtn:OCG rdf:resource="#UNC/Infinera/DTN/f2/ocg/1"/>
|
|
1312
|
+
<dtn:connector rdf:resource="&dtn;LC-Connector"/>
|
|
1313
|
+
<dtn:polish rdf:resource="&dtn;PC"/>
|
|
1314
|
+
</topology:Interface>
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/f2/ocg/1 -->
|
|
1319
|
+
|
|
1320
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/f2/ocg/1">
|
|
1321
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
1322
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
1323
|
+
</topology:Interface>
|
|
1324
|
+
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/fiber -->
|
|
1328
|
+
|
|
1329
|
+
<dtn:FiberNetworkElement rdf:about="#UNC/Infinera/DTN/fB/1/fiber">
|
|
1330
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
1331
|
+
<dtn:maxOCG rdf:datatype="&xsd;integer">4</dtn:maxOCG>
|
|
1332
|
+
<topology:hasInputInterface rdf:resource="#UNC/Infinera/DTN/f1/fiber"/>
|
|
1333
|
+
<topology:hasOutputInterface rdf:resource="#UNC/Infinera/DTN/f2/fiber"/>
|
|
1334
|
+
<dtn:availableOCGSet rdf:resource="#UNC/Infinera/DTN/fB/1/fiber/availableOCGSet"/>
|
|
1335
|
+
<dtn:usedOCGSet rdf:resource="#UNC/Infinera/DTN/fB/1/fiber/usedOCGSet"/>
|
|
1336
|
+
<dtn:OCG rdf:resource="#UNC/Infinera/DTN/fB/1/ocgB/1"/>
|
|
1337
|
+
<topology:interfaceOf rdf:resource="&ben;UNC/Infinera/DTN"/>
|
|
1338
|
+
<topology:linkTo rdf:resource="&ben;UNC/Polatis/f6-22"/>
|
|
1339
|
+
<topology:connectionDirection rdf:resource="&layer;BIDirectional"/>
|
|
1340
|
+
</dtn:FiberNetworkElement>
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
|
|
1344
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/fiber/availableOCGSet -->
|
|
1345
|
+
|
|
1346
|
+
<layer:LabelSet rdf:about="#UNC/Infinera/DTN/fB/1/fiber/availableOCGSet">
|
|
1347
|
+
<collections:size rdf:datatype="&xsd;int">4</collections:size>
|
|
1348
|
+
<collections:element rdf:resource="#UNC/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
1349
|
+
</layer:LabelSet>
|
|
1350
|
+
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/fiber/ocgLabel/1 -->
|
|
1354
|
+
|
|
1355
|
+
<dtn:OCGLabel rdf:about="#UNC/Infinera/DTN/fB/1/fiber/ocgLabel/1">
|
|
1356
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
1357
|
+
<dtn:ocgGroup rdf:resource="&dtn;OCG1"/>
|
|
1358
|
+
</dtn:OCGLabel>
|
|
1359
|
+
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/fiber/usedOCGSet -->
|
|
1363
|
+
|
|
1364
|
+
<layer:LabelSet rdf:about="#UNC/Infinera/DTN/fB/1/fiber/usedOCGSet"/>
|
|
1365
|
+
|
|
1366
|
+
|
|
1367
|
+
|
|
1368
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/ocgB/1 -->
|
|
1369
|
+
|
|
1370
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/fB/1/ocgB/1">
|
|
1371
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
1372
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-3-l1</rdfs:label>
|
|
1373
|
+
<dtn:maxWavelength rdf:datatype="&xsd;integer">10</dtn:maxWavelength>
|
|
1374
|
+
<topology:hasInputInterface rdf:resource="#UNC/Infinera/DTN/f1/ocg/1"/>
|
|
1375
|
+
<topology:hasOutputInterface rdf:resource="#UNC/Infinera/DTN/f2/ocg/1"/>
|
|
1376
|
+
<dtn:ocg rdf:resource="#UNC/Infinera/DTN/fB/1/fiber/ocgLabel/1"/>
|
|
1377
|
+
<dtn:availableLambdaSet rdf:resource="#UNC/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet"/>
|
|
1378
|
+
<dtn:usedLambdaSet rdf:resource="#UNC/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet"/>
|
|
1379
|
+
</topology:Interface>
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
|
|
1383
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet -->
|
|
1384
|
+
|
|
1385
|
+
<layer:LabelSet rdf:about="#UNC/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet">
|
|
1386
|
+
<collections:size rdf:datatype="&xsd;int">10</collections:size>
|
|
1387
|
+
<collections:element rdf:resource="#UNC/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1"/>
|
|
1388
|
+
</layer:LabelSet>
|
|
1389
|
+
|
|
1390
|
+
|
|
1391
|
+
|
|
1392
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1 -->
|
|
1393
|
+
|
|
1394
|
+
<layer:LabelRange rdf:about="#UNC/Infinera/DTN/fB/1/ocgB/1/availableLambdaSet/1">
|
|
1395
|
+
<layer:lowerBound rdf:resource="#UNC/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1"/>
|
|
1396
|
+
<layer:upperBound rdf:resource="#UNC/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10"/>
|
|
1397
|
+
</layer:LabelRange>
|
|
1398
|
+
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1 -->
|
|
1402
|
+
|
|
1403
|
+
<dtn:WavelengthLabel rdf:about="#UNC/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/1">
|
|
1404
|
+
<layer:label_ID rdf:datatype="&xsd;float">1</layer:label_ID>
|
|
1405
|
+
</dtn:WavelengthLabel>
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
|
|
1409
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10 -->
|
|
1410
|
+
|
|
1411
|
+
<dtn:WavelengthLabel rdf:about="#UNC/Infinera/DTN/fB/1/ocgB/1/lambdaLabel/10">
|
|
1412
|
+
<layer:label_ID rdf:datatype="&xsd;float">10</layer:label_ID>
|
|
1413
|
+
</dtn:WavelengthLabel>
|
|
1414
|
+
|
|
1415
|
+
|
|
1416
|
+
|
|
1417
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet -->
|
|
1418
|
+
|
|
1419
|
+
<layer:LabelSet rdf:about="#UNC/Infinera/DTN/fB/1/ocgB/1/usedLambdaSet"/>
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/2/fiber -->
|
|
1424
|
+
|
|
1425
|
+
<dtn:FiberNetworkElement rdf:about="#UNC/Infinera/DTN/fB/2/fiber">
|
|
1426
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
1427
|
+
<dtn:OCG rdf:resource="#UNC/Infinera/DTN/fB/2/ocgB/1"/>
|
|
1428
|
+
<topology:connectionDirection rdf:resource="&layer;BIDirectional"/>
|
|
1429
|
+
</dtn:FiberNetworkElement>
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/fB/2/ocgB/1 -->
|
|
1434
|
+
|
|
1435
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/fB/2/ocgB/1">
|
|
1436
|
+
<rdf:type rdf:resource="&dtn;OCGNetworkElement"/>
|
|
1437
|
+
</topology:Interface>
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t1B/1/ethernet -->
|
|
1442
|
+
|
|
1443
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/t1B/1/ethernet">
|
|
1444
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
1445
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
1446
|
+
</topology:Interface>
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t1B/1/fiber -->
|
|
1451
|
+
|
|
1452
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/t1B/1/fiber">
|
|
1453
|
+
<rdf:type rdf:resource="&dtn;FiberNetworkElement"/>
|
|
1454
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-3-t1-1</rdfs:label>
|
|
1455
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet9;fiber"/>
|
|
1456
|
+
<dtn:ocgLine rdf:resource="#UNC/Infinera/DTN/fB/1/fiber"/>
|
|
1457
|
+
<dtn:WDM rdf:resource="#UNC/Infinera/DTN/t1B/1/lambda"/>
|
|
1458
|
+
<topology:interfaceOf rdf:resource="&ben;UNC/Infinera/DTN"/>
|
|
1459
|
+
</topology:Interface>
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t1B/1/lambda -->
|
|
1464
|
+
|
|
1465
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/t1B/1/lambda">
|
|
1466
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
1467
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-3-t1-1</rdfs:label>
|
|
1468
|
+
<dtn:TenGbase-R rdf:resource="#UNC/Infinera/DTN/t1B/1/ethernet"/>
|
|
1469
|
+
</topology:Interface>
|
|
1470
|
+
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t2B/1/ethernet -->
|
|
1474
|
+
|
|
1475
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/t2B/1/ethernet">
|
|
1476
|
+
<rdf:type rdf:resource="ðernet;EthernetNetworkElement"/>
|
|
1477
|
+
<layer:hasBitRate rdf:resource="&layer;10G"/>
|
|
1478
|
+
</topology:Interface>
|
|
1479
|
+
|
|
1480
|
+
|
|
1481
|
+
|
|
1482
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t2B/1/fiber -->
|
|
1483
|
+
|
|
1484
|
+
<dtn:FiberNetworkElement rdf:about="#UNC/Infinera/DTN/t2B/1/fiber">
|
|
1485
|
+
<rdf:type rdf:resource="&topology;Interface"/>
|
|
1486
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-4-t1-1</rdfs:label>
|
|
1487
|
+
<topology:linkTo rdf:resource="&TenGigabitEthernet12;fiber"/>
|
|
1488
|
+
<dtn:ocgLine rdf:resource="#NCSU/Infinera/DTN/fB/2/fiber"/>
|
|
1489
|
+
<dtn:WDM rdf:resource="#UNC/Infinera/DTN/t2B/1/lambda"/>
|
|
1490
|
+
<topology:interfaceOf rdf:resource="&ben;UNC/Infinera/DTN"/>
|
|
1491
|
+
</dtn:FiberNetworkElement>
|
|
1492
|
+
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
<!-- http://geni-orca.renci.org/owl/ben-dtn.rdf#UNC/Infinera/DTN/t2B/1/lambda -->
|
|
1496
|
+
|
|
1497
|
+
<topology:Interface rdf:about="#UNC/Infinera/DTN/t2B/1/lambda">
|
|
1498
|
+
<rdf:type rdf:resource="&dtn;LambdaNetworkElement"/>
|
|
1499
|
+
<rdfs:label rdf:datatype="&xsd;string">1-a-4-t1-1</rdfs:label>
|
|
1500
|
+
<dtn:TenGbase-R rdf:resource="#UNC/Infinera/DTN/t2B/1/ethernet"/>
|
|
1501
|
+
</topology:Interface>
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Duke -->
|
|
1506
|
+
|
|
1507
|
+
<rdf:Description rdf:about="&ben;Duke"/>
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Duke/Infinera/DTN -->
|
|
1512
|
+
|
|
1513
|
+
<rdf:Description rdf:about="&ben;Duke/Infinera/DTN">
|
|
1514
|
+
<rdfs:label>DTN</rdfs:label>
|
|
1515
|
+
<topology:managementIP>192.168.202.5</topology:managementIP>
|
|
1516
|
+
<topology:hostName>dtn-1.duke.ben</topology:hostName>
|
|
1517
|
+
<topology:hasSwitchMatrix rdf:resource="#Duke/Infinera/DTN/LambdaSwitchingMatrix"/>
|
|
1518
|
+
<topology:hasSwitchMatrix rdf:resource="#Duke/Infinera/DTN/OCGSwitchingMatrix"/>
|
|
1519
|
+
<topology:hasSwitchMatrix rdf:resource="#Duke/Infinera/DTN/ODUSwitchingMatrix"/>
|
|
1520
|
+
<topology:hasInterface rdf:resource="#Duke/Infinera/DTN/fB/1/fiber"/>
|
|
1521
|
+
<topology:hasInterface rdf:resource="#Duke/Infinera/DTN/fB/2/fiber"/>
|
|
1522
|
+
<topology:hasInterface rdf:resource="#Duke/Infinera/DTN/t1B/1/fiber"/>
|
|
1523
|
+
<topology:hasInterface rdf:resource="#Duke/Infinera/DTN/t2B/1/fiber"/>
|
|
1524
|
+
<topology:locatedAt rdf:resource="&ben;Duke"/>
|
|
1525
|
+
</rdf:Description>
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
|
|
1529
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Duke/Polatis/f7-23 -->
|
|
1530
|
+
|
|
1531
|
+
<rdf:Description rdf:about="&ben;Duke/Polatis/f7-23"/>
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
|
|
1535
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#NCSU -->
|
|
1536
|
+
|
|
1537
|
+
<rdf:Description rdf:about="&ben;NCSU"/>
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
|
+
|
|
1541
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#NCSU/Infinera/DTN -->
|
|
1542
|
+
|
|
1543
|
+
<rdf:Description rdf:about="&ben;NCSU/Infinera/DTN">
|
|
1544
|
+
<rdfs:label>DTN</rdfs:label>
|
|
1545
|
+
<topology:hostName>dtn-1.ncsu.ben</topology:hostName>
|
|
1546
|
+
<topology:managementIP>192.168.204.5</topology:managementIP>
|
|
1547
|
+
<topology:hasSwitchMatrix rdf:resource="#NCSU/Infinera/DTN/LambdaSwitchingMatrix"/>
|
|
1548
|
+
<topology:hasSwitchMatrix rdf:resource="#NCSU/Infinera/DTN/OCGSwitchingMatrix"/>
|
|
1549
|
+
<topology:hasSwitchMatrix rdf:resource="#NCSU/Infinera/DTN/ODUSwitchingMatrix"/>
|
|
1550
|
+
<topology:hasInterface rdf:resource="#NCSU/Infinera/DTN/fB/1/fiber"/>
|
|
1551
|
+
<topology:hasInterface rdf:resource="#NCSU/Infinera/DTN/fB/2/fiber"/>
|
|
1552
|
+
<topology:hasInterface rdf:resource="#NCSU/Infinera/DTN/t1B/1/fiber"/>
|
|
1553
|
+
<topology:locatedAt rdf:resource="&ben;NCSU"/>
|
|
1554
|
+
</rdf:Description>
|
|
1555
|
+
|
|
1556
|
+
|
|
1557
|
+
|
|
1558
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#NCSU/Polatis/f7-23 -->
|
|
1559
|
+
|
|
1560
|
+
<rdf:Description rdf:about="&ben;NCSU/Polatis/f7-23"/>
|
|
1561
|
+
|
|
1562
|
+
|
|
1563
|
+
|
|
1564
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Renci -->
|
|
1565
|
+
|
|
1566
|
+
<rdf:Description rdf:about="&ben;Renci"/>
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Renci/Infinera/DTN -->
|
|
1571
|
+
|
|
1572
|
+
<rdf:Description rdf:about="&ben;Renci/Infinera/DTN">
|
|
1573
|
+
<rdfs:label>DTN</rdfs:label>
|
|
1574
|
+
<topology:hostName>dtn-1.renci.ben</topology:hostName>
|
|
1575
|
+
<topology:managementIP>192.168.201.5</topology:managementIP>
|
|
1576
|
+
<topology:hasSwitchMatrix rdf:resource="#Renci/Infinera/DTN/LambdaSwitchingMatrix"/>
|
|
1577
|
+
<topology:hasSwitchMatrix rdf:resource="#Renci/Infinera/DTN/OCGSwitchingMatrix"/>
|
|
1578
|
+
<topology:hasSwitchMatrix rdf:resource="#Renci/Infinera/DTN/ODUSwitchingMatrix"/>
|
|
1579
|
+
<topology:hasInterface rdf:resource="#Renci/Infinera/DTN/fB/1/fiber"/>
|
|
1580
|
+
<topology:hasInterface rdf:resource="#Renci/Infinera/DTN/fB/2/fiber"/>
|
|
1581
|
+
<topology:hasInterface rdf:resource="#Renci/Infinera/DTN/t1B/1/fiber"/>
|
|
1582
|
+
<topology:hasInterface rdf:resource="#Renci/Infinera/DTN/t2B/1/fiber"/>
|
|
1583
|
+
<topology:locatedAt rdf:resource="&ben;Renci"/>
|
|
1584
|
+
</rdf:Description>
|
|
1585
|
+
|
|
1586
|
+
|
|
1587
|
+
|
|
1588
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Renci/Polatis/f6-22 -->
|
|
1589
|
+
|
|
1590
|
+
<rdf:Description rdf:about="&ben;Renci/Polatis/f6-22"/>
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
|
|
1594
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#Renci/Polatis/f7-23 -->
|
|
1595
|
+
|
|
1596
|
+
<rdf:Description rdf:about="&ben;Renci/Polatis/f7-23"/>
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
|
+
|
|
1600
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#UNC -->
|
|
1601
|
+
|
|
1602
|
+
<rdf:Description rdf:about="&ben;UNC"/>
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#UNC/Infinera/DTN -->
|
|
1607
|
+
|
|
1608
|
+
<rdf:Description rdf:about="&ben;UNC/Infinera/DTN">
|
|
1609
|
+
<rdfs:label>DTN</rdfs:label>
|
|
1610
|
+
<topology:managementIP>192.168.203.5</topology:managementIP>
|
|
1611
|
+
<topology:hostName>dtn-1.unc.ben</topology:hostName>
|
|
1612
|
+
<topology:hasSwitchMatrix rdf:resource="#UNC/Infinera/DTN/LambdaSwitchingMatrix"/>
|
|
1613
|
+
<topology:hasSwitchMatrix rdf:resource="#UNC/Infinera/DTN/OCGSwitchingMatrix"/>
|
|
1614
|
+
<topology:hasSwitchMatrix rdf:resource="#UNC/Infinera/DTN/ODUSwitchingMatrix"/>
|
|
1615
|
+
<topology:hasInterface rdf:resource="#UNC/Infinera/DTN/fB/1/fiber"/>
|
|
1616
|
+
<topology:hasInterface rdf:resource="#UNC/Infinera/DTN/fB/2/fiber"/>
|
|
1617
|
+
<topology:hasInterface rdf:resource="#UNC/Infinera/DTN/t1B/1/fiber"/>
|
|
1618
|
+
<topology:hasInterface rdf:resource="#UNC/Infinera/DTN/t2B/1/fiber"/>
|
|
1619
|
+
<topology:locatedAt rdf:resource="&ben;UNC"/>
|
|
1620
|
+
</rdf:Description>
|
|
1621
|
+
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
<!-- http://geni-orca.renci.org/owl/ben.rdf#UNC/Polatis/f6-22 -->
|
|
1625
|
+
|
|
1626
|
+
<rdf:Description rdf:about="&ben;UNC/Polatis/f6-22"/>
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#LC-Connector -->
|
|
1631
|
+
|
|
1632
|
+
<rdf:Description rdf:about="&dtn;LC-Connector"/>
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#LambdaNetworkElement -->
|
|
1637
|
+
|
|
1638
|
+
<rdf:Description rdf:about="&dtn;LambdaNetworkElement"/>
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
|
|
1642
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OCG1 -->
|
|
1643
|
+
|
|
1644
|
+
<rdf:Description rdf:about="&dtn;OCG1"/>
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OCGNetworkElement -->
|
|
1649
|
+
|
|
1650
|
+
<rdf:Description rdf:about="&dtn;OCGNetworkElement"/>
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
|
|
1654
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#ODU1 -->
|
|
1655
|
+
|
|
1656
|
+
<rdf:Description rdf:about="&dtn;ODU1"/>
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
|
+
|
|
1660
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#ODUNetworkElement -->
|
|
1661
|
+
|
|
1662
|
+
<rdf:Description rdf:about="&dtn;ODUNetworkElement"/>
|
|
1663
|
+
|
|
1664
|
+
|
|
1665
|
+
|
|
1666
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OTU2 -->
|
|
1667
|
+
|
|
1668
|
+
<rdf:Description rdf:about="&dtn;OTU2"/>
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
|
|
1672
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#OTU4 -->
|
|
1673
|
+
|
|
1674
|
+
<rdf:Description rdf:about="&dtn;OTU4"/>
|
|
1675
|
+
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
<!-- http://geni-orca.renci.org/owl/dtn.owl#PC -->
|
|
1679
|
+
|
|
1680
|
+
<rdf:Description rdf:about="&dtn;PC"/>
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
|
|
1684
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#10G -->
|
|
1685
|
+
|
|
1686
|
+
<rdf:Description rdf:about="&layer;10G"/>
|
|
1687
|
+
|
|
1688
|
+
|
|
1689
|
+
|
|
1690
|
+
<!-- http://geni-orca.renci.org/owl/layer.owl#BIDirectional -->
|
|
1691
|
+
|
|
1692
|
+
<rdf:Description rdf:about="&layer;BIDirectional"/>
|
|
1693
|
+
</rdf:RDF>
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
|
|
1697
|
+
<!-- Generated by the OWL API (version 2.2.1.1101) http://owlapi.sourceforge.net -->
|
|
1698
|
+
|