omf_sfa 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. data/.gitignore +24 -0
  2. data/Gemfile +6 -0
  3. data/README.md +211 -0
  4. data/Rakefile +23 -0
  5. data/bin/parse_rspec.rb +167 -0
  6. data/etc/omf-sfa/omf-sfa-am.yaml +12 -0
  7. data/examples/exogeni5nodemanifest.rspec +105 -0
  8. data/examples/instageni5nodemanifest.rspec +150 -0
  9. data/lib/omf-sfa/am/am-rest/REST_API.md +301 -0
  10. data/lib/omf-sfa/am/am-rest/account_handler.rb +145 -0
  11. data/lib/omf-sfa/am/am-rest/am_rest_server.rb +255 -0
  12. data/lib/omf-sfa/am/am-rest/api_template.html +48 -0
  13. data/lib/omf-sfa/am/am-rest/config.ru +110 -0
  14. data/lib/omf-sfa/am/am-rest/resource_handler.rb +178 -0
  15. data/lib/omf-sfa/am/am-rest/rest_handler.rb +573 -0
  16. data/lib/omf-sfa/am/am-rest/session_authenticator.rb +130 -0
  17. data/lib/omf-sfa/am/am-rpc/abstract_rpc_service.rb +60 -0
  18. data/lib/omf-sfa/am/am-rpc/am_authorizer.rb +161 -0
  19. data/lib/omf-sfa/am/am-rpc/am_rpc_api.rb +450 -0
  20. data/lib/omf-sfa/am/am-rpc/am_rpc_service.rb +402 -0
  21. data/lib/omf-sfa/am/am_liaison.rb +93 -0
  22. data/lib/omf-sfa/am/am_manager.rb +859 -0
  23. data/lib/omf-sfa/am/am_runner.rb +108 -0
  24. data/lib/omf-sfa/am/am_scheduler.rb +146 -0
  25. data/lib/omf-sfa/am/am_server.rb +194 -0
  26. data/lib/omf-sfa/am/config.ru +122 -0
  27. data/lib/omf-sfa/am/credential.rb +145 -0
  28. data/lib/omf-sfa/am/default_authorizer.rb +44 -0
  29. data/lib/omf-sfa/am/privilege_credential.rb +76 -0
  30. data/lib/omf-sfa/am/signature.rb +37 -0
  31. data/lib/omf-sfa/am/user_credential.rb +56 -0
  32. data/lib/omf-sfa/am.rb +7 -0
  33. data/lib/omf-sfa/model/abstract_prop_description.rb +87 -0
  34. data/lib/omf-sfa/model/model_class_description.rb +145 -0
  35. data/lib/omf-sfa/model/model_data_prop_description.rb +28 -0
  36. data/lib/omf-sfa/model/model_obj_prop_description.rb +49 -0
  37. data/lib/omf-sfa/model/ontology.rb +169 -0
  38. data/lib/omf-sfa/resource/README.md +24 -0
  39. data/lib/omf-sfa/resource/channel.rb +49 -0
  40. data/lib/omf-sfa/resource/comp_group.rb +41 -0
  41. data/lib/omf-sfa/resource/component_lease.rb +10 -0
  42. data/lib/omf-sfa/resource/constants.rb +24 -0
  43. data/lib/omf-sfa/resource/group_component.rb +35 -0
  44. data/lib/omf-sfa/resource/group_membership.rb +17 -0
  45. data/lib/omf-sfa/resource/gurn.rb +187 -0
  46. data/lib/omf-sfa/resource/interface.rb +78 -0
  47. data/lib/omf-sfa/resource/ip.rb +48 -0
  48. data/lib/omf-sfa/resource/link.rb +29 -0
  49. data/lib/omf-sfa/resource/node.rb +75 -0
  50. data/lib/omf-sfa/resource/oaccount.rb +94 -0
  51. data/lib/omf-sfa/resource/ocomponent.rb +134 -0
  52. data/lib/omf-sfa/resource/ogroup.rb +106 -0
  53. data/lib/omf-sfa/resource/olease.rb +61 -0
  54. data/lib/omf-sfa/resource/oproperty.rb +178 -0
  55. data/lib/omf-sfa/resource/oreference.rb +15 -0
  56. data/lib/omf-sfa/resource/oresource.rb +491 -0
  57. data/lib/omf-sfa/resource/project.rb +28 -0
  58. data/lib/omf-sfa/resource/project_membership.rb +13 -0
  59. data/lib/omf-sfa/resource/sfa_base.rb +544 -0
  60. data/lib/omf-sfa/resource/user.rb +25 -0
  61. data/lib/omf-sfa/resource.rb +20 -0
  62. data/lib/omf-sfa/util/create_sample_testbed.rb +68 -0
  63. data/lib/omf-sfa/util/load_from_sfa_xml.rb +65 -0
  64. data/lib/omf-sfa/version.rb +4 -0
  65. data/lib/omf_sfa.rb +5 -0
  66. data/omf_sfa.gemspec +46 -0
  67. data/owl/README +3 -0
  68. data/owl/ben-6509.rdf +1377 -0
  69. data/owl/ben-dell.rdf +586 -0
  70. data/owl/ben-dtn.rdf +1698 -0
  71. data/owl/ben.rdf +1335 -0
  72. data/owl/collections.owl +309 -0
  73. data/owl/compute.owl +1486 -0
  74. data/owl/domain.owl +444 -0
  75. data/owl/dtn.owl +1165 -0
  76. data/owl/ec2.owl +385 -0
  77. data/owl/ethernet.owl +466 -0
  78. data/owl/eucalyptus.owl +431 -0
  79. data/owl/id-mp-Request1.rdf +247 -0
  80. data/owl/itu-grid.owl +147 -0
  81. data/owl/kansei.owl +511 -0
  82. data/owl/layer.owl +645 -0
  83. data/owl/location.owl +117 -0
  84. data/owl/mass.rdf +608 -0
  85. data/owl/nlr.rdf +901 -0
  86. data/owl/orca.owl +181 -0
  87. data/owl/planetlab.owl +124 -0
  88. data/owl/protogeni.owl +467 -0
  89. data/owl/request-6509-2.rdf +150 -0
  90. data/owl/request-6509-3.rdf +158 -0
  91. data/owl/request-6509.rdf +199 -0
  92. data/owl/request.owl +222 -0
  93. data/owl/storage.owl +511 -0
  94. data/owl/topology.owl +608 -0
  95. data/schema/rspec-v3/ad-common.xsd +269 -0
  96. data/schema/rspec-v3/ad-reservation.rnc +12 -0
  97. data/schema/rspec-v3/ad-reservation.rng +28 -0
  98. data/schema/rspec-v3/ad-reservation.xsd +13 -0
  99. data/schema/rspec-v3/ad.rnc +151 -0
  100. data/schema/rspec-v3/ad.xsd +77 -0
  101. data/schema/rspec-v3/any-extension-schema.xsd +38 -0
  102. data/schema/rspec-v3/any-extension.rnc +30 -0
  103. data/schema/rspec-v3/common.rnc +185 -0
  104. data/schema/rspec-v3/manifest-common.xsd +244 -0
  105. data/schema/rspec-v3/manifest-request.xsd +95 -0
  106. data/schema/rspec-v3/manifest.rnc +62 -0
  107. data/schema/rspec-v3/manifest.xsd +34 -0
  108. data/schema/rspec-v3/request-common.xsd +219 -0
  109. data/schema/rspec-v3/request-reservation.rnc +12 -0
  110. data/schema/rspec-v3/request-reservation.xsd +13 -0
  111. data/schema/rspec-v3/request.rnc +118 -0
  112. data/schema/rspec-v3/request.xsd +94 -0
  113. data/share/assets/css/default.css +147 -0
  114. data/share/assets/css/rest_api.css +0 -0
  115. data/share/assets/network.html +28 -0
  116. data/share/assets/network.js +82 -0
  117. data/spec/am/am-rest/common.rb +29 -0
  118. data/spec/am/am-rest/resource_group_handler_XspecX.rb +97 -0
  119. data/spec/am/am-rest/resource_handler_spec.rb +204 -0
  120. data/spec/am/am-rpc/sfa_methods_spec.rb +150 -0
  121. data/spec/am/am_manager_spec.rb +307 -0
  122. data/spec/am/am_scheduler_spec.rb +57 -0
  123. data/spec/am/common.rb +24 -0
  124. data/spec/resource/common.rb +31 -0
  125. data/spec/resource/node_spec.rb +171 -0
  126. data/spec/resource/oaccount_spec.rb +92 -0
  127. data/spec/resource/ocomponent_spec.rb +225 -0
  128. data/spec/resource/ogroup_spec.rb +93 -0
  129. data/spec/resource/oresource_spec.rb +208 -0
  130. data/spec/resource_and_leases_spec.rb +377 -0
  131. data/test/OLD_FILES/assertion1.xml +117 -0
  132. data/test/OLD_FILES/greeter_spec.rb +15 -0
  133. data/test/OLD_FILES/mongo_test.rb +45 -0
  134. data/test/OLD_FILES/req-sfa-2.xml +6 -0
  135. data/test/OLD_FILES/req-sfa-g.xml +8 -0
  136. data/test/OLD_FILES/req-sfa-g2.xml +10 -0
  137. data/test/OLD_FILES/req-sfa-g3.xml +14 -0
  138. data/test/OLD_FILES/req-sfa.xml +6 -0
  139. data/test/OLD_FILES/req1.xml +22 -0
  140. data/test/OLD_FILES/req1b.xml +15 -0
  141. data/test/OLD_FILES/rspec-test.xml +1867 -0
  142. data/test/OLD_FILES/test.rb +67 -0
  143. data/test/OLD_FILES/test2.rb +32 -0
  144. data/test/am/am_manager_rspec_tests.rb +378 -0
  145. data/test/am/am_manager_tests.rb +518 -0
  146. data/test/am/am_scheduler_tests.rb +173 -0
  147. data/test/resource/olease_test.rb +74 -0
  148. data/test/sfa_requests/request.xml +5 -0
  149. data/test/sfa_requests/request1.xml +5 -0
  150. data/test/sfa_requests/request2.xml +5 -0
  151. data/test/sfa_requests/request3.xml +5 -0
  152. metadata +601 -0
data/owl/ben-dell.rdf ADDED
@@ -0,0 +1,586 @@
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 layer "http://geni-orca.renci.org/owl/layer.owl#" >
10
+ <!ENTITY UNC2 "http://geni-orca.renci.org/owl/ben.rdf#UNC/" >
11
+ <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
12
+ <!ENTITY ethernet "http://geni-orca.renci.org/owl/ethernet.owl#" >
13
+ <!ENTITY ndl "http://geni-orca.renci.org/owl/topology.owl#" >
14
+ <!ENTITY Duke "http://geni-orca.renci.org/owl/ben.rdf#Duke/" >
15
+ <!ENTITY Renci2 "http://geni-orca.renci.org/owl/ben.rdf#Renci/" >
16
+ <!ENTITY UNC "http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/" >
17
+ <!ENTITY Dell "http://geni-orca.renci.org/owl/ben.rdf#UNC/Dell/" >
18
+ <!ENTITY Dell2 "http://geni-orca.renci.org/owl/ben.rdf#Duke/Dell/" >
19
+ <!ENTITY Dell3 "http://geni-orca.renci.org/owl/ben.rdf#NCSU/Dell/" >
20
+ <!ENTITY Dell4 "http://geni-orca.renci.org/owl/ben.rdf#Renci/Dell/" >
21
+ <!ENTITY Renci "http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/" >
22
+ <!ENTITY VMSite3 "http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/VMSite/" >
23
+ <!ENTITY VMSite5 "http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/VMSite/" >
24
+ <!ENTITY VMSite "http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/VMSite/1/" >
25
+ <!ENTITY go-23 "http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-2/" >
26
+ <!ENTITY go-13 "http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-1/" >
27
+ <!ENTITY VMSite4 "http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/VMSite/1/" >
28
+ <!ENTITY VMSite2 "http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/VMSite/1/" >
29
+ <!ENTITY go-12 "http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-1/" >
30
+ <!ENTITY Cisco "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/" >
31
+ <!ENTITY go-2 "http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-2/" >
32
+ <!ENTITY go-22 "http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-2/" >
33
+ <!ENTITY go-1 "http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-1/" >
34
+ <!ENTITY f14 "http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-1/f1/" >
35
+ <!ENTITY f16 "http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-2/f1/" >
36
+ <!ENTITY Cisco2 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/" >
37
+ <!ENTITY f15 "http://geni-orca.renci.org/owl/ben-dell.rdf#NCSU/Dell/go-2/f1/" >
38
+ <!ENTITY f17 "http://geni-orca.renci.org/owl/ben-dell.rdf#NCSU/Dell/go-1/f1/" >
39
+ <!ENTITY f12 "http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-1/f1/" >
40
+ <!ENTITY f1 "http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-2/f1/" >
41
+ <!ENTITY f13 "http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-2/f1/" >
42
+ <!ENTITY f18 "http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-1/f1/" >
43
+ <!ENTITY GigabitEthernet5 "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/GigabitEthernet/1/3/" >
44
+ <!ENTITY GigabitEthernet6 "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/GigabitEthernet/1/2/" >
45
+ <!ENTITY GigabitEthernet2 "http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/1/3/" >
46
+ <!ENTITY GigabitEthernet "http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/1/2/" >
47
+ <!ENTITY gB2 "http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/GigabitEthernet/gB/1/" >
48
+ <!ENTITY gB3 "http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/gB/1/" >
49
+ <!ENTITY GigabitEthernet4 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/GigabitEthernet/1/3/" >
50
+ <!ENTITY GigabitEthernet3 "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/GigabitEthernet/1/2/" >
51
+ <!ENTITY gB "http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/GigabitEthernet/gB/1/" >
52
+ ]>
53
+
54
+
55
+ <rdf:RDF xmlns="http://geni-orca.renci.org/owl/ben-dell.rdf#"
56
+ xml:base="http://geni-orca.renci.org/owl/ben-dell.rdf"
57
+ xmlns:UNC="http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/"
58
+ xmlns:f12="&go-12;f1/"
59
+ xmlns:VMSite="&UNC;VMSite/1/"
60
+ xmlns:Cisco="http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/"
61
+ xmlns:go-2="http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-2/"
62
+ xmlns:go-1="&Renci;Dell/go-1/"
63
+ xmlns:f16="&UNC;Dell/go-2/f1/"
64
+ xmlns:f15="http://geni-orca.renci.org/owl/ben-dell.rdf#NCSU/Dell/go-2/f1/"
65
+ xmlns:f14="&UNC;Dell/go-1/f1/"
66
+ xmlns:GigabitEthernet3="&Cisco2;GigabitEthernet/1/2/"
67
+ xmlns:f13="&Renci;Dell/go-2/f1/"
68
+ xmlns:GigabitEthernet2="http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/1/3/"
69
+ xmlns:GigabitEthernet5="&Cisco;GigabitEthernet/1/3/"
70
+ xmlns:GigabitEthernet4="&Cisco2;GigabitEthernet/1/3/"
71
+ xmlns:f18="&Renci;Dell/go-1/f1/"
72
+ xmlns:GigabitEthernet6="&Cisco;GigabitEthernet/1/2/"
73
+ xmlns:f17="http://geni-orca.renci.org/owl/ben-dell.rdf#NCSU/Dell/go-1/f1/"
74
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
75
+ xmlns:go-12="http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-1/"
76
+ xmlns:ethernet="http://geni-orca.renci.org/owl/ethernet.owl#"
77
+ xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
78
+ xmlns:go-13="&UNC;Dell/go-1/"
79
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
80
+ xmlns:Renci2="http://geni-orca.renci.org/owl/ben.rdf#Renci/"
81
+ xmlns:f1="&go-2;f1/"
82
+ xmlns:UNC2="http://geni-orca.renci.org/owl/ben.rdf#UNC/"
83
+ xmlns:Cisco2="http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/"
84
+ xmlns:Duke="http://geni-orca.renci.org/owl/ben.rdf#Duke/"
85
+ xmlns:layer="http://geni-orca.renci.org/owl/layer.owl#"
86
+ xmlns:ndl="http://geni-orca.renci.org/owl/topology.owl#"
87
+ xmlns:gB="&Cisco2;GigabitEthernet/gB/1/"
88
+ xmlns:Renci="http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/"
89
+ xmlns:Dell3="http://geni-orca.renci.org/owl/ben.rdf#NCSU/Dell/"
90
+ xmlns:Dell4="&Renci2;Dell/"
91
+ xmlns:Dell2="&Duke;Dell/"
92
+ xmlns:go-23="&UNC;Dell/go-2/"
93
+ xmlns:gB2="&Cisco;GigabitEthernet/gB/1/"
94
+ xmlns:go-22="&Renci;Dell/go-2/"
95
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
96
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
97
+ xmlns:GigabitEthernet="http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/1/2/"
98
+ xmlns:gB3="http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/gB/1/"
99
+ xmlns:VMSite3="&UNC;VMSite/"
100
+ xmlns:VMSite2="&Renci;VMSite/1/"
101
+ xmlns:Dell="&UNC2;Dell/"
102
+ xmlns:VMSite5="http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/VMSite/"
103
+ xmlns:VMSite4="&VMSite5;1/">
104
+ <owl:Ontology rdf:about="">
105
+ <owl:imports rdf:resource="http://geni-orca.renci.org/owl/ben-6509.rdf"/>
106
+ </owl:Ontology>
107
+
108
+
109
+
110
+ <!--
111
+ ///////////////////////////////////////////////////////////////////////////////////////
112
+ //
113
+ // Object Properties
114
+ //
115
+ ///////////////////////////////////////////////////////////////////////////////////////
116
+ -->
117
+
118
+
119
+
120
+
121
+ <!-- http://geni-orca.renci.org/owl/layer.owl#switchingCapability -->
122
+
123
+ <owl:ObjectProperty rdf:about="&layer;switchingCapability"/>
124
+
125
+
126
+
127
+ <!-- http://geni-orca.renci.org/owl/topology.owl#hasInterface -->
128
+
129
+ <owl:ObjectProperty rdf:about="&ndl;hasInterface"/>
130
+
131
+
132
+
133
+ <!-- http://geni-orca.renci.org/owl/topology.owl#hasSwitchMatrix -->
134
+
135
+ <owl:ObjectProperty rdf:about="&ndl;hasSwitchMatrix"/>
136
+
137
+
138
+
139
+ <!-- http://geni-orca.renci.org/owl/topology.owl#interfaceOf -->
140
+
141
+ <owl:ObjectProperty rdf:about="&ndl;interfaceOf"/>
142
+
143
+
144
+
145
+ <!-- http://geni-orca.renci.org/owl/topology.owl#linkTo -->
146
+
147
+ <owl:ObjectProperty rdf:about="&ndl;linkTo"/>
148
+
149
+
150
+
151
+ <!--
152
+ ///////////////////////////////////////////////////////////////////////////////////////
153
+ //
154
+ // Data properties
155
+ //
156
+ ///////////////////////////////////////////////////////////////////////////////////////
157
+ -->
158
+
159
+
160
+
161
+
162
+ <!-- http://geni-orca.renci.org/owl/layer.owl#bandwidth -->
163
+
164
+ <owl:DatatypeProperty rdf:about="&layer;bandwidth"/>
165
+
166
+
167
+
168
+ <!-- http://geni-orca.renci.org/owl/topology.owl#hostName -->
169
+
170
+ <owl:DatatypeProperty rdf:about="&ndl;hostName"/>
171
+
172
+
173
+
174
+ <!-- http://geni-orca.renci.org/owl/topology.owl#managementIP -->
175
+
176
+ <owl:DatatypeProperty rdf:about="&ndl;managementIP"/>
177
+
178
+
179
+
180
+ <!--
181
+ ///////////////////////////////////////////////////////////////////////////////////////
182
+ //
183
+ // Classes
184
+ //
185
+ ///////////////////////////////////////////////////////////////////////////////////////
186
+ -->
187
+
188
+
189
+
190
+
191
+ <!-- http://geni-orca.renci.org/owl/ethernet.owl#EthernetNetworkElement -->
192
+
193
+ <owl:Class rdf:about="&ethernet;EthernetNetworkElement"/>
194
+
195
+
196
+
197
+ <!-- http://geni-orca.renci.org/owl/ethernet.owl#EthernetSwitchingMatrix -->
198
+
199
+ <owl:Class rdf:about="&ethernet;EthernetSwitchingMatrix"/>
200
+
201
+
202
+
203
+ <!-- http://geni-orca.renci.org/owl/topology.owl#Interface -->
204
+
205
+ <owl:Class rdf:about="&ndl;Interface"/>
206
+
207
+
208
+
209
+ <!--
210
+ ///////////////////////////////////////////////////////////////////////////////////////
211
+ //
212
+ // Individuals
213
+ //
214
+ ///////////////////////////////////////////////////////////////////////////////////////
215
+ -->
216
+
217
+
218
+
219
+
220
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/1/2/ethernet -->
221
+
222
+ <rdf:Description rdf:about="&GigabitEthernet;ethernet"/>
223
+
224
+
225
+
226
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/1/3/ethernet -->
227
+
228
+ <rdf:Description rdf:about="&GigabitEthernet2;ethernet"/>
229
+
230
+
231
+
232
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Duke/Cisco/6509/GigabitEthernet/gB/1/ethernet -->
233
+
234
+ <rdf:Description rdf:about="&gB3;ethernet"/>
235
+
236
+
237
+
238
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/GigabitEthernet/1/2/ethernet -->
239
+
240
+ <rdf:Description rdf:about="&Cisco2;GigabitEthernet/1/2/ethernet"/>
241
+
242
+
243
+
244
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/GigabitEthernet/1/3/ethernet -->
245
+
246
+ <rdf:Description rdf:about="&Cisco2;GigabitEthernet/1/3/ethernet"/>
247
+
248
+
249
+
250
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#Renci/Cisco/6509/GigabitEthernet/gB/1/ethernet -->
251
+
252
+ <rdf:Description rdf:about="&Cisco2;GigabitEthernet/gB/1/ethernet"/>
253
+
254
+
255
+
256
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/GigabitEthernet/1/2/ethernet -->
257
+
258
+ <rdf:Description rdf:about="&Cisco;GigabitEthernet/1/2/ethernet"/>
259
+
260
+
261
+
262
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/GigabitEthernet/1/3/ethernet -->
263
+
264
+ <rdf:Description rdf:about="&Cisco;GigabitEthernet/1/3/ethernet"/>
265
+
266
+
267
+
268
+ <!-- http://geni-orca.renci.org/owl/ben-6509.rdf#UNC/Cisco/6509/GigabitEthernet/gB/1/ethernet -->
269
+
270
+ <rdf:Description rdf:about="&Cisco;GigabitEthernet/gB/1/ethernet"/>
271
+
272
+
273
+
274
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-1/EthernetSwitchingMatrix -->
275
+
276
+ <ethernet:EthernetSwitchingMatrix rdf:about="#Duke/Dell/go-1/EthernetSwitchingMatrix">
277
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
278
+ </ethernet:EthernetSwitchingMatrix>
279
+
280
+
281
+
282
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-1/f1/ethernet -->
283
+
284
+ <ndl:Interface rdf:about="#Duke/Dell/go-1/f1/ethernet">
285
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
286
+ <rdfs:label>eth1</rdfs:label>
287
+ <ndl:linkTo rdf:resource="&GigabitEthernet;ethernet"/>
288
+ <ndl:interfaceOf rdf:resource="&Duke;Dell/go-1"/>
289
+ </ndl:Interface>
290
+
291
+
292
+
293
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-2/EthernetSwitchingMatrix -->
294
+
295
+ <ethernet:EthernetSwitchingMatrix rdf:about="#Duke/Dell/go-2/EthernetSwitchingMatrix">
296
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
297
+ </ethernet:EthernetSwitchingMatrix>
298
+
299
+
300
+
301
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/Dell/go-2/f1/ethernet -->
302
+
303
+ <ndl:Interface rdf:about="#Duke/Dell/go-2/f1/ethernet">
304
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
305
+ <rdfs:label>eth1</rdfs:label>
306
+ <ndl:linkTo rdf:resource="&GigabitEthernet2;ethernet"/>
307
+ <ndl:interfaceOf rdf:resource="&Duke;Dell/go-2"/>
308
+ </ndl:Interface>
309
+
310
+
311
+
312
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/VMSite/1/Ethernet -->
313
+
314
+ <ndl:Interface rdf:about="#Duke/VMSite/1/Ethernet">
315
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
316
+ <layer:bandwidth rdf:datatype="&xsd;long">1000000000</layer:bandwidth>
317
+ <ndl:linkTo rdf:resource="&gB3;ethernet"/>
318
+ <ndl:interfaceOf rdf:resource="&Duke;VMSite"/>
319
+ </ndl:Interface>
320
+
321
+
322
+
323
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Duke/VMSite/EthernetSwitchingMatrix -->
324
+
325
+ <ethernet:EthernetSwitchingMatrix rdf:about="#Duke/VMSite/EthernetSwitchingMatrix">
326
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
327
+ </ethernet:EthernetSwitchingMatrix>
328
+
329
+
330
+
331
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#NCSU/Dell/go-1/f1/ethernet -->
332
+
333
+ <ndl:Interface rdf:about="#NCSU/Dell/go-1/f1/ethernet">
334
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
335
+ <ndl:interfaceOf rdf:resource="&Dell3;go-1"/>
336
+ </ndl:Interface>
337
+
338
+
339
+
340
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#NCSU/Dell/go-2/f1/ethernet -->
341
+
342
+ <ndl:Interface rdf:about="#NCSU/Dell/go-2/f1/ethernet">
343
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
344
+ <ndl:interfaceOf rdf:resource="&Dell3;go-2"/>
345
+ </ndl:Interface>
346
+
347
+
348
+
349
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-1/EthernetSwitchingMatrix -->
350
+
351
+ <ethernet:EthernetSwitchingMatrix rdf:about="#Renci/Dell/go-1/EthernetSwitchingMatrix">
352
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
353
+ </ethernet:EthernetSwitchingMatrix>
354
+
355
+
356
+
357
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-1/f1/ethernet -->
358
+
359
+ <ethernet:EthernetNetworkElement rdf:about="#Renci/Dell/go-1/f1/ethernet">
360
+ <rdf:type rdf:resource="&ndl;Interface"/>
361
+ <rdfs:label>eth1</rdfs:label>
362
+ <ndl:linkTo rdf:resource="&Cisco2;GigabitEthernet/1/2/ethernet"/>
363
+ <ndl:interfaceOf rdf:resource="&Renci2;Dell/go-1"/>
364
+ </ethernet:EthernetNetworkElement>
365
+
366
+
367
+
368
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-2/EthernetSwitchingMatrix -->
369
+
370
+ <ethernet:EthernetSwitchingMatrix rdf:about="#Renci/Dell/go-2/EthernetSwitchingMatrix">
371
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
372
+ </ethernet:EthernetSwitchingMatrix>
373
+
374
+
375
+
376
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/Dell/go-2/f1/ethernet -->
377
+
378
+ <ethernet:EthernetNetworkElement rdf:about="#Renci/Dell/go-2/f1/ethernet">
379
+ <rdf:type rdf:resource="&ndl;Interface"/>
380
+ <rdfs:label>eth1</rdfs:label>
381
+ <ndl:linkTo rdf:resource="&Cisco2;GigabitEthernet/1/3/ethernet"/>
382
+ <ndl:interfaceOf rdf:resource="&Renci2;Dell/go-2"/>
383
+ </ethernet:EthernetNetworkElement>
384
+
385
+
386
+
387
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/VMSite/1/EthernetSwitchingMatrix -->
388
+
389
+ <ethernet:EthernetSwitchingMatrix rdf:about="#Renci/VMSite/1/EthernetSwitchingMatrix">
390
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
391
+ </ethernet:EthernetSwitchingMatrix>
392
+
393
+
394
+
395
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#Renci/VMSite/1/ethernet -->
396
+
397
+ <ndl:Interface rdf:about="#Renci/VMSite/1/ethernet">
398
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
399
+ <layer:bandwidth rdf:datatype="&xsd;long">1000000000</layer:bandwidth>
400
+ <ndl:linkTo rdf:resource="&Cisco2;GigabitEthernet/gB/1/ethernet"/>
401
+ <ndl:interfaceOf rdf:resource="&Renci2;VMSite"/>
402
+ </ndl:Interface>
403
+
404
+
405
+
406
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-1/EthernetSwitchingMatrix -->
407
+
408
+ <ethernet:EthernetSwitchingMatrix rdf:about="#UNC/Dell/go-1/EthernetSwitchingMatrix">
409
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
410
+ </ethernet:EthernetSwitchingMatrix>
411
+
412
+
413
+
414
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-1/f1/ethernet -->
415
+
416
+ <ndl:Interface rdf:about="#UNC/Dell/go-1/f1/ethernet">
417
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
418
+ <ndl:linkTo rdf:resource="&Cisco;GigabitEthernet/1/2/ethernet"/>
419
+ <ndl:interfaceOf rdf:resource="&UNC2;Dell/go-1"/>
420
+ </ndl:Interface>
421
+
422
+
423
+
424
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-2/EthernetSwitchingMatrix -->
425
+
426
+ <ethernet:EthernetSwitchingMatrix rdf:about="#UNC/Dell/go-2/EthernetSwitchingMatrix">
427
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
428
+ </ethernet:EthernetSwitchingMatrix>
429
+
430
+
431
+
432
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/Dell/go-2/f1/ethernet -->
433
+
434
+ <ndl:Interface rdf:about="#UNC/Dell/go-2/f1/ethernet">
435
+ <rdf:type rdf:resource="&ethernet;EthernetNetworkElement"/>
436
+ <ndl:linkTo rdf:resource="&Cisco;GigabitEthernet/1/3/ethernet"/>
437
+ <ndl:interfaceOf rdf:resource="&UNC2;Dell/go-2"/>
438
+ </ndl:Interface>
439
+
440
+
441
+
442
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/VMSite/1/ethernet -->
443
+
444
+ <ethernet:EthernetNetworkElement rdf:about="#UNC/VMSite/1/ethernet">
445
+ <rdf:type rdf:resource="&ndl;Interface"/>
446
+ <layer:bandwidth rdf:datatype="&xsd;long">1000000000</layer:bandwidth>
447
+ <ndl:linkTo rdf:resource="&Cisco;GigabitEthernet/gB/1/ethernet"/>
448
+ <ndl:interfaceOf rdf:resource="&UNC2;VMSite"/>
449
+ </ethernet:EthernetNetworkElement>
450
+
451
+
452
+
453
+ <!-- http://geni-orca.renci.org/owl/ben-dell.rdf#UNC/VMSite/EthernetSwitchingMatrix -->
454
+
455
+ <ethernet:EthernetSwitchingMatrix rdf:about="#UNC/VMSite/EthernetSwitchingMatrix">
456
+ <layer:switchingCapability rdf:resource="&ethernet;EthernetNetworkElement"/>
457
+ </ethernet:EthernetSwitchingMatrix>
458
+
459
+
460
+
461
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#Duke/Dell/go-1 -->
462
+
463
+ <rdf:Description rdf:about="&Duke;Dell/go-1">
464
+ <rdfs:label>Server</rdfs:label>
465
+ <ndl:managementIP>192.168.202.11</ndl:managementIP>
466
+ <ndl:hostName>go-1.duke.ben</ndl:hostName>
467
+ <ndl:hasSwitchMatrix rdf:resource="#Duke/Dell/go-1/EthernetSwitchingMatrix"/>
468
+ <ndl:hasInterface rdf:resource="#Duke/Dell/go-1/f1/ethernet"/>
469
+ </rdf:Description>
470
+
471
+
472
+
473
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#Duke/Dell/go-2 -->
474
+
475
+ <rdf:Description rdf:about="&Duke;Dell/go-2">
476
+ <rdfs:label>Server</rdfs:label>
477
+ <ndl:managementIP>192.168.202.12</ndl:managementIP>
478
+ <ndl:hostName>go-2.duke.ben</ndl:hostName>
479
+ <ndl:hasSwitchMatrix rdf:resource="#Duke/Dell/go-2/EthernetSwitchingMatrix"/>
480
+ <ndl:hasInterface rdf:resource="#Duke/Dell/go-2/f1/ethernet"/>
481
+ </rdf:Description>
482
+
483
+
484
+
485
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#Duke/VMSite -->
486
+
487
+ <rdf:Description rdf:about="&Duke;VMSite">
488
+ <ndl:hasInterface rdf:resource="#Duke/VMSite/1/Ethernet"/>
489
+ <ndl:hasSwitchMatrix rdf:resource="#Duke/VMSite/EthernetSwitchingMatrix"/>
490
+ </rdf:Description>
491
+
492
+
493
+
494
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#NCSU/Dell/go-1 -->
495
+
496
+ <rdf:Description rdf:about="&Dell3;go-1">
497
+ <ndl:managementIP>192.168.204.11</ndl:managementIP>
498
+ <ndl:hostName>go-1.ncsu.ben</ndl:hostName>
499
+ <ndl:hasInterface rdf:resource="#NCSU/Dell/go-1/f1/ethernet"/>
500
+ </rdf:Description>
501
+
502
+
503
+
504
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#NCSU/Dell/go-2 -->
505
+
506
+ <rdf:Description rdf:about="&Dell3;go-2">
507
+ <ndl:managementIP>192.168.204.12</ndl:managementIP>
508
+ <ndl:hostName>go-2.ncsu.ben</ndl:hostName>
509
+ <ndl:hasInterface rdf:resource="#NCSU/Dell/go-2/f1/ethernet"/>
510
+ </rdf:Description>
511
+
512
+
513
+
514
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#Renci/Dell/go-1 -->
515
+
516
+ <rdf:Description rdf:about="&Renci2;Dell/go-1">
517
+ <rdfs:label>Server</rdfs:label>
518
+ <ndl:hostName>go-1.renci.ben</ndl:hostName>
519
+ <ndl:managementIP>192.168.201.11</ndl:managementIP>
520
+ <ndl:hasSwitchMatrix rdf:resource="#Renci/Dell/go-1/EthernetSwitchingMatrix"/>
521
+ <ndl:hasInterface rdf:resource="#Renci/Dell/go-1/f1/ethernet"/>
522
+ </rdf:Description>
523
+
524
+
525
+
526
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#Renci/Dell/go-2 -->
527
+
528
+ <rdf:Description rdf:about="&Renci2;Dell/go-2">
529
+ <rdfs:label>Server</rdfs:label>
530
+ <ndl:managementIP>192.168.201.12</ndl:managementIP>
531
+ <ndl:hostName>go-2.renci.ben</ndl:hostName>
532
+ <ndl:hasSwitchMatrix rdf:resource="#Renci/Dell/go-2/EthernetSwitchingMatrix"/>
533
+ <ndl:hasInterface rdf:resource="#Renci/Dell/go-2/f1/ethernet"/>
534
+ </rdf:Description>
535
+
536
+
537
+
538
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#Renci/VMSite -->
539
+
540
+ <rdf:Description rdf:about="&Renci2;VMSite">
541
+ <ndl:hasSwitchMatrix rdf:resource="#Renci/VMSite/1/EthernetSwitchingMatrix"/>
542
+ <ndl:hasInterface rdf:resource="#Renci/VMSite/1/ethernet"/>
543
+ </rdf:Description>
544
+
545
+
546
+
547
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#UNC/Dell/go-1 -->
548
+
549
+ <rdf:Description rdf:about="&UNC2;Dell/go-1">
550
+ <ndl:hostName>go-1.unc.ben</ndl:hostName>
551
+ <ndl:managementIP>192.168.203.11</ndl:managementIP>
552
+ <ndl:hasSwitchMatrix rdf:resource="#UNC/Dell/go-1/EthernetSwitchingMatrix"/>
553
+ <ndl:hasInterface rdf:resource="#UNC/Dell/go-1/f1/ethernet"/>
554
+ </rdf:Description>
555
+
556
+
557
+
558
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#UNC/Dell/go-2 -->
559
+
560
+ <rdf:Description rdf:about="&UNC2;Dell/go-2">
561
+ <ndl:managementIP>192.168.203.12</ndl:managementIP>
562
+ <ndl:hostName>go-2.unc.ben</ndl:hostName>
563
+ <ndl:hasSwitchMatrix rdf:resource="#UNC/Dell/go-2/EthernetSwitchingMatrix"/>
564
+ <ndl:hasInterface rdf:resource="#UNC/Dell/go-2/f1/ethernet"/>
565
+ </rdf:Description>
566
+
567
+
568
+
569
+ <!-- http://geni-orca.renci.org/owl/ben.rdf#UNC/VMSite -->
570
+
571
+ <rdf:Description rdf:about="&UNC2;VMSite">
572
+ <ndl:hasInterface rdf:resource="#UNC/VMSite/1/ethernet"/>
573
+ <ndl:hasSwitchMatrix rdf:resource="#UNC/VMSite/EthernetSwitchingMatrix"/>
574
+ </rdf:Description>
575
+
576
+
577
+
578
+ <!-- http://geni-orca.renci.org/owl/ethernet.owl#EthernetNetworkElement -->
579
+
580
+ <rdf:Description rdf:about="&ethernet;EthernetNetworkElement"/>
581
+ </rdf:RDF>
582
+
583
+
584
+
585
+ <!-- Generated by the OWL API (version 2.2.1.1101) http://owlapi.sourceforge.net -->
586
+