f5-icontrol 0.1.0

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.
Files changed (253) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.travis.yml +5 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +9 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +55 -0
  8. data/Rakefile +7 -0
  9. data/bin/f5 +6 -0
  10. data/f5-icontrol.gemspec +30 -0
  11. data/lib/f5/cli/application.rb +102 -0
  12. data/lib/f5/cli/config.rb +21 -0
  13. data/lib/f5/icontrol.rb +40 -0
  14. data/lib/f5/icontrol/local_lb/node_address_v2.rb +27 -0
  15. data/lib/f5/icontrol/local_lb/pool.rb +27 -0
  16. data/lib/f5/icontrol/system/system_info.rb +27 -0
  17. data/lib/f5/icontrol/version.rb +5 -0
  18. data/lib/wsdl/ASM.LoggingProfile.wsdl +1467 -0
  19. data/lib/wsdl/ASM.ObjectParams.wsdl +198 -0
  20. data/lib/wsdl/ASM.PSMProfile.wsdl +228 -0
  21. data/lib/wsdl/ASM.Policy.wsdl +3504 -0
  22. data/lib/wsdl/ASM.PolicyGroup.wsdl +389 -0
  23. data/lib/wsdl/ASM.SystemConfiguration.wsdl +730 -0
  24. data/lib/wsdl/ASM.WebApplication.wsdl +1138 -0
  25. data/lib/wsdl/ASM.WebApplicationGroup.wsdl +393 -0
  26. data/lib/wsdl/Classification.Application.wsdl +517 -0
  27. data/lib/wsdl/Classification.Category.wsdl +519 -0
  28. data/lib/wsdl/Classification.SignatureDefinition.wsdl +541 -0
  29. data/lib/wsdl/Classification.SignatureUpdateSchedule.wsdl +382 -0
  30. data/lib/wsdl/Classification.SignatureVersion.wsdl +233 -0
  31. data/lib/wsdl/GlobalLB.Application.wsdl +963 -0
  32. data/lib/wsdl/GlobalLB.DNSSECKey.wsdl +1642 -0
  33. data/lib/wsdl/GlobalLB.DNSSECZone.wsdl +825 -0
  34. data/lib/wsdl/GlobalLB.DataCenter.wsdl +7144 -0
  35. data/lib/wsdl/GlobalLB.Globals.wsdl +5513 -0
  36. data/lib/wsdl/GlobalLB.Link.wsdl +7654 -0
  37. data/lib/wsdl/GlobalLB.Monitor.wsdl +2228 -0
  38. data/lib/wsdl/GlobalLB.Pool.wsdl +9949 -0
  39. data/lib/wsdl/GlobalLB.PoolMember.wsdl +6939 -0
  40. data/lib/wsdl/GlobalLB.ProberPool.wsdl +7026 -0
  41. data/lib/wsdl/GlobalLB.Region.wsdl +560 -0
  42. data/lib/wsdl/GlobalLB.Rule.wsdl +6632 -0
  43. data/lib/wsdl/GlobalLB.Server.wsdl +8234 -0
  44. data/lib/wsdl/GlobalLB.Topology.wsdl +548 -0
  45. data/lib/wsdl/GlobalLB.VirtualServer.wsdl +6916 -0
  46. data/lib/wsdl/GlobalLB.VirtualServerV2.wsdl +7016 -0
  47. data/lib/wsdl/GlobalLB.WideIP.wsdl +8154 -0
  48. data/lib/wsdl/LTConfig.Class.wsdl +656 -0
  49. data/lib/wsdl/LTConfig.Field.wsdl +679 -0
  50. data/lib/wsdl/LocalLB.Class.wsdl +2153 -0
  51. data/lib/wsdl/LocalLB.DNSCache.wsdl +8380 -0
  52. data/lib/wsdl/LocalLB.DNSExpress.wsdl +6972 -0
  53. data/lib/wsdl/LocalLB.DNSGlobals.wsdl +457 -0
  54. data/lib/wsdl/LocalLB.DataGroupFile.wsdl +971 -0
  55. data/lib/wsdl/LocalLB.LSNPool.wsdl +7461 -0
  56. data/lib/wsdl/LocalLB.Monitor.wsdl +2214 -0
  57. data/lib/wsdl/LocalLB.NAT.wsdl +6413 -0
  58. data/lib/wsdl/LocalLB.NATV2.wsdl +6748 -0
  59. data/lib/wsdl/LocalLB.NodeAddress.wsdl +7143 -0
  60. data/lib/wsdl/LocalLB.NodeAddressV2.wsdl +7754 -0
  61. data/lib/wsdl/LocalLB.Pool.wsdl +11328 -0
  62. data/lib/wsdl/LocalLB.PoolMember.wsdl +7156 -0
  63. data/lib/wsdl/LocalLB.ProfileAnalytics.wsdl +5756 -0
  64. data/lib/wsdl/LocalLB.ProfileAuth.wsdl +6957 -0
  65. data/lib/wsdl/LocalLB.ProfileClassification.wsdl +370 -0
  66. data/lib/wsdl/LocalLB.ProfileClientSSL.wsdl +10232 -0
  67. data/lib/wsdl/LocalLB.ProfileDNS.wsdl +7723 -0
  68. data/lib/wsdl/LocalLB.ProfileDNSLogging.wsdl +852 -0
  69. data/lib/wsdl/LocalLB.ProfileDiameter.wsdl +8070 -0
  70. data/lib/wsdl/LocalLB.ProfileDiameterEndpoint.wsdl +7199 -0
  71. data/lib/wsdl/LocalLB.ProfileFTP.wsdl +6564 -0
  72. data/lib/wsdl/LocalLB.ProfileFastHttp.wsdl +7944 -0
  73. data/lib/wsdl/LocalLB.ProfileFastL4.wsdl +8235 -0
  74. data/lib/wsdl/LocalLB.ProfileHttp.wsdl +12256 -0
  75. data/lib/wsdl/LocalLB.ProfileHttpClass.wsdl +7414 -0
  76. data/lib/wsdl/LocalLB.ProfileHttpCompression.wsdl +8166 -0
  77. data/lib/wsdl/LocalLB.ProfileICAP.wsdl +6917 -0
  78. data/lib/wsdl/LocalLB.ProfileIIOP.wsdl +6726 -0
  79. data/lib/wsdl/LocalLB.ProfileOneConnect.wsdl +6784 -0
  80. data/lib/wsdl/LocalLB.ProfilePersistence.wsdl +2740 -0
  81. data/lib/wsdl/LocalLB.ProfileRADIUS.wsdl +6696 -0
  82. data/lib/wsdl/LocalLB.ProfileRTSP.wsdl +7424 -0
  83. data/lib/wsdl/LocalLB.ProfileRequestAdapt.wsdl +7041 -0
  84. data/lib/wsdl/LocalLB.ProfileRequestLogging.wsdl +2042 -0
  85. data/lib/wsdl/LocalLB.ProfileResponseAdapt.wsdl +7041 -0
  86. data/lib/wsdl/LocalLB.ProfileSCTP.wsdl +7887 -0
  87. data/lib/wsdl/LocalLB.ProfileSIP.wsdl +7866 -0
  88. data/lib/wsdl/LocalLB.ProfileSPDY.wsdl +7489 -0
  89. data/lib/wsdl/LocalLB.ProfileSPM.wsdl +953 -0
  90. data/lib/wsdl/LocalLB.ProfileServerSSL.wsdl +9566 -0
  91. data/lib/wsdl/LocalLB.ProfileStream.wsdl +6561 -0
  92. data/lib/wsdl/LocalLB.ProfileTCP.wsdl +9869 -0
  93. data/lib/wsdl/LocalLB.ProfileUDP.wsdl +6948 -0
  94. data/lib/wsdl/LocalLB.ProfileUserStatistic.wsdl +916 -0
  95. data/lib/wsdl/LocalLB.ProfileWebAcceleration.wsdl +8213 -0
  96. data/lib/wsdl/LocalLB.ProfileXML.wsdl +7022 -0
  97. data/lib/wsdl/LocalLB.RAMCacheInformation.wsdl +372 -0
  98. data/lib/wsdl/LocalLB.RateClass.wsdl +9480 -0
  99. data/lib/wsdl/LocalLB.Rule.wsdl +7033 -0
  100. data/lib/wsdl/LocalLB.SNAT.wsdl +7262 -0
  101. data/lib/wsdl/LocalLB.SNATPool.wsdl +6606 -0
  102. data/lib/wsdl/LocalLB.SNATPoolMember.wsdl +5960 -0
  103. data/lib/wsdl/LocalLB.SNATTranslationAddress.wsdl +6599 -0
  104. data/lib/wsdl/LocalLB.SNATTranslationAddressV2.wsdl +6760 -0
  105. data/lib/wsdl/LocalLB.VirtualAddress.wsdl +6676 -0
  106. data/lib/wsdl/LocalLB.VirtualAddressV2.wsdl +7539 -0
  107. data/lib/wsdl/LocalLB.VirtualServer.wsdl +14758 -0
  108. data/lib/wsdl/LocalLB.iFile.wsdl +302 -0
  109. data/lib/wsdl/LocalLB.iFileFile.wsdl +712 -0
  110. data/lib/wsdl/Log.DestinationArcSight.wsdl +377 -0
  111. data/lib/wsdl/Log.DestinationLocalSyslog.wsdl +469 -0
  112. data/lib/wsdl/Log.DestinationRemoteHighSpeedLog.wsdl +486 -0
  113. data/lib/wsdl/Log.DestinationRemoteSyslog.wsdl +751 -0
  114. data/lib/wsdl/Log.DestinationSplunk.wsdl +377 -0
  115. data/lib/wsdl/Log.Filter.wsdl +1175 -0
  116. data/lib/wsdl/Log.Publisher.wsdl +448 -0
  117. data/lib/wsdl/Management.ApplicationPresentationScript.wsdl +698 -0
  118. data/lib/wsdl/Management.ApplicationService.wsdl +1804 -0
  119. data/lib/wsdl/Management.ApplicationTemplate.wsdl +1323 -0
  120. data/lib/wsdl/Management.CCLDAPConfiguration.wsdl +1637 -0
  121. data/lib/wsdl/Management.CLIScript.wsdl +684 -0
  122. data/lib/wsdl/Management.CRLDPConfiguration.wsdl +763 -0
  123. data/lib/wsdl/Management.CRLDPServer.wsdl +626 -0
  124. data/lib/wsdl/Management.CertLDAPConfiguration.wsdl +2453 -0
  125. data/lib/wsdl/Management.ChangeControl.wsdl +735 -0
  126. data/lib/wsdl/Management.DBVariable.wsdl +352 -0
  127. data/lib/wsdl/Management.Device.wsdl +1697 -0
  128. data/lib/wsdl/Management.DeviceGroup.wsdl +1241 -0
  129. data/lib/wsdl/Management.EM.wsdl +456 -0
  130. data/lib/wsdl/Management.EventNotification.wsdl +1031 -0
  131. data/lib/wsdl/Management.EventSubscription.wsdl +1542 -0
  132. data/lib/wsdl/Management.FeatureModule.wsdl +424 -0
  133. data/lib/wsdl/Management.Folder.wsdl +635 -0
  134. data/lib/wsdl/Management.Globals.wsdl +166 -0
  135. data/lib/wsdl/Management.KeyCertificate.wsdl +2027 -0
  136. data/lib/wsdl/Management.LDAPConfiguration.wsdl +2645 -0
  137. data/lib/wsdl/Management.LicenseAdministration.wsdl +906 -0
  138. data/lib/wsdl/Management.Named.wsdl +740 -0
  139. data/lib/wsdl/Management.OCSPConfiguration.wsdl +447 -0
  140. data/lib/wsdl/Management.OCSPResponder.wsdl +2370 -0
  141. data/lib/wsdl/Management.Partition.wsdl +545 -0
  142. data/lib/wsdl/Management.Provision.wsdl +743 -0
  143. data/lib/wsdl/Management.RADIUSConfiguration.wsdl +951 -0
  144. data/lib/wsdl/Management.RADIUSServer.wsdl +602 -0
  145. data/lib/wsdl/Management.ResourceRecord.wsdl +2168 -0
  146. data/lib/wsdl/Management.SFlowDataSource.wsdl +776 -0
  147. data/lib/wsdl/Management.SFlowGlobals.wsdl +826 -0
  148. data/lib/wsdl/Management.SFlowReceiver.wsdl +694 -0
  149. data/lib/wsdl/Management.SMTPConfiguration.wsdl +854 -0
  150. data/lib/wsdl/Management.SNMPConfiguration.wsdl +4672 -0
  151. data/lib/wsdl/Management.TACACSConfiguration.wsdl +943 -0
  152. data/lib/wsdl/Management.TMOSModule.wsdl +309 -0
  153. data/lib/wsdl/Management.TrafficGroup.wsdl +953 -0
  154. data/lib/wsdl/Management.Trust.wsdl +703 -0
  155. data/lib/wsdl/Management.UserManagement.wsdl +1693 -0
  156. data/lib/wsdl/Management.View.wsdl +381 -0
  157. data/lib/wsdl/Management.Zone.wsdl +528 -0
  158. data/lib/wsdl/Management.ZoneRunner.wsdl +206 -0
  159. data/lib/wsdl/Networking.ARP.wsdl +776 -0
  160. data/lib/wsdl/Networking.AdminIP.wsdl +864 -0
  161. data/lib/wsdl/Networking.BWControllerPolicy.wsdl +1107 -0
  162. data/lib/wsdl/Networking.IPsecIkeDaemon.wsdl +368 -0
  163. data/lib/wsdl/Networking.IPsecIkePeer.wsdl +2701 -0
  164. data/lib/wsdl/Networking.IPsecManualSecurityAssociation.wsdl +1146 -0
  165. data/lib/wsdl/Networking.IPsecPolicy.wsdl +1380 -0
  166. data/lib/wsdl/Networking.IPsecTrafficSelector.wsdl +1104 -0
  167. data/lib/wsdl/Networking.Interfaces.wsdl +8359 -0
  168. data/lib/wsdl/Networking.LLDPGlobals.wsdl +590 -0
  169. data/lib/wsdl/Networking.PacketFilter.wsdl +6728 -0
  170. data/lib/wsdl/Networking.PacketFilterGlobals.wsdl +926 -0
  171. data/lib/wsdl/Networking.PortMirror.wsdl +373 -0
  172. data/lib/wsdl/Networking.ProfileFEC.wsdl +1350 -0
  173. data/lib/wsdl/Networking.ProfileGRE.wsdl +645 -0
  174. data/lib/wsdl/Networking.ProfileIPIP.wsdl +695 -0
  175. data/lib/wsdl/Networking.ProfileVXLAN.wsdl +563 -0
  176. data/lib/wsdl/Networking.ProfileWCCPGRE.wsdl +841 -0
  177. data/lib/wsdl/Networking.RouteDomain.wsdl +646 -0
  178. data/lib/wsdl/Networking.RouteDomainV2.wsdl +10056 -0
  179. data/lib/wsdl/Networking.RouteTable.wsdl +1209 -0
  180. data/lib/wsdl/Networking.RouteTableV2.wsdl +1531 -0
  181. data/lib/wsdl/Networking.RouterAdvertisement.wsdl +1067 -0
  182. data/lib/wsdl/Networking.STPGlobals.wsdl +796 -0
  183. data/lib/wsdl/Networking.STPInstance.wsdl +1147 -0
  184. data/lib/wsdl/Networking.STPInstanceV2.wsdl +1232 -0
  185. data/lib/wsdl/Networking.SelfIP.wsdl +557 -0
  186. data/lib/wsdl/Networking.SelfIPPortLockdown.wsdl +421 -0
  187. data/lib/wsdl/Networking.SelfIPV2.wsdl +10077 -0
  188. data/lib/wsdl/Networking.Trunk.wsdl +7133 -0
  189. data/lib/wsdl/Networking.Tunnel.wsdl +1354 -0
  190. data/lib/wsdl/Networking.VLAN.wsdl +2215 -0
  191. data/lib/wsdl/Networking.VLANGroup.wsdl +1441 -0
  192. data/lib/wsdl/Networking.iSessionAdvertisedRoute.wsdl +491 -0
  193. data/lib/wsdl/Networking.iSessionAdvertisedRouteV2.wsdl +619 -0
  194. data/lib/wsdl/Networking.iSessionDatastor.wsdl +459 -0
  195. data/lib/wsdl/Networking.iSessionDeduplication.wsdl +401 -0
  196. data/lib/wsdl/Networking.iSessionLocalInterface.wsdl +922 -0
  197. data/lib/wsdl/Networking.iSessionPeerDiscovery.wsdl +818 -0
  198. data/lib/wsdl/Networking.iSessionRemoteInterface.wsdl +1100 -0
  199. data/lib/wsdl/Networking.iSessionRemoteInterfaceV2.wsdl +1307 -0
  200. data/lib/wsdl/PEM.FormatScript.wsdl +542 -0
  201. data/lib/wsdl/PEM.ForwardingEndpoint.wsdl +849 -0
  202. data/lib/wsdl/PEM.InterceptionEndpoint.wsdl +414 -0
  203. data/lib/wsdl/PEM.Listener.wsdl +495 -0
  204. data/lib/wsdl/PEM.Policy.wsdl +4097 -0
  205. data/lib/wsdl/PEM.ServiceChainEndpoint.wsdl +762 -0
  206. data/lib/wsdl/PEM.Subscriber.wsdl +6527 -0
  207. data/lib/wsdl/Security.DoSDevice.wsdl +6670 -0
  208. data/lib/wsdl/Security.FirewallAddressList.wsdl +542 -0
  209. data/lib/wsdl/Security.FirewallGlobalAdminIPRuleList.wsdl +8891 -0
  210. data/lib/wsdl/Security.FirewallGlobalRuleList.wsdl +9171 -0
  211. data/lib/wsdl/Security.FirewallPolicy.wsdl +9355 -0
  212. data/lib/wsdl/Security.FirewallPortList.wsdl +544 -0
  213. data/lib/wsdl/Security.FirewallRuleList.wsdl +3360 -0
  214. data/lib/wsdl/Security.FirewallWeeklySchedule.wsdl +825 -0
  215. data/lib/wsdl/Security.LogProfile.wsdl +6927 -0
  216. data/lib/wsdl/Security.ProfileDNSSecurity.wsdl +6881 -0
  217. data/lib/wsdl/Security.ProfileDoS.wsdl +10389 -0
  218. data/lib/wsdl/Security.ProfileIPIntelligence.wsdl +7154 -0
  219. data/lib/wsdl/System.CertificateRevocationListFile.wsdl +840 -0
  220. data/lib/wsdl/System.Cluster.wsdl +956 -0
  221. data/lib/wsdl/System.ConfigSync.wsdl +1289 -0
  222. data/lib/wsdl/System.Connections.wsdl +497 -0
  223. data/lib/wsdl/System.Disk.wsdl +1442 -0
  224. data/lib/wsdl/System.ExternalMonitorFile.wsdl +834 -0
  225. data/lib/wsdl/System.Failover.wsdl +539 -0
  226. data/lib/wsdl/System.GeoIP.wsdl +181 -0
  227. data/lib/wsdl/System.HAGroup.wsdl +1983 -0
  228. data/lib/wsdl/System.HAStatus.wsdl +695 -0
  229. data/lib/wsdl/System.Inet.wsdl +438 -0
  230. data/lib/wsdl/System.Internal.wsdl +279 -0
  231. data/lib/wsdl/System.PerformanceSFlow.wsdl +722 -0
  232. data/lib/wsdl/System.Services.wsdl +1054 -0
  233. data/lib/wsdl/System.Session.wsdl +1023 -0
  234. data/lib/wsdl/System.SoftwareManagement.wsdl +1073 -0
  235. data/lib/wsdl/System.Statistics.wsdl +9469 -0
  236. data/lib/wsdl/System.SystemInfo.wsdl +7493 -0
  237. data/lib/wsdl/System.VCMP.wsdl +7766 -0
  238. data/lib/wsdl/WebAccelerator.Applications.wsdl +7765 -0
  239. data/lib/wsdl/WebAccelerator.Policies.wsdl +570 -0
  240. data/lib/wsdl/WebAccelerator.ProxyMessage.wsdl +157 -0
  241. data/lib/wsdl/iCall.PeriodicHandler.wsdl +751 -0
  242. data/lib/wsdl/iCall.PerpetualHandler.wsdl +1081 -0
  243. data/lib/wsdl/iCall.Script.wsdl +372 -0
  244. data/lib/wsdl/iCall.TriggeredHandler.wsdl +1071 -0
  245. data/metadata +323 -0
  246. data/spec/cassettes/F5_Icontrol_LocalLB_Pool/creates_a_pool.yml +49 -0
  247. data/spec/cassettes/F5_Icontrol_System_SystemInfo/retrieves_something_with_a_complex_return_type_and_input.yml +49 -0
  248. data/spec/cassettes/F5_Icontrol_System_SystemInfo/retrieves_the_uptime.yml +96 -0
  249. data/spec/cassettes/F5_Icontrol_System_SystemInfo/retrieves_the_version.yml +99 -0
  250. data/spec/models/local_lb/pool_spec.rb +26 -0
  251. data/spec/models/system/system_info_spec.rb +31 -0
  252. data/spec/spec_helper.rb +13 -0
  253. metadata +415 -0
@@ -0,0 +1,368 @@
1
+ <?xml version="1.0" ?>
2
+ <!--
3
+ Copyright (c) 1996-2013, F5 Networks, Inc., Seattle, Washington. All rights reserved.
4
+
5
+ F5, F5 Networks, the F5 logo, BIG-IP, 3-DNS, iControl, GLOBAL-SITE, SEE-IT, EDGE-FX, FireGuard, Internet Control Architecture, IP Application Switch, iRules, PACKET VELOCITY, SYN Check, CONTROL YOUR WORLD, OneConnect, ZoneRunner, uRoam, FirePass, and TrafficShield are registered trademarks or trademarks of F5 Networks, Inc., in the U.S. and certain other countries.
6
+
7
+ All other trademarks mentioned in this document are the property of their respective owners. F5 Networks' trademarks may not be used in connection with any product or service except as permitted in writing by F5.
8
+
9
+ -->
10
+ <definitions name="Networking.IPsecIkeDaemon"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:simpleType name="Common.PortNumber">
25
+ <xsd:restriction base="xsd:long"/>
26
+ </xsd:simpleType>
27
+ <xsd:simpleType name="Common.ULong">
28
+ <xsd:restriction base="xsd:long"/>
29
+ </xsd:simpleType>
30
+ </xsd:schema>
31
+ </types>
32
+
33
+ <!-- message -->
34
+
35
+ <message name="Networking.IPsecIkeDaemon.set_descriptionRequest">
36
+ <part name="description" type="xsd:string"/>
37
+ </message>
38
+ <message name="Networking.IPsecIkeDaemon.set_descriptionResponse">
39
+ </message>
40
+
41
+ <message name="Networking.IPsecIkeDaemon.get_descriptionRequest">
42
+ </message>
43
+ <message name="Networking.IPsecIkeDaemon.get_descriptionResponse">
44
+ <part name="return" type="xsd:string"/>
45
+ </message>
46
+
47
+ <message name="Networking.IPsecIkeDaemon.set_natt_keep_aliveRequest">
48
+ <part name="value" type="xsd:long"/>
49
+ </message>
50
+ <message name="Networking.IPsecIkeDaemon.set_natt_keep_aliveResponse">
51
+ </message>
52
+
53
+ <message name="Networking.IPsecIkeDaemon.get_natt_keep_aliveRequest">
54
+ </message>
55
+ <message name="Networking.IPsecIkeDaemon.get_natt_keep_aliveResponse">
56
+ <part name="return" type="xsd:long"/>
57
+ </message>
58
+
59
+ <message name="Networking.IPsecIkeDaemon.set_iskamp_portRequest">
60
+ <part name="value" type="xsd:long"/>
61
+ </message>
62
+ <message name="Networking.IPsecIkeDaemon.set_iskamp_portResponse">
63
+ </message>
64
+
65
+ <message name="Networking.IPsecIkeDaemon.get_iskamp_portRequest">
66
+ </message>
67
+ <message name="Networking.IPsecIkeDaemon.get_iskamp_portResponse">
68
+ <part name="return" type="xsd:long"/>
69
+ </message>
70
+
71
+ <message name="Networking.IPsecIkeDaemon.set_iskamp_natt_portRequest">
72
+ <part name="value" type="xsd:long"/>
73
+ </message>
74
+ <message name="Networking.IPsecIkeDaemon.set_iskamp_natt_portResponse">
75
+ </message>
76
+
77
+ <message name="Networking.IPsecIkeDaemon.get_iskamp_natt_portRequest">
78
+ </message>
79
+ <message name="Networking.IPsecIkeDaemon.get_iskamp_natt_portResponse">
80
+ <part name="return" type="xsd:long"/>
81
+ </message>
82
+
83
+ <message name="Networking.IPsecIkeDaemon.get_versionRequest">
84
+ </message>
85
+ <message name="Networking.IPsecIkeDaemon.get_versionResponse">
86
+ <part name="return" type="xsd:string"/>
87
+ </message>
88
+
89
+ <!-- portType -->
90
+
91
+ <portType name="Networking.IPsecIkeDaemonPortType">
92
+ <operation name="set_description">
93
+ <documentation>
94
+ Sets description of the singleton IKE daemon.
95
+
96
+ </documentation>
97
+ <input message="tns:Networking.IPsecIkeDaemon.set_descriptionRequest"/>
98
+ <output message="tns:Networking.IPsecIkeDaemon.set_descriptionResponse"/>
99
+ </operation>
100
+ <operation name="get_description">
101
+ <documentation>
102
+ Gets the description of the singleton IKE daemon.
103
+
104
+ </documentation>
105
+ <input message="tns:Networking.IPsecIkeDaemon.get_descriptionRequest"/>
106
+ <output message="tns:Networking.IPsecIkeDaemon.get_descriptionResponse"/>
107
+ </operation>
108
+ <operation name="set_natt_keep_alive">
109
+ <documentation>
110
+ Sets an interval between sending NAT-Traversal keep-alive packets.
111
+
112
+ </documentation>
113
+ <input message="tns:Networking.IPsecIkeDaemon.set_natt_keep_aliveRequest"/>
114
+ <output message="tns:Networking.IPsecIkeDaemon.set_natt_keep_aliveResponse"/>
115
+ </operation>
116
+ <operation name="get_natt_keep_alive">
117
+ <documentation>
118
+ Gets the interval between sending NAT-Traversal keep-alive packets.
119
+
120
+ </documentation>
121
+ <input message="tns:Networking.IPsecIkeDaemon.get_natt_keep_aliveRequest"/>
122
+ <output message="tns:Networking.IPsecIkeDaemon.get_natt_keep_aliveResponse"/>
123
+ </operation>
124
+ <operation name="set_iskamp_port">
125
+ <documentation>
126
+ Sets the port for the IKE daemon to accept ISAKMP messages.
127
+
128
+ </documentation>
129
+ <input message="tns:Networking.IPsecIkeDaemon.set_iskamp_portRequest"/>
130
+ <output message="tns:Networking.IPsecIkeDaemon.set_iskamp_portResponse"/>
131
+ </operation>
132
+ <operation name="get_iskamp_port">
133
+ <documentation>
134
+ Gets the port for the IKE daemon to accept ISAKMP messages.
135
+
136
+ </documentation>
137
+ <input message="tns:Networking.IPsecIkeDaemon.get_iskamp_portRequest"/>
138
+ <output message="tns:Networking.IPsecIkeDaemon.get_iskamp_portResponse"/>
139
+ </operation>
140
+ <operation name="set_iskamp_natt_port">
141
+ <documentation>
142
+ Sets the port for the IKE daemon to accept ISAKMP
143
+ messages when NAT-Traversal is detected.
144
+
145
+ </documentation>
146
+ <input message="tns:Networking.IPsecIkeDaemon.set_iskamp_natt_portRequest"/>
147
+ <output message="tns:Networking.IPsecIkeDaemon.set_iskamp_natt_portResponse"/>
148
+ </operation>
149
+ <operation name="get_iskamp_natt_port">
150
+ <documentation>
151
+ Gets the port for the IKE daemon to accept ISAKMP messages
152
+ when NAT-Traversal is detected.
153
+
154
+ </documentation>
155
+ <input message="tns:Networking.IPsecIkeDaemon.get_iskamp_natt_portRequest"/>
156
+ <output message="tns:Networking.IPsecIkeDaemon.get_iskamp_natt_portResponse"/>
157
+ </operation>
158
+ <operation name="get_version">
159
+ <documentation>
160
+ Gets the version information for this interface.
161
+
162
+ </documentation>
163
+ <input message="tns:Networking.IPsecIkeDaemon.get_versionRequest"/>
164
+ <output message="tns:Networking.IPsecIkeDaemon.get_versionResponse"/>
165
+ </operation>
166
+ </portType>
167
+
168
+ <!-- binding -->
169
+
170
+ <binding name="Networking.IPsecIkeDaemonBinding" type="tns:Networking.IPsecIkeDaemonPortType">
171
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
172
+ <operation name="set_description">
173
+ <documentation>
174
+ Sets description of the singleton IKE daemon.
175
+
176
+ </documentation>
177
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
178
+ <input>
179
+ <soap:body
180
+ use="encoded"
181
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
182
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
183
+ </input>
184
+ <output>
185
+ <soap:body
186
+ use="encoded"
187
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
188
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
189
+ </output>
190
+ </operation>
191
+
192
+ <operation name="get_description">
193
+ <documentation>
194
+ Gets the description of the singleton IKE daemon.
195
+
196
+ </documentation>
197
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
198
+ <input>
199
+ <soap:body
200
+ use="encoded"
201
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
202
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
203
+ </input>
204
+ <output>
205
+ <soap:body
206
+ use="encoded"
207
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
208
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
209
+ </output>
210
+ </operation>
211
+
212
+ <operation name="set_natt_keep_alive">
213
+ <documentation>
214
+ Sets an interval between sending NAT-Traversal keep-alive packets.
215
+
216
+ </documentation>
217
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
218
+ <input>
219
+ <soap:body
220
+ use="encoded"
221
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
222
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
223
+ </input>
224
+ <output>
225
+ <soap:body
226
+ use="encoded"
227
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
228
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
229
+ </output>
230
+ </operation>
231
+
232
+ <operation name="get_natt_keep_alive">
233
+ <documentation>
234
+ Gets the interval between sending NAT-Traversal keep-alive packets.
235
+
236
+ </documentation>
237
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
238
+ <input>
239
+ <soap:body
240
+ use="encoded"
241
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
242
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
243
+ </input>
244
+ <output>
245
+ <soap:body
246
+ use="encoded"
247
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
248
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
249
+ </output>
250
+ </operation>
251
+
252
+ <operation name="set_iskamp_port">
253
+ <documentation>
254
+ Sets the port for the IKE daemon to accept ISAKMP messages.
255
+
256
+ </documentation>
257
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
258
+ <input>
259
+ <soap:body
260
+ use="encoded"
261
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
262
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
263
+ </input>
264
+ <output>
265
+ <soap:body
266
+ use="encoded"
267
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
268
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
269
+ </output>
270
+ </operation>
271
+
272
+ <operation name="get_iskamp_port">
273
+ <documentation>
274
+ Gets the port for the IKE daemon to accept ISAKMP messages.
275
+
276
+ </documentation>
277
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
278
+ <input>
279
+ <soap:body
280
+ use="encoded"
281
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
282
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
283
+ </input>
284
+ <output>
285
+ <soap:body
286
+ use="encoded"
287
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
288
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
289
+ </output>
290
+ </operation>
291
+
292
+ <operation name="set_iskamp_natt_port">
293
+ <documentation>
294
+ Sets the port for the IKE daemon to accept ISAKMP
295
+ messages when NAT-Traversal is detected.
296
+
297
+ </documentation>
298
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
299
+ <input>
300
+ <soap:body
301
+ use="encoded"
302
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
303
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
304
+ </input>
305
+ <output>
306
+ <soap:body
307
+ use="encoded"
308
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
309
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
310
+ </output>
311
+ </operation>
312
+
313
+ <operation name="get_iskamp_natt_port">
314
+ <documentation>
315
+ Gets the port for the IKE daemon to accept ISAKMP messages
316
+ when NAT-Traversal is detected.
317
+
318
+ </documentation>
319
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
320
+ <input>
321
+ <soap:body
322
+ use="encoded"
323
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
324
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
325
+ </input>
326
+ <output>
327
+ <soap:body
328
+ use="encoded"
329
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
330
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
331
+ </output>
332
+ </operation>
333
+
334
+ <operation name="get_version">
335
+ <documentation>
336
+ Gets the version information for this interface.
337
+
338
+ </documentation>
339
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkeDaemon"/>
340
+ <input>
341
+ <soap:body
342
+ use="encoded"
343
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
344
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
345
+ </input>
346
+ <output>
347
+ <soap:body
348
+ use="encoded"
349
+ namespace="urn:iControl:Networking/IPsecIkeDaemon"
350
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
351
+ </output>
352
+ </operation>
353
+ </binding>
354
+
355
+ <!-- service -->
356
+
357
+ <service name="Networking.IPsecIkeDaemon">
358
+ <documentation>
359
+ This interface configures the IPsec Protocol suite for securing
360
+ Internet Protocol (IP) communications by authenticating and
361
+ encrypting each IP packet of a communication session.
362
+
363
+ </documentation>
364
+ <port name="Networking.IPsecIkeDaemonPort" binding="tns:Networking.IPsecIkeDaemonBinding">
365
+ <soap:address location="https://url_to_service"/>
366
+ </port>
367
+ </service>
368
+ </definitions>
@@ -0,0 +1,2701 @@
1
+ <?xml version="1.0" ?>
2
+ <!--
3
+ Copyright (c) 1996-2013, F5 Networks, Inc., Seattle, Washington. All rights reserved.
4
+
5
+ F5, F5 Networks, the F5 logo, BIG-IP, 3-DNS, iControl, GLOBAL-SITE, SEE-IT, EDGE-FX, FireGuard, Internet Control Architecture, IP Application Switch, iRules, PACKET VELOCITY, SYN Check, CONTROL YOUR WORLD, OneConnect, ZoneRunner, uRoam, FirePass, and TrafficShield are registered trademarks or trademarks of F5 Networks, Inc., in the U.S. and certain other countries.
6
+
7
+ All other trademarks mentioned in this document are the property of their respective owners. F5 Networks' trademarks may not be used in connection with any product or service except as permitted in writing by F5.
8
+
9
+ -->
10
+ <definitions name="Networking.IPsecIkePeer"
11
+ targetNamespace="urn:iControl"
12
+ xmlns:tns="urn:iControl"
13
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
14
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
15
+ xmlns="http://schemas.xmlsoap.org/wsdl/">
16
+
17
+ <!-- types -->
18
+
19
+ <types>
20
+ <xsd:schema targetNamespace='urn:iControl'
21
+ xmlns='http://www.w3.org/2001/XMLSchema'
22
+ xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
23
+ xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'>
24
+ <xsd:simpleType name="Networking.IPsecIkePeerGeneratePolicy">
25
+ <xsd:restriction base="xsd:string">
26
+ <xsd:enumeration value="IPSEC_IKE_PEER_GENERATE_POLICY_UNKNOWN">
27
+ <xsd:annotation>
28
+ <xsd:documentation>IPSEC_IKE_PEER_GENERATE_POLICY_UNKNOWN</xsd:documentation>
29
+ </xsd:annotation>
30
+ </xsd:enumeration>
31
+ <xsd:enumeration value="IPSEC_IKE_PEER_GENERATE_POLICY_OFF">
32
+ <xsd:annotation>
33
+ <xsd:documentation>IPSEC_IKE_PEER_GENERATE_POLICY_OFF</xsd:documentation>
34
+ </xsd:annotation>
35
+ </xsd:enumeration>
36
+ <xsd:enumeration value="IPSEC_IKE_PEER_GENERATE_POLICY_ON">
37
+ <xsd:annotation>
38
+ <xsd:documentation>IPSEC_IKE_PEER_GENERATE_POLICY_ON</xsd:documentation>
39
+ </xsd:annotation>
40
+ </xsd:enumeration>
41
+ <xsd:enumeration value="IPSEC_IKE_PEER_GENERATE_POLICY_UNIQUE">
42
+ <xsd:annotation>
43
+ <xsd:documentation>IPSEC_IKE_PEER_GENERATE_POLICY_UNIQUE</xsd:documentation>
44
+ </xsd:annotation>
45
+ </xsd:enumeration>
46
+ </xsd:restriction>
47
+ </xsd:simpleType>
48
+ <xsd:complexType name="Networking.IPsecIkeHashAlgorithmSequence">
49
+ <xsd:complexContent>
50
+ <xsd:restriction base='SOAP-ENC:Array'>
51
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecIkeHashAlgorithm[]'/>
52
+ </xsd:restriction>
53
+ </xsd:complexContent>
54
+ </xsd:complexType>
55
+ <xsd:simpleType name="Networking.IPsecIkePeerNatTraversal">
56
+ <xsd:restriction base="xsd:string">
57
+ <xsd:enumeration value="IPSEC_IKE_PEER_NAT_TRAVERSAL_UNKNOWN">
58
+ <xsd:annotation>
59
+ <xsd:documentation>IPSEC_IKE_PEER_NAT_TRAVERSAL_UNKNOWN</xsd:documentation>
60
+ </xsd:annotation>
61
+ </xsd:enumeration>
62
+ <xsd:enumeration value="IPSEC_IKE_PEER_NAT_TRAVERSAL_OFF">
63
+ <xsd:annotation>
64
+ <xsd:documentation>IPSEC_IKE_PEER_NAT_TRAVERSAL_OFF</xsd:documentation>
65
+ </xsd:annotation>
66
+ </xsd:enumeration>
67
+ <xsd:enumeration value="IPSEC_IKE_PEER_NAT_TRAVERSAL_ON">
68
+ <xsd:annotation>
69
+ <xsd:documentation>IPSEC_IKE_PEER_NAT_TRAVERSAL_ON</xsd:documentation>
70
+ </xsd:annotation>
71
+ </xsd:enumeration>
72
+ <xsd:enumeration value="IPSEC_IKE_PEER_NAT_TRAVERSAL_FORCE">
73
+ <xsd:annotation>
74
+ <xsd:documentation>IPSEC_IKE_PEER_NAT_TRAVERSAL_FORCE</xsd:documentation>
75
+ </xsd:annotation>
76
+ </xsd:enumeration>
77
+ </xsd:restriction>
78
+ </xsd:simpleType>
79
+ <xsd:simpleType name="Common.EnabledState">
80
+ <xsd:restriction base="xsd:string">
81
+ <xsd:enumeration value="STATE_DISABLED">
82
+ <xsd:annotation>
83
+ <xsd:documentation>STATE_DISABLED</xsd:documentation>
84
+ </xsd:annotation>
85
+ </xsd:enumeration>
86
+ <xsd:enumeration value="STATE_ENABLED">
87
+ <xsd:annotation>
88
+ <xsd:documentation>STATE_ENABLED</xsd:documentation>
89
+ </xsd:annotation>
90
+ </xsd:enumeration>
91
+ </xsd:restriction>
92
+ </xsd:simpleType>
93
+ <xsd:complexType name="Networking.IPsecIkePeerModeSequence">
94
+ <xsd:complexContent>
95
+ <xsd:restriction base='SOAP-ENC:Array'>
96
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecIkePeerMode[]'/>
97
+ </xsd:restriction>
98
+ </xsd:complexContent>
99
+ </xsd:complexType>
100
+ <xsd:complexType name="Networking.IPsecIkePeerCertTypeSequence">
101
+ <xsd:complexContent>
102
+ <xsd:restriction base='SOAP-ENC:Array'>
103
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecIkePeerCertType[]'/>
104
+ </xsd:restriction>
105
+ </xsd:complexContent>
106
+ </xsd:complexType>
107
+ <xsd:complexType name="Networking.IPsecIkePeerGeneratePolicySequence">
108
+ <xsd:complexContent>
109
+ <xsd:restriction base='SOAP-ENC:Array'>
110
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecIkePeerGeneratePolicy[]'/>
111
+ </xsd:restriction>
112
+ </xsd:complexContent>
113
+ </xsd:complexType>
114
+ <xsd:complexType name="Common.StringSequence">
115
+ <xsd:complexContent>
116
+ <xsd:restriction base='SOAP-ENC:Array'>
117
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
118
+ </xsd:restriction>
119
+ </xsd:complexContent>
120
+ </xsd:complexType>
121
+ <xsd:complexType name="Networking.IPsecDiffieHellmanGroupSequence">
122
+ <xsd:complexContent>
123
+ <xsd:restriction base='SOAP-ENC:Array'>
124
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecDiffieHellmanGroup[]'/>
125
+ </xsd:restriction>
126
+ </xsd:complexContent>
127
+ </xsd:complexType>
128
+ <xsd:complexType name="Networking.IPsecIkePeerNatTraversalSequence">
129
+ <xsd:complexContent>
130
+ <xsd:restriction base='SOAP-ENC:Array'>
131
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecIkePeerNatTraversal[]'/>
132
+ </xsd:restriction>
133
+ </xsd:complexContent>
134
+ </xsd:complexType>
135
+ <xsd:complexType name="Common.ULongSequence">
136
+ <xsd:complexContent>
137
+ <xsd:restriction base='SOAP-ENC:Array'>
138
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:long[]'/>
139
+ </xsd:restriction>
140
+ </xsd:complexContent>
141
+ </xsd:complexType>
142
+ <xsd:complexType name="Networking.IPsecIkeEncrAlgorithmSequence">
143
+ <xsd:complexContent>
144
+ <xsd:restriction base='SOAP-ENC:Array'>
145
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecIkeEncrAlgorithm[]'/>
146
+ </xsd:restriction>
147
+ </xsd:complexContent>
148
+ </xsd:complexType>
149
+ <xsd:simpleType name="Networking.IPsecIkePeerCertType">
150
+ <xsd:restriction base="xsd:string">
151
+ <xsd:enumeration value="IPSEC_IKE_PEER_CERT_TYPE_UNKNOWN">
152
+ <xsd:annotation>
153
+ <xsd:documentation>IPSEC_IKE_PEER_CERT_TYPE_UNKNOWN</xsd:documentation>
154
+ </xsd:annotation>
155
+ </xsd:enumeration>
156
+ <xsd:enumeration value="IPSEC_IKE_PEER_CERT_TYPE_NONE">
157
+ <xsd:annotation>
158
+ <xsd:documentation>IPSEC_IKE_PEER_CERT_TYPE_NONE</xsd:documentation>
159
+ </xsd:annotation>
160
+ </xsd:enumeration>
161
+ <xsd:enumeration value="IPSEC_IKE_PEER_CERT_TYPE_CERTFILE">
162
+ <xsd:annotation>
163
+ <xsd:documentation>IPSEC_IKE_PEER_CERT_TYPE_CERTFILE</xsd:documentation>
164
+ </xsd:annotation>
165
+ </xsd:enumeration>
166
+ </xsd:restriction>
167
+ </xsd:simpleType>
168
+ <xsd:simpleType name="Networking.IPsecIkePeerMode">
169
+ <xsd:restriction base="xsd:string">
170
+ <xsd:enumeration value="IPSEC_IKE_EXCHANGE_MODE_UNKNOWN">
171
+ <xsd:annotation>
172
+ <xsd:documentation>IPSEC_IKE_EXCHANGE_MODE_UNKNOWN</xsd:documentation>
173
+ </xsd:annotation>
174
+ </xsd:enumeration>
175
+ <xsd:enumeration value="IPSEC_IKE_EXCHANGE_MODE_AGGRESSIVE">
176
+ <xsd:annotation>
177
+ <xsd:documentation>IPSEC_IKE_EXCHANGE_MODE_AGGRESSIVE</xsd:documentation>
178
+ </xsd:annotation>
179
+ </xsd:enumeration>
180
+ <xsd:enumeration value="IPSEC_IKE_EXCHANGE_MODE_MAIN">
181
+ <xsd:annotation>
182
+ <xsd:documentation>IPSEC_IKE_EXCHANGE_MODE_MAIN</xsd:documentation>
183
+ </xsd:annotation>
184
+ </xsd:enumeration>
185
+ </xsd:restriction>
186
+ </xsd:simpleType>
187
+ <xsd:simpleType name="Networking.IPsecDiffieHellmanGroup">
188
+ <xsd:restriction base="xsd:string">
189
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_UNKNOWN">
190
+ <xsd:annotation>
191
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_UNKNOWN</xsd:documentation>
192
+ </xsd:annotation>
193
+ </xsd:enumeration>
194
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP768">
195
+ <xsd:annotation>
196
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP768</xsd:documentation>
197
+ </xsd:annotation>
198
+ </xsd:enumeration>
199
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP1024">
200
+ <xsd:annotation>
201
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP1024</xsd:documentation>
202
+ </xsd:annotation>
203
+ </xsd:enumeration>
204
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP1536">
205
+ <xsd:annotation>
206
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP1536</xsd:documentation>
207
+ </xsd:annotation>
208
+ </xsd:enumeration>
209
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP2048">
210
+ <xsd:annotation>
211
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP2048</xsd:documentation>
212
+ </xsd:annotation>
213
+ </xsd:enumeration>
214
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP3072">
215
+ <xsd:annotation>
216
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP3072</xsd:documentation>
217
+ </xsd:annotation>
218
+ </xsd:enumeration>
219
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP4096">
220
+ <xsd:annotation>
221
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP4096</xsd:documentation>
222
+ </xsd:annotation>
223
+ </xsd:enumeration>
224
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP6144">
225
+ <xsd:annotation>
226
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP6144</xsd:documentation>
227
+ </xsd:annotation>
228
+ </xsd:enumeration>
229
+ <xsd:enumeration value="IPSEC_DIFFIE_HELLMAN_GROUP_MODP8192">
230
+ <xsd:annotation>
231
+ <xsd:documentation>IPSEC_DIFFIE_HELLMAN_GROUP_MODP8192</xsd:documentation>
232
+ </xsd:annotation>
233
+ </xsd:enumeration>
234
+ </xsd:restriction>
235
+ </xsd:simpleType>
236
+ <xsd:complexType name="Networking.IPsecIkePeerIDTypeSequence">
237
+ <xsd:complexContent>
238
+ <xsd:restriction base='SOAP-ENC:Array'>
239
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecIkePeerIDType[]'/>
240
+ </xsd:restriction>
241
+ </xsd:complexContent>
242
+ </xsd:complexType>
243
+ <xsd:simpleType name="Networking.IPsecIkeEncrAlgorithm">
244
+ <xsd:restriction base="xsd:string">
245
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_UNKNOWN">
246
+ <xsd:annotation>
247
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_UNKNOWN</xsd:documentation>
248
+ </xsd:annotation>
249
+ </xsd:enumeration>
250
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_DES">
251
+ <xsd:annotation>
252
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_DES</xsd:documentation>
253
+ </xsd:annotation>
254
+ </xsd:enumeration>
255
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_3DES">
256
+ <xsd:annotation>
257
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_3DES</xsd:documentation>
258
+ </xsd:annotation>
259
+ </xsd:enumeration>
260
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_BLOWFISH">
261
+ <xsd:annotation>
262
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_BLOWFISH</xsd:documentation>
263
+ </xsd:annotation>
264
+ </xsd:enumeration>
265
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_CAST128">
266
+ <xsd:annotation>
267
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_CAST128</xsd:documentation>
268
+ </xsd:annotation>
269
+ </xsd:enumeration>
270
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_AES128">
271
+ <xsd:annotation>
272
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_AES128</xsd:documentation>
273
+ </xsd:annotation>
274
+ </xsd:enumeration>
275
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_AES192">
276
+ <xsd:annotation>
277
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_AES192</xsd:documentation>
278
+ </xsd:annotation>
279
+ </xsd:enumeration>
280
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_AES256">
281
+ <xsd:annotation>
282
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_AES256</xsd:documentation>
283
+ </xsd:annotation>
284
+ </xsd:enumeration>
285
+ <xsd:enumeration value="IPSEC_IKE_ENCR_ALG_CAMELLIA">
286
+ <xsd:annotation>
287
+ <xsd:documentation>IPSEC_IKE_ENCR_ALG_CAMELLIA</xsd:documentation>
288
+ </xsd:annotation>
289
+ </xsd:enumeration>
290
+ </xsd:restriction>
291
+ </xsd:simpleType>
292
+ <xsd:complexType name="Common.IPAddressSequence">
293
+ <xsd:complexContent>
294
+ <xsd:restriction base='SOAP-ENC:Array'>
295
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='xsd:string[]'/>
296
+ </xsd:restriction>
297
+ </xsd:complexContent>
298
+ </xsd:complexType>
299
+ <xsd:simpleType name="Networking.IPsecIkePeerIDType">
300
+ <xsd:restriction base="xsd:string">
301
+ <xsd:enumeration value="IPSEC_IKE_PEER_TYPE_UNKNOWN">
302
+ <xsd:annotation>
303
+ <xsd:documentation>IPSEC_IKE_PEER_TYPE_UNKNOWN</xsd:documentation>
304
+ </xsd:annotation>
305
+ </xsd:enumeration>
306
+ <xsd:enumeration value="IPSEC_IKE_PEER_TYPE_ADDRESS">
307
+ <xsd:annotation>
308
+ <xsd:documentation>IPSEC_IKE_PEER_TYPE_ADDRESS</xsd:documentation>
309
+ </xsd:annotation>
310
+ </xsd:enumeration>
311
+ <xsd:enumeration value="IPSEC_IKE_PEER_TYPE_FQDN">
312
+ <xsd:annotation>
313
+ <xsd:documentation>IPSEC_IKE_PEER_TYPE_FQDN</xsd:documentation>
314
+ </xsd:annotation>
315
+ </xsd:enumeration>
316
+ <xsd:enumeration value="IPSEC_IKE_PEER_TYPE_USER_FQDN">
317
+ <xsd:annotation>
318
+ <xsd:documentation>IPSEC_IKE_PEER_TYPE_USER_FQDN</xsd:documentation>
319
+ </xsd:annotation>
320
+ </xsd:enumeration>
321
+ <xsd:enumeration value="IPSEC_IKE_PEER_TYPE_KEYID_TAG">
322
+ <xsd:annotation>
323
+ <xsd:documentation>IPSEC_IKE_PEER_TYPE_KEYID_TAG</xsd:documentation>
324
+ </xsd:annotation>
325
+ </xsd:enumeration>
326
+ <xsd:enumeration value="IPSEC_IKE_PEER_TYPE_ASN1DN">
327
+ <xsd:annotation>
328
+ <xsd:documentation>IPSEC_IKE_PEER_TYPE_ASN1DN</xsd:documentation>
329
+ </xsd:annotation>
330
+ </xsd:enumeration>
331
+ </xsd:restriction>
332
+ </xsd:simpleType>
333
+ <xsd:simpleType name="Networking.IPsecSaMethod">
334
+ <xsd:restriction base="xsd:string">
335
+ <xsd:enumeration value="IPSEC_AUTH_METHOD_UNKNOWN">
336
+ <xsd:annotation>
337
+ <xsd:documentation>IPSEC_AUTH_METHOD_UNKNOWN</xsd:documentation>
338
+ </xsd:annotation>
339
+ </xsd:enumeration>
340
+ <xsd:enumeration value="IPSEC_AUTH_METHOD_PRE_SHARED_KEY">
341
+ <xsd:annotation>
342
+ <xsd:documentation>IPSEC_AUTH_METHOD_PRE_SHARED_KEY</xsd:documentation>
343
+ </xsd:annotation>
344
+ </xsd:enumeration>
345
+ <xsd:enumeration value="IPSEC_AUTH_METHOD_RSA_SIGNATURE">
346
+ <xsd:annotation>
347
+ <xsd:documentation>IPSEC_AUTH_METHOD_RSA_SIGNATURE</xsd:documentation>
348
+ </xsd:annotation>
349
+ </xsd:enumeration>
350
+ </xsd:restriction>
351
+ </xsd:simpleType>
352
+ <xsd:complexType name="Networking.IPsecSaMethodSequence">
353
+ <xsd:complexContent>
354
+ <xsd:restriction base='SOAP-ENC:Array'>
355
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Networking.IPsecSaMethod[]'/>
356
+ </xsd:restriction>
357
+ </xsd:complexContent>
358
+ </xsd:complexType>
359
+ <xsd:simpleType name="Networking.IPsecIkeHashAlgorithm">
360
+ <xsd:restriction base="xsd:string">
361
+ <xsd:enumeration value="IPSEC_IKE_HASH_ALG_UNKNOWN">
362
+ <xsd:annotation>
363
+ <xsd:documentation>IPSEC_IKE_HASH_ALG_UNKNOWN</xsd:documentation>
364
+ </xsd:annotation>
365
+ </xsd:enumeration>
366
+ <xsd:enumeration value="IPSEC_IKE_HASH_ALG_MD5">
367
+ <xsd:annotation>
368
+ <xsd:documentation>IPSEC_IKE_HASH_ALG_MD5</xsd:documentation>
369
+ </xsd:annotation>
370
+ </xsd:enumeration>
371
+ <xsd:enumeration value="IPSEC_IKE_HASH_ALG_SHA1">
372
+ <xsd:annotation>
373
+ <xsd:documentation>IPSEC_IKE_HASH_ALG_SHA1</xsd:documentation>
374
+ </xsd:annotation>
375
+ </xsd:enumeration>
376
+ <xsd:enumeration value="IPSEC_IKE_HASH_ALG_SHA256">
377
+ <xsd:annotation>
378
+ <xsd:documentation>IPSEC_IKE_HASH_ALG_SHA256</xsd:documentation>
379
+ </xsd:annotation>
380
+ </xsd:enumeration>
381
+ <xsd:enumeration value="IPSEC_IKE_HASH_ALG_SHA384">
382
+ <xsd:annotation>
383
+ <xsd:documentation>IPSEC_IKE_HASH_ALG_SHA384</xsd:documentation>
384
+ </xsd:annotation>
385
+ </xsd:enumeration>
386
+ <xsd:enumeration value="IPSEC_IKE_HASH_ALG_SHA512">
387
+ <xsd:annotation>
388
+ <xsd:documentation>IPSEC_IKE_HASH_ALG_SHA512</xsd:documentation>
389
+ </xsd:annotation>
390
+ </xsd:enumeration>
391
+ </xsd:restriction>
392
+ </xsd:simpleType>
393
+ <xsd:complexType name="Common.EnabledStateSequence">
394
+ <xsd:complexContent>
395
+ <xsd:restriction base='SOAP-ENC:Array'>
396
+ <xsd:attribute ref='SOAP-ENC:arrayType' wsdl:arrayType='tns:Common.EnabledState[]'/>
397
+ </xsd:restriction>
398
+ </xsd:complexContent>
399
+ </xsd:complexType>
400
+ </xsd:schema>
401
+ </types>
402
+
403
+ <!-- message -->
404
+
405
+ <message name="Networking.IPsecIkePeer.get_listRequest">
406
+ </message>
407
+ <message name="Networking.IPsecIkePeer.get_listResponse">
408
+ <part name="return" type="tns:Common.StringSequence"/>
409
+ </message>
410
+
411
+ <message name="Networking.IPsecIkePeer.createRequest">
412
+ <part name="peers" type="tns:Common.StringSequence"/>
413
+ <part name="files" type="tns:Common.StringSequence"/>
414
+ <part name="keys" type="tns:Common.StringSequence"/>
415
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
416
+ </message>
417
+ <message name="Networking.IPsecIkePeer.createResponse">
418
+ </message>
419
+
420
+ <message name="Networking.IPsecIkePeer.delete_ike_peerRequest">
421
+ <part name="peers" type="tns:Common.StringSequence"/>
422
+ </message>
423
+ <message name="Networking.IPsecIkePeer.delete_ike_peerResponse">
424
+ </message>
425
+
426
+ <message name="Networking.IPsecIkePeer.delete_all_ike_peersRequest">
427
+ </message>
428
+ <message name="Networking.IPsecIkePeer.delete_all_ike_peersResponse">
429
+ </message>
430
+
431
+ <message name="Networking.IPsecIkePeer.set_descriptionRequest">
432
+ <part name="peers" type="tns:Common.StringSequence"/>
433
+ <part name="descriptions" type="tns:Common.StringSequence"/>
434
+ </message>
435
+ <message name="Networking.IPsecIkePeer.set_descriptionResponse">
436
+ </message>
437
+
438
+ <message name="Networking.IPsecIkePeer.get_descriptionRequest">
439
+ <part name="peers" type="tns:Common.StringSequence"/>
440
+ </message>
441
+ <message name="Networking.IPsecIkePeer.get_descriptionResponse">
442
+ <part name="return" type="tns:Common.StringSequence"/>
443
+ </message>
444
+
445
+ <message name="Networking.IPsecIkePeer.set_modeRequest">
446
+ <part name="peers" type="tns:Common.StringSequence"/>
447
+ <part name="modes" type="tns:Networking.IPsecIkePeerModeSequence"/>
448
+ </message>
449
+ <message name="Networking.IPsecIkePeer.set_modeResponse">
450
+ </message>
451
+
452
+ <message name="Networking.IPsecIkePeer.get_modeRequest">
453
+ <part name="peers" type="tns:Common.StringSequence"/>
454
+ </message>
455
+ <message name="Networking.IPsecIkePeer.get_modeResponse">
456
+ <part name="return" type="tns:Networking.IPsecIkePeerModeSequence"/>
457
+ </message>
458
+
459
+ <message name="Networking.IPsecIkePeer.set_remote_addressRequest">
460
+ <part name="peers" type="tns:Common.StringSequence"/>
461
+ <part name="addresses" type="tns:Common.IPAddressSequence"/>
462
+ </message>
463
+ <message name="Networking.IPsecIkePeer.set_remote_addressResponse">
464
+ </message>
465
+
466
+ <message name="Networking.IPsecIkePeer.get_remote_addressRequest">
467
+ <part name="peers" type="tns:Common.StringSequence"/>
468
+ </message>
469
+ <message name="Networking.IPsecIkePeer.get_remote_addressResponse">
470
+ <part name="return" type="tns:Common.IPAddressSequence"/>
471
+ </message>
472
+
473
+ <message name="Networking.IPsecIkePeer.set_lifetimeRequest">
474
+ <part name="peers" type="tns:Common.StringSequence"/>
475
+ <part name="lifetimes" type="tns:Common.ULongSequence"/>
476
+ </message>
477
+ <message name="Networking.IPsecIkePeer.set_lifetimeResponse">
478
+ </message>
479
+
480
+ <message name="Networking.IPsecIkePeer.get_lifetimeRequest">
481
+ <part name="peers" type="tns:Common.StringSequence"/>
482
+ </message>
483
+ <message name="Networking.IPsecIkePeer.get_lifetimeResponse">
484
+ <part name="return" type="tns:Common.ULongSequence"/>
485
+ </message>
486
+
487
+ <message name="Networking.IPsecIkePeer.set_my_id_typeRequest">
488
+ <part name="peers" type="tns:Common.StringSequence"/>
489
+ <part name="types" type="tns:Networking.IPsecIkePeerIDTypeSequence"/>
490
+ </message>
491
+ <message name="Networking.IPsecIkePeer.set_my_id_typeResponse">
492
+ </message>
493
+
494
+ <message name="Networking.IPsecIkePeer.get_my_id_typeRequest">
495
+ <part name="peers" type="tns:Common.StringSequence"/>
496
+ </message>
497
+ <message name="Networking.IPsecIkePeer.get_my_id_typeResponse">
498
+ <part name="return" type="tns:Networking.IPsecIkePeerIDTypeSequence"/>
499
+ </message>
500
+
501
+ <message name="Networking.IPsecIkePeer.set_my_id_valueRequest">
502
+ <part name="peers" type="tns:Common.StringSequence"/>
503
+ <part name="values" type="tns:Common.StringSequence"/>
504
+ </message>
505
+ <message name="Networking.IPsecIkePeer.set_my_id_valueResponse">
506
+ </message>
507
+
508
+ <message name="Networking.IPsecIkePeer.get_my_id_valueRequest">
509
+ <part name="peers" type="tns:Common.StringSequence"/>
510
+ </message>
511
+ <message name="Networking.IPsecIkePeer.get_my_id_valueResponse">
512
+ <part name="return" type="tns:Common.StringSequence"/>
513
+ </message>
514
+
515
+ <message name="Networking.IPsecIkePeer.set_peer_id_typeRequest">
516
+ <part name="peers" type="tns:Common.StringSequence"/>
517
+ <part name="types" type="tns:Networking.IPsecIkePeerIDTypeSequence"/>
518
+ </message>
519
+ <message name="Networking.IPsecIkePeer.set_peer_id_typeResponse">
520
+ </message>
521
+
522
+ <message name="Networking.IPsecIkePeer.get_peer_id_typeRequest">
523
+ <part name="peers" type="tns:Common.StringSequence"/>
524
+ </message>
525
+ <message name="Networking.IPsecIkePeer.get_peer_id_typeResponse">
526
+ <part name="return" type="tns:Networking.IPsecIkePeerIDTypeSequence"/>
527
+ </message>
528
+
529
+ <message name="Networking.IPsecIkePeer.set_peer_id_valueRequest">
530
+ <part name="peers" type="tns:Common.StringSequence"/>
531
+ <part name="values" type="tns:Common.StringSequence"/>
532
+ </message>
533
+ <message name="Networking.IPsecIkePeer.set_peer_id_valueResponse">
534
+ </message>
535
+
536
+ <message name="Networking.IPsecIkePeer.get_peer_id_valueRequest">
537
+ <part name="peers" type="tns:Common.StringSequence"/>
538
+ </message>
539
+ <message name="Networking.IPsecIkePeer.get_peer_id_valueResponse">
540
+ <part name="return" type="tns:Common.StringSequence"/>
541
+ </message>
542
+
543
+ <message name="Networking.IPsecIkePeer.set_passive_stateRequest">
544
+ <part name="peers" type="tns:Common.StringSequence"/>
545
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
546
+ </message>
547
+ <message name="Networking.IPsecIkePeer.set_passive_stateResponse">
548
+ </message>
549
+
550
+ <message name="Networking.IPsecIkePeer.get_passive_stateRequest">
551
+ <part name="peers" type="tns:Common.StringSequence"/>
552
+ </message>
553
+ <message name="Networking.IPsecIkePeer.get_passive_stateResponse">
554
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
555
+ </message>
556
+
557
+ <message name="Networking.IPsecIkePeer.set_verify_certificate_stateRequest">
558
+ <part name="peers" type="tns:Common.StringSequence"/>
559
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
560
+ </message>
561
+ <message name="Networking.IPsecIkePeer.set_verify_certificate_stateResponse">
562
+ </message>
563
+
564
+ <message name="Networking.IPsecIkePeer.get_verify_certificate_stateRequest">
565
+ <part name="peers" type="tns:Common.StringSequence"/>
566
+ </message>
567
+ <message name="Networking.IPsecIkePeer.get_verify_certificate_stateResponse">
568
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
569
+ </message>
570
+
571
+ <message name="Networking.IPsecIkePeer.set_certificate_typeRequest">
572
+ <part name="peers" type="tns:Common.StringSequence"/>
573
+ <part name="types" type="tns:Networking.IPsecIkePeerCertTypeSequence"/>
574
+ </message>
575
+ <message name="Networking.IPsecIkePeer.set_certificate_typeResponse">
576
+ </message>
577
+
578
+ <message name="Networking.IPsecIkePeer.get_certificate_typeRequest">
579
+ <part name="peers" type="tns:Common.StringSequence"/>
580
+ </message>
581
+ <message name="Networking.IPsecIkePeer.get_certificate_typeResponse">
582
+ <part name="return" type="tns:Networking.IPsecIkePeerCertTypeSequence"/>
583
+ </message>
584
+
585
+ <message name="Networking.IPsecIkePeer.set_generate_policyRequest">
586
+ <part name="peers" type="tns:Common.StringSequence"/>
587
+ <part name="policies" type="tns:Networking.IPsecIkePeerGeneratePolicySequence"/>
588
+ </message>
589
+ <message name="Networking.IPsecIkePeer.set_generate_policyResponse">
590
+ </message>
591
+
592
+ <message name="Networking.IPsecIkePeer.get_generate_policyRequest">
593
+ <part name="peers" type="tns:Common.StringSequence"/>
594
+ </message>
595
+ <message name="Networking.IPsecIkePeer.get_generate_policyResponse">
596
+ <part name="return" type="tns:Networking.IPsecIkePeerGeneratePolicySequence"/>
597
+ </message>
598
+
599
+ <message name="Networking.IPsecIkePeer.set_nat_traversalRequest">
600
+ <part name="peers" type="tns:Common.StringSequence"/>
601
+ <part name="nat_traversals" type="tns:Networking.IPsecIkePeerNatTraversalSequence"/>
602
+ </message>
603
+ <message name="Networking.IPsecIkePeer.set_nat_traversalResponse">
604
+ </message>
605
+
606
+ <message name="Networking.IPsecIkePeer.get_nat_traversalRequest">
607
+ <part name="peers" type="tns:Common.StringSequence"/>
608
+ </message>
609
+ <message name="Networking.IPsecIkePeer.get_nat_traversalResponse">
610
+ <part name="return" type="tns:Networking.IPsecIkePeerNatTraversalSequence"/>
611
+ </message>
612
+
613
+ <message name="Networking.IPsecIkePeer.set_enabled_stateRequest">
614
+ <part name="peers" type="tns:Common.StringSequence"/>
615
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
616
+ </message>
617
+ <message name="Networking.IPsecIkePeer.set_enabled_stateResponse">
618
+ </message>
619
+
620
+ <message name="Networking.IPsecIkePeer.get_enabled_stateRequest">
621
+ <part name="peers" type="tns:Common.StringSequence"/>
622
+ </message>
623
+ <message name="Networking.IPsecIkePeer.get_enabled_stateResponse">
624
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
625
+ </message>
626
+
627
+ <message name="Networking.IPsecIkePeer.set_proxy_support_stateRequest">
628
+ <part name="peers" type="tns:Common.StringSequence"/>
629
+ <part name="states" type="tns:Common.EnabledStateSequence"/>
630
+ </message>
631
+ <message name="Networking.IPsecIkePeer.set_proxy_support_stateResponse">
632
+ </message>
633
+
634
+ <message name="Networking.IPsecIkePeer.get_proxy_support_stateRequest">
635
+ <part name="peers" type="tns:Common.StringSequence"/>
636
+ </message>
637
+ <message name="Networking.IPsecIkePeer.get_proxy_support_stateResponse">
638
+ <part name="return" type="tns:Common.EnabledStateSequence"/>
639
+ </message>
640
+
641
+ <message name="Networking.IPsecIkePeer.set_my_certificate_fileRequest">
642
+ <part name="peers" type="tns:Common.StringSequence"/>
643
+ <part name="files" type="tns:Common.StringSequence"/>
644
+ </message>
645
+ <message name="Networking.IPsecIkePeer.set_my_certificate_fileResponse">
646
+ </message>
647
+
648
+ <message name="Networking.IPsecIkePeer.get_my_certificate_fileRequest">
649
+ <part name="peers" type="tns:Common.StringSequence"/>
650
+ </message>
651
+ <message name="Networking.IPsecIkePeer.get_my_certificate_fileResponse">
652
+ <part name="return" type="tns:Common.StringSequence"/>
653
+ </message>
654
+
655
+ <message name="Networking.IPsecIkePeer.set_my_certificate_key_fileRequest">
656
+ <part name="peers" type="tns:Common.StringSequence"/>
657
+ <part name="files" type="tns:Common.StringSequence"/>
658
+ </message>
659
+ <message name="Networking.IPsecIkePeer.set_my_certificate_key_fileResponse">
660
+ </message>
661
+
662
+ <message name="Networking.IPsecIkePeer.get_my_certificate_key_fileRequest">
663
+ <part name="peers" type="tns:Common.StringSequence"/>
664
+ </message>
665
+ <message name="Networking.IPsecIkePeer.get_my_certificate_key_fileResponse">
666
+ <part name="return" type="tns:Common.StringSequence"/>
667
+ </message>
668
+
669
+ <message name="Networking.IPsecIkePeer.set_ca_certificate_fileRequest">
670
+ <part name="peers" type="tns:Common.StringSequence"/>
671
+ <part name="files" type="tns:Common.StringSequence"/>
672
+ </message>
673
+ <message name="Networking.IPsecIkePeer.set_ca_certificate_fileResponse">
674
+ </message>
675
+
676
+ <message name="Networking.IPsecIkePeer.get_ca_certificate_fileRequest">
677
+ <part name="peers" type="tns:Common.StringSequence"/>
678
+ </message>
679
+ <message name="Networking.IPsecIkePeer.get_ca_certificate_fileResponse">
680
+ <part name="return" type="tns:Common.StringSequence"/>
681
+ </message>
682
+
683
+ <message name="Networking.IPsecIkePeer.set_peer_certificate_fileRequest">
684
+ <part name="peers" type="tns:Common.StringSequence"/>
685
+ <part name="files" type="tns:Common.StringSequence"/>
686
+ </message>
687
+ <message name="Networking.IPsecIkePeer.set_peer_certificate_fileResponse">
688
+ </message>
689
+
690
+ <message name="Networking.IPsecIkePeer.get_peer_certificate_fileRequest">
691
+ <part name="peers" type="tns:Common.StringSequence"/>
692
+ </message>
693
+ <message name="Networking.IPsecIkePeer.get_peer_certificate_fileResponse">
694
+ <part name="return" type="tns:Common.StringSequence"/>
695
+ </message>
696
+
697
+ <message name="Networking.IPsecIkePeer.set_ike_proposal_nameRequest">
698
+ <part name="peers" type="tns:Common.StringSequence"/>
699
+ <part name="names" type="tns:Common.StringSequence"/>
700
+ </message>
701
+ <message name="Networking.IPsecIkePeer.set_ike_proposal_nameResponse">
702
+ </message>
703
+
704
+ <message name="Networking.IPsecIkePeer.get_ike_proposal_nameRequest">
705
+ <part name="peers" type="tns:Common.StringSequence"/>
706
+ </message>
707
+ <message name="Networking.IPsecIkePeer.get_ike_proposal_nameResponse">
708
+ <part name="return" type="tns:Common.StringSequence"/>
709
+ </message>
710
+
711
+ <message name="Networking.IPsecIkePeer.set_phase1_auth_methodRequest">
712
+ <part name="peers" type="tns:Common.StringSequence"/>
713
+ <part name="methods" type="tns:Networking.IPsecSaMethodSequence"/>
714
+ </message>
715
+ <message name="Networking.IPsecIkePeer.set_phase1_auth_methodResponse">
716
+ </message>
717
+
718
+ <message name="Networking.IPsecIkePeer.get_phase1_auth_methodRequest">
719
+ <part name="peers" type="tns:Common.StringSequence"/>
720
+ </message>
721
+ <message name="Networking.IPsecIkePeer.get_phase1_auth_methodResponse">
722
+ <part name="return" type="tns:Networking.IPsecSaMethodSequence"/>
723
+ </message>
724
+
725
+ <message name="Networking.IPsecIkePeer.set_phase1_hash_algorithmRequest">
726
+ <part name="peers" type="tns:Common.StringSequence"/>
727
+ <part name="algorithms" type="tns:Networking.IPsecIkeHashAlgorithmSequence"/>
728
+ </message>
729
+ <message name="Networking.IPsecIkePeer.set_phase1_hash_algorithmResponse">
730
+ </message>
731
+
732
+ <message name="Networking.IPsecIkePeer.get_phase1_hash_algorithmRequest">
733
+ <part name="peers" type="tns:Common.StringSequence"/>
734
+ </message>
735
+ <message name="Networking.IPsecIkePeer.get_phase1_hash_algorithmResponse">
736
+ <part name="return" type="tns:Networking.IPsecIkeHashAlgorithmSequence"/>
737
+ </message>
738
+
739
+ <message name="Networking.IPsecIkePeer.set_phase1_encryption_algorithmRequest">
740
+ <part name="peers" type="tns:Common.StringSequence"/>
741
+ <part name="algorithms" type="tns:Networking.IPsecIkeEncrAlgorithmSequence"/>
742
+ </message>
743
+ <message name="Networking.IPsecIkePeer.set_phase1_encryption_algorithmResponse">
744
+ </message>
745
+
746
+ <message name="Networking.IPsecIkePeer.get_phase1_encryption_algorithmRequest">
747
+ <part name="peers" type="tns:Common.StringSequence"/>
748
+ </message>
749
+ <message name="Networking.IPsecIkePeer.get_phase1_encryption_algorithmResponse">
750
+ <part name="return" type="tns:Networking.IPsecIkeEncrAlgorithmSequence"/>
751
+ </message>
752
+
753
+ <message name="Networking.IPsecIkePeer.set_phase1_perfect_forward_secrecyRequest">
754
+ <part name="peers" type="tns:Common.StringSequence"/>
755
+ <part name="secrecies" type="tns:Networking.IPsecDiffieHellmanGroupSequence"/>
756
+ </message>
757
+ <message name="Networking.IPsecIkePeer.set_phase1_perfect_forward_secrecyResponse">
758
+ </message>
759
+
760
+ <message name="Networking.IPsecIkePeer.get_phase1_perfect_forward_secrecyRequest">
761
+ <part name="peers" type="tns:Common.StringSequence"/>
762
+ </message>
763
+ <message name="Networking.IPsecIkePeer.get_phase1_perfect_forward_secrecyResponse">
764
+ <part name="return" type="tns:Networking.IPsecDiffieHellmanGroupSequence"/>
765
+ </message>
766
+
767
+ <message name="Networking.IPsecIkePeer.set_preshared_keyRequest">
768
+ <part name="peers" type="tns:Common.StringSequence"/>
769
+ <part name="keys" type="tns:Common.StringSequence"/>
770
+ </message>
771
+ <message name="Networking.IPsecIkePeer.set_preshared_keyResponse">
772
+ </message>
773
+
774
+ <message name="Networking.IPsecIkePeer.set_preshared_key_encryptedRequest">
775
+ <part name="peers" type="tns:Common.StringSequence"/>
776
+ <part name="keys" type="tns:Common.StringSequence"/>
777
+ </message>
778
+ <message name="Networking.IPsecIkePeer.set_preshared_key_encryptedResponse">
779
+ </message>
780
+
781
+ <message name="Networking.IPsecIkePeer.get_preshared_key_encryptedRequest">
782
+ <part name="peers" type="tns:Common.StringSequence"/>
783
+ </message>
784
+ <message name="Networking.IPsecIkePeer.get_preshared_key_encryptedResponse">
785
+ <part name="return" type="tns:Common.StringSequence"/>
786
+ </message>
787
+
788
+ <message name="Networking.IPsecIkePeer.set_dpd_delayRequest">
789
+ <part name="peers" type="tns:Common.StringSequence"/>
790
+ <part name="delays" type="tns:Common.ULongSequence"/>
791
+ </message>
792
+ <message name="Networking.IPsecIkePeer.set_dpd_delayResponse">
793
+ </message>
794
+
795
+ <message name="Networking.IPsecIkePeer.get_dpd_delayRequest">
796
+ <part name="peers" type="tns:Common.StringSequence"/>
797
+ </message>
798
+ <message name="Networking.IPsecIkePeer.get_dpd_delayResponse">
799
+ <part name="return" type="tns:Common.ULongSequence"/>
800
+ </message>
801
+
802
+ <message name="Networking.IPsecIkePeer.set_crl_fileRequest">
803
+ <part name="peers" type="tns:Common.StringSequence"/>
804
+ <part name="files" type="tns:Common.StringSequence"/>
805
+ </message>
806
+ <message name="Networking.IPsecIkePeer.set_crl_fileResponse">
807
+ </message>
808
+
809
+ <message name="Networking.IPsecIkePeer.get_crl_fileRequest">
810
+ <part name="peers" type="tns:Common.StringSequence"/>
811
+ </message>
812
+ <message name="Networking.IPsecIkePeer.get_crl_fileResponse">
813
+ <part name="return" type="tns:Common.StringSequence"/>
814
+ </message>
815
+
816
+ <message name="Networking.IPsecIkePeer.get_versionRequest">
817
+ </message>
818
+ <message name="Networking.IPsecIkePeer.get_versionResponse">
819
+ <part name="return" type="xsd:string"/>
820
+ </message>
821
+
822
+ <message name="Networking.IPsecIkePeer.set_replay_window_sizeRequest">
823
+ <part name="peers" type="tns:Common.StringSequence"/>
824
+ <part name="sizes" type="tns:Common.ULongSequence"/>
825
+ </message>
826
+ <message name="Networking.IPsecIkePeer.set_replay_window_sizeResponse">
827
+ </message>
828
+
829
+ <message name="Networking.IPsecIkePeer.get_replay_window_sizeRequest">
830
+ <part name="peers" type="tns:Common.StringSequence"/>
831
+ </message>
832
+ <message name="Networking.IPsecIkePeer.get_replay_window_sizeResponse">
833
+ <part name="return" type="tns:Common.ULongSequence"/>
834
+ </message>
835
+
836
+ <!-- portType -->
837
+
838
+ <portType name="Networking.IPsecIkePeerPortType">
839
+ <operation name="get_list">
840
+ <documentation>
841
+ Gets the names for all IPsec IKE peers.
842
+
843
+ </documentation>
844
+ <input message="tns:Networking.IPsecIkePeer.get_listRequest"/>
845
+ <output message="tns:Networking.IPsecIkePeer.get_listResponse"/>
846
+ </operation>
847
+ <operation name="create">
848
+ <documentation>
849
+ Creates a set of IPsec IKE peers
850
+
851
+ </documentation>
852
+ <input message="tns:Networking.IPsecIkePeer.createRequest"/>
853
+ <output message="tns:Networking.IPsecIkePeer.createResponse"/>
854
+ </operation>
855
+ <operation name="delete_ike_peer">
856
+ <documentation>
857
+ Deletes a set of IPsec IKE peers.
858
+
859
+ </documentation>
860
+ <input message="tns:Networking.IPsecIkePeer.delete_ike_peerRequest"/>
861
+ <output message="tns:Networking.IPsecIkePeer.delete_ike_peerResponse"/>
862
+ </operation>
863
+ <operation name="delete_all_ike_peers">
864
+ <documentation>
865
+ Deletes all IPsec IKE peers.
866
+
867
+ </documentation>
868
+ <input message="tns:Networking.IPsecIkePeer.delete_all_ike_peersRequest"/>
869
+ <output message="tns:Networking.IPsecIkePeer.delete_all_ike_peersResponse"/>
870
+ </operation>
871
+ <operation name="set_description">
872
+ <documentation>
873
+ Sets the description for the IPsec IKE peers.
874
+ This is an arbitrary field which can be used for any purpose.
875
+
876
+ </documentation>
877
+ <input message="tns:Networking.IPsecIkePeer.set_descriptionRequest"/>
878
+ <output message="tns:Networking.IPsecIkePeer.set_descriptionResponse"/>
879
+ </operation>
880
+ <operation name="get_description">
881
+ <documentation>
882
+ Gets descriprion for each specified IPsec IKE peer.
883
+
884
+ </documentation>
885
+ <input message="tns:Networking.IPsecIkePeer.get_descriptionRequest"/>
886
+ <output message="tns:Networking.IPsecIkePeer.get_descriptionResponse"/>
887
+ </operation>
888
+ <operation name="set_mode">
889
+ <documentation>
890
+ Sets IPsec IKE peer modes for list of IPsec IKE peers.
891
+
892
+ </documentation>
893
+ <input message="tns:Networking.IPsecIkePeer.set_modeRequest"/>
894
+ <output message="tns:Networking.IPsecIkePeer.set_modeResponse"/>
895
+ </operation>
896
+ <operation name="get_mode">
897
+ <documentation>
898
+ Gets IPsec IKE peer modes for a list of IPsec IKE peers.
899
+
900
+ </documentation>
901
+ <input message="tns:Networking.IPsecIkePeer.get_modeRequest"/>
902
+ <output message="tns:Networking.IPsecIkePeer.get_modeResponse"/>
903
+ </operation>
904
+ <operation name="set_remote_address">
905
+ <documentation>
906
+ Sets the IPsec IKE peer remote BIG-IP system IP addresses
907
+ for a list of IPsec IKE peers.
908
+
909
+ </documentation>
910
+ <input message="tns:Networking.IPsecIkePeer.set_remote_addressRequest"/>
911
+ <output message="tns:Networking.IPsecIkePeer.set_remote_addressResponse"/>
912
+ </operation>
913
+ <operation name="get_remote_address">
914
+ <documentation>
915
+ Gets the IPsec IKE peer remote IP address for a list of IPsec IKE peers.
916
+
917
+ </documentation>
918
+ <input message="tns:Networking.IPsecIkePeer.get_remote_addressRequest"/>
919
+ <output message="tns:Networking.IPsecIkePeer.get_remote_addressResponse"/>
920
+ </operation>
921
+ <operation name="set_lifetime">
922
+ <documentation>
923
+ Sets the IPsec IKE peer lifetimes of an IKE security association
924
+ that will be proposed in the phase 1 negotiation for
925
+ a list of IPsec IKE peers.
926
+
927
+ </documentation>
928
+ <input message="tns:Networking.IPsecIkePeer.set_lifetimeRequest"/>
929
+ <output message="tns:Networking.IPsecIkePeer.set_lifetimeResponse"/>
930
+ </operation>
931
+ <operation name="get_lifetime">
932
+ <documentation>
933
+ Gets the IPsec IKE peer lifetimes of an IKE security association that
934
+ will be proposed in the phase 1 negotiation for a list of IPsec IKE peers.
935
+
936
+ </documentation>
937
+ <input message="tns:Networking.IPsecIkePeer.get_lifetimeRequest"/>
938
+ <output message="tns:Networking.IPsecIkePeer.get_lifetimeResponse"/>
939
+ </operation>
940
+ <operation name="set_my_id_type">
941
+ <documentation>
942
+ Sets the IPsec IKE peer identifier types sent to the remote host
943
+ to use in the phase 1 negotiation for a list of IPsec IKE peers.
944
+
945
+ </documentation>
946
+ <input message="tns:Networking.IPsecIkePeer.set_my_id_typeRequest"/>
947
+ <output message="tns:Networking.IPsecIkePeer.set_my_id_typeResponse"/>
948
+ </operation>
949
+ <operation name="get_my_id_type">
950
+ <documentation>
951
+ Gets the IPsec IKE peer identifier types sent to the remote host
952
+ to use in the phase 1 negotiation for a list of IPsec IKE peers.
953
+
954
+ </documentation>
955
+ <input message="tns:Networking.IPsecIkePeer.get_my_id_typeRequest"/>
956
+ <output message="tns:Networking.IPsecIkePeer.get_my_id_typeResponse"/>
957
+ </operation>
958
+ <operation name="set_my_id_value">
959
+ <documentation>
960
+ Sets the IPsec IKE peer identifier values sent to the remote host
961
+ to use in the phase 1 negotiation for a list of IPsec IKE peers.
962
+
963
+ </documentation>
964
+ <input message="tns:Networking.IPsecIkePeer.set_my_id_valueRequest"/>
965
+ <output message="tns:Networking.IPsecIkePeer.set_my_id_valueResponse"/>
966
+ </operation>
967
+ <operation name="get_my_id_value">
968
+ <documentation>
969
+ Gets the IPsec IKE peer identifier values sent to the remote
970
+ host to use in the phase 1 negotiation for a list of
971
+ IPsec IKE peers.
972
+
973
+ </documentation>
974
+ <input message="tns:Networking.IPsecIkePeer.get_my_id_valueRequest"/>
975
+ <output message="tns:Networking.IPsecIkePeer.get_my_id_valueResponse"/>
976
+ </operation>
977
+ <operation name="set_peer_id_type">
978
+ <documentation>
979
+ Sets the peer identifier types that can be used in the phase 1
980
+ negotiation for a list of IPsec IKE peers.
981
+
982
+ </documentation>
983
+ <input message="tns:Networking.IPsecIkePeer.set_peer_id_typeRequest"/>
984
+ <output message="tns:Networking.IPsecIkePeer.set_peer_id_typeResponse"/>
985
+ </operation>
986
+ <operation name="get_peer_id_type">
987
+ <documentation>
988
+ Gets the peer identifier types that can be used in the phase 1
989
+ negotiation for a list of IPsec IKE peers.
990
+
991
+ </documentation>
992
+ <input message="tns:Networking.IPsecIkePeer.get_peer_id_typeRequest"/>
993
+ <output message="tns:Networking.IPsecIkePeer.get_peer_id_typeResponse"/>
994
+ </operation>
995
+ <operation name="set_peer_id_value">
996
+ <documentation>
997
+ Sets the IPsec IKE peer identifier value to be received
998
+ for a list of IPsec IKE peers.
999
+
1000
+ </documentation>
1001
+ <input message="tns:Networking.IPsecIkePeer.set_peer_id_valueRequest"/>
1002
+ <output message="tns:Networking.IPsecIkePeer.set_peer_id_valueResponse"/>
1003
+ </operation>
1004
+ <operation name="get_peer_id_value">
1005
+ <documentation>
1006
+ Gets the peer identifier values for a list of IPsec IKE peers.
1007
+
1008
+ </documentation>
1009
+ <input message="tns:Networking.IPsecIkePeer.get_peer_id_valueRequest"/>
1010
+ <output message="tns:Networking.IPsecIkePeer.get_peer_id_valueResponse"/>
1011
+ </operation>
1012
+ <operation name="set_passive_state">
1013
+ <documentation>
1014
+ Sets the state to passive for a set of IPsec IKE peers.
1015
+ Set this to enable, if you do not want to be the initiator of
1016
+ the IKE negotiation with this IKE peer.
1017
+
1018
+ </documentation>
1019
+ <input message="tns:Networking.IPsecIkePeer.set_passive_stateRequest"/>
1020
+ <output message="tns:Networking.IPsecIkePeer.set_passive_stateResponse"/>
1021
+ </operation>
1022
+ <operation name="get_passive_state">
1023
+ <documentation>
1024
+ Gets the passive state for a set of IPsec IKE peers.
1025
+
1026
+ </documentation>
1027
+ <input message="tns:Networking.IPsecIkePeer.get_passive_stateRequest"/>
1028
+ <output message="tns:Networking.IPsecIkePeer.get_passive_stateResponse"/>
1029
+ </operation>
1030
+ <operation name="set_verify_certificate_state">
1031
+ <documentation>
1032
+ Sets the IPsec IKE peer state to verify the peer's certificate
1033
+ for a set of IPsec IKE peers.
1034
+
1035
+ </documentation>
1036
+ <input message="tns:Networking.IPsecIkePeer.set_verify_certificate_stateRequest"/>
1037
+ <output message="tns:Networking.IPsecIkePeer.set_verify_certificate_stateResponse"/>
1038
+ </operation>
1039
+ <operation name="get_verify_certificate_state">
1040
+ <documentation>
1041
+ Gets the IPsec IKE peer state of verify_certificate for
1042
+ a set of IPsec IKE peers.
1043
+
1044
+ </documentation>
1045
+ <input message="tns:Networking.IPsecIkePeer.get_verify_certificate_stateRequest"/>
1046
+ <output message="tns:Networking.IPsecIkePeer.get_verify_certificate_stateResponse"/>
1047
+ </operation>
1048
+ <operation name="set_certificate_type">
1049
+ <documentation>
1050
+ Sets the IPsec IKE peer certificate types for a list of IPsec IKE peers.
1051
+
1052
+ </documentation>
1053
+ <input message="tns:Networking.IPsecIkePeer.set_certificate_typeRequest"/>
1054
+ <output message="tns:Networking.IPsecIkePeer.set_certificate_typeResponse"/>
1055
+ </operation>
1056
+ <operation name="get_certificate_type">
1057
+ <documentation>
1058
+ Gets the IPsec IKE peer certification types for a list of IPsec IKE peers.
1059
+
1060
+ </documentation>
1061
+ <input message="tns:Networking.IPsecIkePeer.get_certificate_typeRequest"/>
1062
+ <output message="tns:Networking.IPsecIkePeer.get_certificate_typeResponse"/>
1063
+ </operation>
1064
+ <operation name="set_generate_policy">
1065
+ <documentation>
1066
+ Sets the IPsec IKE peer generate policy option.
1067
+
1068
+ </documentation>
1069
+ <input message="tns:Networking.IPsecIkePeer.set_generate_policyRequest"/>
1070
+ <output message="tns:Networking.IPsecIkePeer.set_generate_policyResponse"/>
1071
+ </operation>
1072
+ <operation name="get_generate_policy">
1073
+ <documentation>
1074
+ Gets the IPsec IKE peer generate policy option.
1075
+
1076
+ </documentation>
1077
+ <input message="tns:Networking.IPsecIkePeer.get_generate_policyRequest"/>
1078
+ <output message="tns:Networking.IPsecIkePeer.get_generate_policyResponse"/>
1079
+ </operation>
1080
+ <operation name="set_nat_traversal">
1081
+ <documentation>
1082
+ Sets the IPsec IKE peer NAT traversal option.
1083
+
1084
+ </documentation>
1085
+ <input message="tns:Networking.IPsecIkePeer.set_nat_traversalRequest"/>
1086
+ <output message="tns:Networking.IPsecIkePeer.set_nat_traversalResponse"/>
1087
+ </operation>
1088
+ <operation name="get_nat_traversal">
1089
+ <documentation>
1090
+ Gets the IPsec IKE peer NAT traversal option.
1091
+
1092
+ </documentation>
1093
+ <input message="tns:Networking.IPsecIkePeer.get_nat_traversalRequest"/>
1094
+ <output message="tns:Networking.IPsecIkePeer.get_nat_traversalResponse"/>
1095
+ </operation>
1096
+ <operation name="set_enabled_state">
1097
+ <documentation>
1098
+ Sets the IPsec IKE peer state to enable or disable. If you set the state
1099
+ to disable, the IKE peer is completely disabled.
1100
+
1101
+ </documentation>
1102
+ <input message="tns:Networking.IPsecIkePeer.set_enabled_stateRequest"/>
1103
+ <output message="tns:Networking.IPsecIkePeer.set_enabled_stateResponse"/>
1104
+ </operation>
1105
+ <operation name="get_enabled_state">
1106
+ <documentation>
1107
+ Gets the IPsec IKE peer state.
1108
+
1109
+ </documentation>
1110
+ <input message="tns:Networking.IPsecIkePeer.get_enabled_stateRequest"/>
1111
+ <output message="tns:Networking.IPsecIkePeer.get_enabled_stateResponse"/>
1112
+ </operation>
1113
+ <operation name="set_proxy_support_state">
1114
+ <documentation>
1115
+ Sets the IPsec IKE peer proxy support to enable or disable.
1116
+ Setting proxy support to enable gives the IKE peer the
1117
+ ability to work over a proxy.
1118
+
1119
+ </documentation>
1120
+ <input message="tns:Networking.IPsecIkePeer.set_proxy_support_stateRequest"/>
1121
+ <output message="tns:Networking.IPsecIkePeer.set_proxy_support_stateResponse"/>
1122
+ </operation>
1123
+ <operation name="get_proxy_support_state">
1124
+ <documentation>
1125
+ Gets IPsec IKE peer proxy support states.
1126
+
1127
+ </documentation>
1128
+ <input message="tns:Networking.IPsecIkePeer.get_proxy_support_stateRequest"/>
1129
+ <output message="tns:Networking.IPsecIkePeer.get_proxy_support_stateResponse"/>
1130
+ </operation>
1131
+ <operation name="set_my_certificate_file">
1132
+ <documentation>
1133
+ Sets the name of ssl-crt file object for the certificate file
1134
+ for each of the specified IPsec IKE peers.
1135
+
1136
+ </documentation>
1137
+ <input message="tns:Networking.IPsecIkePeer.set_my_certificate_fileRequest"/>
1138
+ <output message="tns:Networking.IPsecIkePeer.set_my_certificate_fileResponse"/>
1139
+ </operation>
1140
+ <operation name="get_my_certificate_file">
1141
+ <documentation>
1142
+ Gets the name of the ssl-crt file object for the BIG-IP certificate file
1143
+ for each IPsec IKE peer.
1144
+
1145
+ </documentation>
1146
+ <input message="tns:Networking.IPsecIkePeer.get_my_certificate_fileRequest"/>
1147
+ <output message="tns:Networking.IPsecIkePeer.get_my_certificate_fileResponse"/>
1148
+ </operation>
1149
+ <operation name="set_my_certificate_key_file">
1150
+ <documentation>
1151
+ Sets the name of the ssl-key file object for the certificate file
1152
+ for each IPsec IKE peer.
1153
+
1154
+ </documentation>
1155
+ <input message="tns:Networking.IPsecIkePeer.set_my_certificate_key_fileRequest"/>
1156
+ <output message="tns:Networking.IPsecIkePeer.set_my_certificate_key_fileResponse"/>
1157
+ </operation>
1158
+ <operation name="get_my_certificate_key_file">
1159
+ <documentation>
1160
+ Gets the name of the ssl-key file object for the BIG-IP certificate file
1161
+ for each IPsec IKE peer.
1162
+
1163
+ </documentation>
1164
+ <input message="tns:Networking.IPsecIkePeer.get_my_certificate_key_fileRequest"/>
1165
+ <output message="tns:Networking.IPsecIkePeer.get_my_certificate_key_fileResponse"/>
1166
+ </operation>
1167
+ <operation name="set_ca_certificate_file">
1168
+ <documentation>
1169
+ Sets the file object name of the root certificate authority (CA)
1170
+ for each IPsec IKE peer.
1171
+
1172
+ </documentation>
1173
+ <input message="tns:Networking.IPsecIkePeer.set_ca_certificate_fileRequest"/>
1174
+ <output message="tns:Networking.IPsecIkePeer.set_ca_certificate_fileResponse"/>
1175
+ </operation>
1176
+ <operation name="get_ca_certificate_file">
1177
+ <documentation>
1178
+ Gets the file object name of the root certificate authority (CA)
1179
+ for each IPsec IKE peer.
1180
+
1181
+ </documentation>
1182
+ <input message="tns:Networking.IPsecIkePeer.get_ca_certificate_fileRequest"/>
1183
+ <output message="tns:Networking.IPsecIkePeer.get_ca_certificate_fileResponse"/>
1184
+ </operation>
1185
+ <operation name="set_peer_certificate_file">
1186
+ <documentation>
1187
+ Sets the peer certificate file object name. If the peer certificate file
1188
+ is defined, the isakmp daemon ignores the CERT payload from the peer,
1189
+ and uses this certificate as the peer's certificate.
1190
+
1191
+ </documentation>
1192
+ <input message="tns:Networking.IPsecIkePeer.set_peer_certificate_fileRequest"/>
1193
+ <output message="tns:Networking.IPsecIkePeer.set_peer_certificate_fileResponse"/>
1194
+ </operation>
1195
+ <operation name="get_peer_certificate_file">
1196
+ <documentation>
1197
+ Gets the peer certificate file name.
1198
+
1199
+ </documentation>
1200
+ <input message="tns:Networking.IPsecIkePeer.get_peer_certificate_fileRequest"/>
1201
+ <output message="tns:Networking.IPsecIkePeer.get_peer_certificate_fileResponse"/>
1202
+ </operation>
1203
+ <operation name="set_ike_proposal_name">
1204
+ <documentation>
1205
+ Sets the IKE proposal name.
1206
+
1207
+ </documentation>
1208
+ <input message="tns:Networking.IPsecIkePeer.set_ike_proposal_nameRequest"/>
1209
+ <output message="tns:Networking.IPsecIkePeer.set_ike_proposal_nameResponse"/>
1210
+ </operation>
1211
+ <operation name="get_ike_proposal_name">
1212
+ <documentation>
1213
+ Gets the IKE proposal name.
1214
+
1215
+ </documentation>
1216
+ <input message="tns:Networking.IPsecIkePeer.get_ike_proposal_nameRequest"/>
1217
+ <output message="tns:Networking.IPsecIkePeer.get_ike_proposal_nameResponse"/>
1218
+ </operation>
1219
+ <operation name="set_phase1_auth_method">
1220
+ <documentation>
1221
+ Sets the IKE phase 1 authentication method.
1222
+ Defines the authentication method used for
1223
+ the phase 1 negotiation. Possible values are:
1224
+ pre-shared-key and rsa-signature. Use
1225
+ rsa-signature if using X.509 certificates.
1226
+
1227
+ </documentation>
1228
+ <input message="tns:Networking.IPsecIkePeer.set_phase1_auth_methodRequest"/>
1229
+ <output message="tns:Networking.IPsecIkePeer.set_phase1_auth_methodResponse"/>
1230
+ </operation>
1231
+ <operation name="get_phase1_auth_method">
1232
+ <documentation>
1233
+ Gets the IKE phase 1 authentication method.
1234
+
1235
+ </documentation>
1236
+ <input message="tns:Networking.IPsecIkePeer.get_phase1_auth_methodRequest"/>
1237
+ <output message="tns:Networking.IPsecIkePeer.get_phase1_auth_methodResponse"/>
1238
+ </operation>
1239
+ <operation name="set_phase1_hash_algorithm">
1240
+ <documentation>
1241
+ Sets the IKE phase 1 hash algorithm.
1242
+ Defines the hash algorithm used for the isakmp phase 1 negotiation.
1243
+ This directive must be defined. The algorithm should be
1244
+ one of following: md5, sha1, sha256, sha384, sha512.
1245
+
1246
+ </documentation>
1247
+ <input message="tns:Networking.IPsecIkePeer.set_phase1_hash_algorithmRequest"/>
1248
+ <output message="tns:Networking.IPsecIkePeer.set_phase1_hash_algorithmResponse"/>
1249
+ </operation>
1250
+ <operation name="get_phase1_hash_algorithm">
1251
+ <documentation>
1252
+ Gets the IKE phase1 hash algorithm.
1253
+
1254
+ </documentation>
1255
+ <input message="tns:Networking.IPsecIkePeer.get_phase1_hash_algorithmRequest"/>
1256
+ <output message="tns:Networking.IPsecIkePeer.get_phase1_hash_algorithmResponse"/>
1257
+ </operation>
1258
+ <operation name="set_phase1_encryption_algorithm">
1259
+ <documentation>
1260
+ Sets the IKE phase 1 encryption algorithm.
1261
+ Specifies the encryption algorithm used for the isakmp phase 1
1262
+ negotiation. This directive must be defined. Possible value is
1263
+ one of following: des, 3des, blowfish, cast128, aes, camellia.
1264
+
1265
+ </documentation>
1266
+ <input message="tns:Networking.IPsecIkePeer.set_phase1_encryption_algorithmRequest"/>
1267
+ <output message="tns:Networking.IPsecIkePeer.set_phase1_encryption_algorithmResponse"/>
1268
+ </operation>
1269
+ <operation name="get_phase1_encryption_algorithm">
1270
+ <documentation>
1271
+ Gets the IKE phase 1 encryption algorithm.
1272
+
1273
+ </documentation>
1274
+ <input message="tns:Networking.IPsecIkePeer.get_phase1_encryption_algorithmRequest"/>
1275
+ <output message="tns:Networking.IPsecIkePeer.get_phase1_encryption_algorithmResponse"/>
1276
+ </operation>
1277
+ <operation name="set_phase1_perfect_forward_secrecy">
1278
+ <documentation>
1279
+ Sets the IKE phase 1 perfect forward secrecy.
1280
+ Defines the group used for the Diffie-Hellman exponentiations
1281
+ to provide perfect forward secrecy. This directive must be
1282
+ defined. The group is one of following: modp768, modp1024,
1283
+ modp1536, modp2048, modp3072, modp4096, modp6144, modp8192.
1284
+
1285
+ </documentation>
1286
+ <input message="tns:Networking.IPsecIkePeer.set_phase1_perfect_forward_secrecyRequest"/>
1287
+ <output message="tns:Networking.IPsecIkePeer.set_phase1_perfect_forward_secrecyResponse"/>
1288
+ </operation>
1289
+ <operation name="get_phase1_perfect_forward_secrecy">
1290
+ <documentation>
1291
+ Gets the IKE phase 1 perfect forward secrecy.
1292
+
1293
+ </documentation>
1294
+ <input message="tns:Networking.IPsecIkePeer.get_phase1_perfect_forward_secrecyRequest"/>
1295
+ <output message="tns:Networking.IPsecIkePeer.get_phase1_perfect_forward_secrecyResponse"/>
1296
+ </operation>
1297
+ <operation name="set_preshared_key">
1298
+ <documentation>
1299
+ Sets the preshared key for each specified
1300
+ IPsec IKE peer.
1301
+
1302
+ </documentation>
1303
+ <input message="tns:Networking.IPsecIkePeer.set_preshared_keyRequest"/>
1304
+ <output message="tns:Networking.IPsecIkePeer.set_preshared_keyResponse"/>
1305
+ </operation>
1306
+ <operation name="set_preshared_key_encrypted">
1307
+ <documentation>
1308
+ Sets the preshared key (encrypted) for each specified
1309
+ IPsec IKE peer.
1310
+ Requires an already encrypted key.
1311
+
1312
+ </documentation>
1313
+ <input message="tns:Networking.IPsecIkePeer.set_preshared_key_encryptedRequest"/>
1314
+ <output message="tns:Networking.IPsecIkePeer.set_preshared_key_encryptedResponse"/>
1315
+ </operation>
1316
+ <operation name="get_preshared_key_encrypted">
1317
+ <documentation>
1318
+ Gets the preshared key encrypted (if any) for each specified
1319
+ IPsec IKE peer.
1320
+
1321
+ </documentation>
1322
+ <input message="tns:Networking.IPsecIkePeer.get_preshared_key_encryptedRequest"/>
1323
+ <output message="tns:Networking.IPsecIkePeer.get_preshared_key_encryptedResponse"/>
1324
+ </operation>
1325
+ <operation name="set_dpd_delay">
1326
+ <documentation>
1327
+ Sets the IPsec IKE peer DPD delay for a list of IPsec IKE peers.
1328
+
1329
+ </documentation>
1330
+ <input message="tns:Networking.IPsecIkePeer.set_dpd_delayRequest"/>
1331
+ <output message="tns:Networking.IPsecIkePeer.set_dpd_delayResponse"/>
1332
+ </operation>
1333
+ <operation name="get_dpd_delay">
1334
+ <documentation>
1335
+ Gets the IPsec IKE peer DPD delay for a list of IPsec IKE peers.
1336
+
1337
+ </documentation>
1338
+ <input message="tns:Networking.IPsecIkePeer.get_dpd_delayRequest"/>
1339
+ <output message="tns:Networking.IPsecIkePeer.get_dpd_delayResponse"/>
1340
+ </operation>
1341
+ <operation name="set_crl_file">
1342
+ <documentation>
1343
+ Sets the name of the crl file object for each specified IPsec IKE peer.
1344
+
1345
+ </documentation>
1346
+ <input message="tns:Networking.IPsecIkePeer.set_crl_fileRequest"/>
1347
+ <output message="tns:Networking.IPsecIkePeer.set_crl_fileResponse"/>
1348
+ </operation>
1349
+ <operation name="get_crl_file">
1350
+ <documentation>
1351
+ Gets the name of the crl file object for each specified IPsec IKE peer.
1352
+
1353
+ </documentation>
1354
+ <input message="tns:Networking.IPsecIkePeer.get_crl_fileRequest"/>
1355
+ <output message="tns:Networking.IPsecIkePeer.get_crl_fileResponse"/>
1356
+ </operation>
1357
+ <operation name="get_version">
1358
+ <documentation>
1359
+ Gets the version information for this interface.
1360
+
1361
+ </documentation>
1362
+ <input message="tns:Networking.IPsecIkePeer.get_versionRequest"/>
1363
+ <output message="tns:Networking.IPsecIkePeer.get_versionResponse"/>
1364
+ </operation>
1365
+ <operation name="set_replay_window_size">
1366
+ <documentation>
1367
+ Sets the replay window size for each specified IPsec IKE peer.
1368
+ This window will limit the number of out of order IPsec packets
1369
+ that can be received relative to the packet with the highest
1370
+ sequence number that has been authenticated so far. Packets with
1371
+ older sequence numbers that are outside of this range will be rejected.
1372
+ This configuration affects only dynamic negotiated IPsec SAs to the
1373
+ specified IPsec IKE peer. The default value is 64. The valid range
1374
+ is from 4 to 255.
1375
+
1376
+ </documentation>
1377
+ <input message="tns:Networking.IPsecIkePeer.set_replay_window_sizeRequest"/>
1378
+ <output message="tns:Networking.IPsecIkePeer.set_replay_window_sizeResponse"/>
1379
+ </operation>
1380
+ <operation name="get_replay_window_size">
1381
+ <documentation>
1382
+ Gets the replay window size for each specified IPsec IKE peer.
1383
+
1384
+ </documentation>
1385
+ <input message="tns:Networking.IPsecIkePeer.get_replay_window_sizeRequest"/>
1386
+ <output message="tns:Networking.IPsecIkePeer.get_replay_window_sizeResponse"/>
1387
+ </operation>
1388
+ </portType>
1389
+
1390
+ <!-- binding -->
1391
+
1392
+ <binding name="Networking.IPsecIkePeerBinding" type="tns:Networking.IPsecIkePeerPortType">
1393
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
1394
+ <operation name="get_list">
1395
+ <documentation>
1396
+ Gets the names for all IPsec IKE peers.
1397
+
1398
+ </documentation>
1399
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1400
+ <input>
1401
+ <soap:body
1402
+ use="encoded"
1403
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1404
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1405
+ </input>
1406
+ <output>
1407
+ <soap:body
1408
+ use="encoded"
1409
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1410
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1411
+ </output>
1412
+ </operation>
1413
+
1414
+ <operation name="create">
1415
+ <documentation>
1416
+ Creates a set of IPsec IKE peers
1417
+
1418
+ </documentation>
1419
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1420
+ <input>
1421
+ <soap:body
1422
+ use="encoded"
1423
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1424
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1425
+ </input>
1426
+ <output>
1427
+ <soap:body
1428
+ use="encoded"
1429
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1430
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1431
+ </output>
1432
+ </operation>
1433
+
1434
+ <operation name="delete_ike_peer">
1435
+ <documentation>
1436
+ Deletes a set of IPsec IKE peers.
1437
+
1438
+ </documentation>
1439
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1440
+ <input>
1441
+ <soap:body
1442
+ use="encoded"
1443
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1444
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1445
+ </input>
1446
+ <output>
1447
+ <soap:body
1448
+ use="encoded"
1449
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1450
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1451
+ </output>
1452
+ </operation>
1453
+
1454
+ <operation name="delete_all_ike_peers">
1455
+ <documentation>
1456
+ Deletes all IPsec IKE peers.
1457
+
1458
+ </documentation>
1459
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1460
+ <input>
1461
+ <soap:body
1462
+ use="encoded"
1463
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1464
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1465
+ </input>
1466
+ <output>
1467
+ <soap:body
1468
+ use="encoded"
1469
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1470
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1471
+ </output>
1472
+ </operation>
1473
+
1474
+ <operation name="set_description">
1475
+ <documentation>
1476
+ Sets the description for the IPsec IKE peers.
1477
+ This is an arbitrary field which can be used for any purpose.
1478
+
1479
+ </documentation>
1480
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1481
+ <input>
1482
+ <soap:body
1483
+ use="encoded"
1484
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1485
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1486
+ </input>
1487
+ <output>
1488
+ <soap:body
1489
+ use="encoded"
1490
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1491
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1492
+ </output>
1493
+ </operation>
1494
+
1495
+ <operation name="get_description">
1496
+ <documentation>
1497
+ Gets descriprion for each specified IPsec IKE peer.
1498
+
1499
+ </documentation>
1500
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1501
+ <input>
1502
+ <soap:body
1503
+ use="encoded"
1504
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1505
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1506
+ </input>
1507
+ <output>
1508
+ <soap:body
1509
+ use="encoded"
1510
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1511
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1512
+ </output>
1513
+ </operation>
1514
+
1515
+ <operation name="set_mode">
1516
+ <documentation>
1517
+ Sets IPsec IKE peer modes for list of IPsec IKE peers.
1518
+
1519
+ </documentation>
1520
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1521
+ <input>
1522
+ <soap:body
1523
+ use="encoded"
1524
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1525
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1526
+ </input>
1527
+ <output>
1528
+ <soap:body
1529
+ use="encoded"
1530
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1531
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1532
+ </output>
1533
+ </operation>
1534
+
1535
+ <operation name="get_mode">
1536
+ <documentation>
1537
+ Gets IPsec IKE peer modes for a list of IPsec IKE peers.
1538
+
1539
+ </documentation>
1540
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1541
+ <input>
1542
+ <soap:body
1543
+ use="encoded"
1544
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1545
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1546
+ </input>
1547
+ <output>
1548
+ <soap:body
1549
+ use="encoded"
1550
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1551
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1552
+ </output>
1553
+ </operation>
1554
+
1555
+ <operation name="set_remote_address">
1556
+ <documentation>
1557
+ Sets the IPsec IKE peer remote BIG-IP system IP addresses
1558
+ for a list of IPsec IKE peers.
1559
+
1560
+ </documentation>
1561
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1562
+ <input>
1563
+ <soap:body
1564
+ use="encoded"
1565
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1566
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1567
+ </input>
1568
+ <output>
1569
+ <soap:body
1570
+ use="encoded"
1571
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1572
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1573
+ </output>
1574
+ </operation>
1575
+
1576
+ <operation name="get_remote_address">
1577
+ <documentation>
1578
+ Gets the IPsec IKE peer remote IP address for a list of IPsec IKE peers.
1579
+
1580
+ </documentation>
1581
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1582
+ <input>
1583
+ <soap:body
1584
+ use="encoded"
1585
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1587
+ </input>
1588
+ <output>
1589
+ <soap:body
1590
+ use="encoded"
1591
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1592
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1593
+ </output>
1594
+ </operation>
1595
+
1596
+ <operation name="set_lifetime">
1597
+ <documentation>
1598
+ Sets the IPsec IKE peer lifetimes of an IKE security association
1599
+ that will be proposed in the phase 1 negotiation for
1600
+ a list of IPsec IKE peers.
1601
+
1602
+ </documentation>
1603
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1604
+ <input>
1605
+ <soap:body
1606
+ use="encoded"
1607
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1608
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1609
+ </input>
1610
+ <output>
1611
+ <soap:body
1612
+ use="encoded"
1613
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1614
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1615
+ </output>
1616
+ </operation>
1617
+
1618
+ <operation name="get_lifetime">
1619
+ <documentation>
1620
+ Gets the IPsec IKE peer lifetimes of an IKE security association that
1621
+ will be proposed in the phase 1 negotiation for a list of IPsec IKE peers.
1622
+
1623
+ </documentation>
1624
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1625
+ <input>
1626
+ <soap:body
1627
+ use="encoded"
1628
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1629
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1630
+ </input>
1631
+ <output>
1632
+ <soap:body
1633
+ use="encoded"
1634
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1635
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1636
+ </output>
1637
+ </operation>
1638
+
1639
+ <operation name="set_my_id_type">
1640
+ <documentation>
1641
+ Sets the IPsec IKE peer identifier types sent to the remote host
1642
+ to use in the phase 1 negotiation for a list of IPsec IKE peers.
1643
+
1644
+ </documentation>
1645
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1646
+ <input>
1647
+ <soap:body
1648
+ use="encoded"
1649
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1650
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1651
+ </input>
1652
+ <output>
1653
+ <soap:body
1654
+ use="encoded"
1655
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1656
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1657
+ </output>
1658
+ </operation>
1659
+
1660
+ <operation name="get_my_id_type">
1661
+ <documentation>
1662
+ Gets the IPsec IKE peer identifier types sent to the remote host
1663
+ to use in the phase 1 negotiation for a list of IPsec IKE peers.
1664
+
1665
+ </documentation>
1666
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1667
+ <input>
1668
+ <soap:body
1669
+ use="encoded"
1670
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1671
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1672
+ </input>
1673
+ <output>
1674
+ <soap:body
1675
+ use="encoded"
1676
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1677
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1678
+ </output>
1679
+ </operation>
1680
+
1681
+ <operation name="set_my_id_value">
1682
+ <documentation>
1683
+ Sets the IPsec IKE peer identifier values sent to the remote host
1684
+ to use in the phase 1 negotiation for a list of IPsec IKE peers.
1685
+
1686
+ </documentation>
1687
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1688
+ <input>
1689
+ <soap:body
1690
+ use="encoded"
1691
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1692
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1693
+ </input>
1694
+ <output>
1695
+ <soap:body
1696
+ use="encoded"
1697
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1698
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1699
+ </output>
1700
+ </operation>
1701
+
1702
+ <operation name="get_my_id_value">
1703
+ <documentation>
1704
+ Gets the IPsec IKE peer identifier values sent to the remote
1705
+ host to use in the phase 1 negotiation for a list of
1706
+ IPsec IKE peers.
1707
+
1708
+ </documentation>
1709
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1710
+ <input>
1711
+ <soap:body
1712
+ use="encoded"
1713
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1714
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1715
+ </input>
1716
+ <output>
1717
+ <soap:body
1718
+ use="encoded"
1719
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1720
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1721
+ </output>
1722
+ </operation>
1723
+
1724
+ <operation name="set_peer_id_type">
1725
+ <documentation>
1726
+ Sets the peer identifier types that can be used in the phase 1
1727
+ negotiation for a list of IPsec IKE peers.
1728
+
1729
+ </documentation>
1730
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1731
+ <input>
1732
+ <soap:body
1733
+ use="encoded"
1734
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1735
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1736
+ </input>
1737
+ <output>
1738
+ <soap:body
1739
+ use="encoded"
1740
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1741
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1742
+ </output>
1743
+ </operation>
1744
+
1745
+ <operation name="get_peer_id_type">
1746
+ <documentation>
1747
+ Gets the peer identifier types that can be used in the phase 1
1748
+ negotiation for a list of IPsec IKE peers.
1749
+
1750
+ </documentation>
1751
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1752
+ <input>
1753
+ <soap:body
1754
+ use="encoded"
1755
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1756
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1757
+ </input>
1758
+ <output>
1759
+ <soap:body
1760
+ use="encoded"
1761
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1762
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1763
+ </output>
1764
+ </operation>
1765
+
1766
+ <operation name="set_peer_id_value">
1767
+ <documentation>
1768
+ Sets the IPsec IKE peer identifier value to be received
1769
+ for a list of IPsec IKE peers.
1770
+
1771
+ </documentation>
1772
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1773
+ <input>
1774
+ <soap:body
1775
+ use="encoded"
1776
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1777
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1778
+ </input>
1779
+ <output>
1780
+ <soap:body
1781
+ use="encoded"
1782
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1783
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1784
+ </output>
1785
+ </operation>
1786
+
1787
+ <operation name="get_peer_id_value">
1788
+ <documentation>
1789
+ Gets the peer identifier values for a list of IPsec IKE peers.
1790
+
1791
+ </documentation>
1792
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1793
+ <input>
1794
+ <soap:body
1795
+ use="encoded"
1796
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1797
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1798
+ </input>
1799
+ <output>
1800
+ <soap:body
1801
+ use="encoded"
1802
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1803
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1804
+ </output>
1805
+ </operation>
1806
+
1807
+ <operation name="set_passive_state">
1808
+ <documentation>
1809
+ Sets the state to passive for a set of IPsec IKE peers.
1810
+ Set this to enable, if you do not want to be the initiator of
1811
+ the IKE negotiation with this IKE peer.
1812
+
1813
+ </documentation>
1814
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1815
+ <input>
1816
+ <soap:body
1817
+ use="encoded"
1818
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1819
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1820
+ </input>
1821
+ <output>
1822
+ <soap:body
1823
+ use="encoded"
1824
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1825
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1826
+ </output>
1827
+ </operation>
1828
+
1829
+ <operation name="get_passive_state">
1830
+ <documentation>
1831
+ Gets the passive state for a set of IPsec IKE peers.
1832
+
1833
+ </documentation>
1834
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1835
+ <input>
1836
+ <soap:body
1837
+ use="encoded"
1838
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1839
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1840
+ </input>
1841
+ <output>
1842
+ <soap:body
1843
+ use="encoded"
1844
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1845
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1846
+ </output>
1847
+ </operation>
1848
+
1849
+ <operation name="set_verify_certificate_state">
1850
+ <documentation>
1851
+ Sets the IPsec IKE peer state to verify the peer's certificate
1852
+ for a set of IPsec IKE peers.
1853
+
1854
+ </documentation>
1855
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1856
+ <input>
1857
+ <soap:body
1858
+ use="encoded"
1859
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1860
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1861
+ </input>
1862
+ <output>
1863
+ <soap:body
1864
+ use="encoded"
1865
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1866
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1867
+ </output>
1868
+ </operation>
1869
+
1870
+ <operation name="get_verify_certificate_state">
1871
+ <documentation>
1872
+ Gets the IPsec IKE peer state of verify_certificate for
1873
+ a set of IPsec IKE peers.
1874
+
1875
+ </documentation>
1876
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1877
+ <input>
1878
+ <soap:body
1879
+ use="encoded"
1880
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1881
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1882
+ </input>
1883
+ <output>
1884
+ <soap:body
1885
+ use="encoded"
1886
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1887
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1888
+ </output>
1889
+ </operation>
1890
+
1891
+ <operation name="set_certificate_type">
1892
+ <documentation>
1893
+ Sets the IPsec IKE peer certificate types for a list of IPsec IKE peers.
1894
+
1895
+ </documentation>
1896
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1897
+ <input>
1898
+ <soap:body
1899
+ use="encoded"
1900
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1901
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1902
+ </input>
1903
+ <output>
1904
+ <soap:body
1905
+ use="encoded"
1906
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1907
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1908
+ </output>
1909
+ </operation>
1910
+
1911
+ <operation name="get_certificate_type">
1912
+ <documentation>
1913
+ Gets the IPsec IKE peer certification types for a list of IPsec IKE peers.
1914
+
1915
+ </documentation>
1916
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1917
+ <input>
1918
+ <soap:body
1919
+ use="encoded"
1920
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1921
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1922
+ </input>
1923
+ <output>
1924
+ <soap:body
1925
+ use="encoded"
1926
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1927
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1928
+ </output>
1929
+ </operation>
1930
+
1931
+ <operation name="set_generate_policy">
1932
+ <documentation>
1933
+ Sets the IPsec IKE peer generate policy option.
1934
+
1935
+ </documentation>
1936
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1937
+ <input>
1938
+ <soap:body
1939
+ use="encoded"
1940
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1941
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1942
+ </input>
1943
+ <output>
1944
+ <soap:body
1945
+ use="encoded"
1946
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1947
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1948
+ </output>
1949
+ </operation>
1950
+
1951
+ <operation name="get_generate_policy">
1952
+ <documentation>
1953
+ Gets the IPsec IKE peer generate policy option.
1954
+
1955
+ </documentation>
1956
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1957
+ <input>
1958
+ <soap:body
1959
+ use="encoded"
1960
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1961
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1962
+ </input>
1963
+ <output>
1964
+ <soap:body
1965
+ use="encoded"
1966
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1967
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1968
+ </output>
1969
+ </operation>
1970
+
1971
+ <operation name="set_nat_traversal">
1972
+ <documentation>
1973
+ Sets the IPsec IKE peer NAT traversal option.
1974
+
1975
+ </documentation>
1976
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1977
+ <input>
1978
+ <soap:body
1979
+ use="encoded"
1980
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1981
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1982
+ </input>
1983
+ <output>
1984
+ <soap:body
1985
+ use="encoded"
1986
+ namespace="urn:iControl:Networking/IPsecIkePeer"
1987
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
1988
+ </output>
1989
+ </operation>
1990
+
1991
+ <operation name="get_nat_traversal">
1992
+ <documentation>
1993
+ Gets the IPsec IKE peer NAT traversal option.
1994
+
1995
+ </documentation>
1996
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
1997
+ <input>
1998
+ <soap:body
1999
+ use="encoded"
2000
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2001
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2002
+ </input>
2003
+ <output>
2004
+ <soap:body
2005
+ use="encoded"
2006
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2007
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2008
+ </output>
2009
+ </operation>
2010
+
2011
+ <operation name="set_enabled_state">
2012
+ <documentation>
2013
+ Sets the IPsec IKE peer state to enable or disable. If you set the state
2014
+ to disable, the IKE peer is completely disabled.
2015
+
2016
+ </documentation>
2017
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2018
+ <input>
2019
+ <soap:body
2020
+ use="encoded"
2021
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2022
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2023
+ </input>
2024
+ <output>
2025
+ <soap:body
2026
+ use="encoded"
2027
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2028
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2029
+ </output>
2030
+ </operation>
2031
+
2032
+ <operation name="get_enabled_state">
2033
+ <documentation>
2034
+ Gets the IPsec IKE peer state.
2035
+
2036
+ </documentation>
2037
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2038
+ <input>
2039
+ <soap:body
2040
+ use="encoded"
2041
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2042
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2043
+ </input>
2044
+ <output>
2045
+ <soap:body
2046
+ use="encoded"
2047
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2048
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2049
+ </output>
2050
+ </operation>
2051
+
2052
+ <operation name="set_proxy_support_state">
2053
+ <documentation>
2054
+ Sets the IPsec IKE peer proxy support to enable or disable.
2055
+ Setting proxy support to enable gives the IKE peer the
2056
+ ability to work over a proxy.
2057
+
2058
+ </documentation>
2059
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2060
+ <input>
2061
+ <soap:body
2062
+ use="encoded"
2063
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2064
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2065
+ </input>
2066
+ <output>
2067
+ <soap:body
2068
+ use="encoded"
2069
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2070
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2071
+ </output>
2072
+ </operation>
2073
+
2074
+ <operation name="get_proxy_support_state">
2075
+ <documentation>
2076
+ Gets IPsec IKE peer proxy support states.
2077
+
2078
+ </documentation>
2079
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2080
+ <input>
2081
+ <soap:body
2082
+ use="encoded"
2083
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2084
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2085
+ </input>
2086
+ <output>
2087
+ <soap:body
2088
+ use="encoded"
2089
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2090
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2091
+ </output>
2092
+ </operation>
2093
+
2094
+ <operation name="set_my_certificate_file">
2095
+ <documentation>
2096
+ Sets the name of ssl-crt file object for the certificate file
2097
+ for each of the specified IPsec IKE peers.
2098
+
2099
+ </documentation>
2100
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2101
+ <input>
2102
+ <soap:body
2103
+ use="encoded"
2104
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2105
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2106
+ </input>
2107
+ <output>
2108
+ <soap:body
2109
+ use="encoded"
2110
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2111
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2112
+ </output>
2113
+ </operation>
2114
+
2115
+ <operation name="get_my_certificate_file">
2116
+ <documentation>
2117
+ Gets the name of the ssl-crt file object for the BIG-IP certificate file
2118
+ for each IPsec IKE peer.
2119
+
2120
+ </documentation>
2121
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2122
+ <input>
2123
+ <soap:body
2124
+ use="encoded"
2125
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2126
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2127
+ </input>
2128
+ <output>
2129
+ <soap:body
2130
+ use="encoded"
2131
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2132
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2133
+ </output>
2134
+ </operation>
2135
+
2136
+ <operation name="set_my_certificate_key_file">
2137
+ <documentation>
2138
+ Sets the name of the ssl-key file object for the certificate file
2139
+ for each IPsec IKE peer.
2140
+
2141
+ </documentation>
2142
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2143
+ <input>
2144
+ <soap:body
2145
+ use="encoded"
2146
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2147
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2148
+ </input>
2149
+ <output>
2150
+ <soap:body
2151
+ use="encoded"
2152
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2153
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2154
+ </output>
2155
+ </operation>
2156
+
2157
+ <operation name="get_my_certificate_key_file">
2158
+ <documentation>
2159
+ Gets the name of the ssl-key file object for the BIG-IP certificate file
2160
+ for each IPsec IKE peer.
2161
+
2162
+ </documentation>
2163
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2164
+ <input>
2165
+ <soap:body
2166
+ use="encoded"
2167
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2168
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2169
+ </input>
2170
+ <output>
2171
+ <soap:body
2172
+ use="encoded"
2173
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2174
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2175
+ </output>
2176
+ </operation>
2177
+
2178
+ <operation name="set_ca_certificate_file">
2179
+ <documentation>
2180
+ Sets the file object name of the root certificate authority (CA)
2181
+ for each IPsec IKE peer.
2182
+
2183
+ </documentation>
2184
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2185
+ <input>
2186
+ <soap:body
2187
+ use="encoded"
2188
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2189
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2190
+ </input>
2191
+ <output>
2192
+ <soap:body
2193
+ use="encoded"
2194
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2195
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2196
+ </output>
2197
+ </operation>
2198
+
2199
+ <operation name="get_ca_certificate_file">
2200
+ <documentation>
2201
+ Gets the file object name of the root certificate authority (CA)
2202
+ for each IPsec IKE peer.
2203
+
2204
+ </documentation>
2205
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2206
+ <input>
2207
+ <soap:body
2208
+ use="encoded"
2209
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2210
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2211
+ </input>
2212
+ <output>
2213
+ <soap:body
2214
+ use="encoded"
2215
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2216
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2217
+ </output>
2218
+ </operation>
2219
+
2220
+ <operation name="set_peer_certificate_file">
2221
+ <documentation>
2222
+ Sets the peer certificate file object name. If the peer certificate file
2223
+ is defined, the isakmp daemon ignores the CERT payload from the peer,
2224
+ and uses this certificate as the peer's certificate.
2225
+
2226
+ </documentation>
2227
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2228
+ <input>
2229
+ <soap:body
2230
+ use="encoded"
2231
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2232
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2233
+ </input>
2234
+ <output>
2235
+ <soap:body
2236
+ use="encoded"
2237
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2238
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2239
+ </output>
2240
+ </operation>
2241
+
2242
+ <operation name="get_peer_certificate_file">
2243
+ <documentation>
2244
+ Gets the peer certificate file name.
2245
+
2246
+ </documentation>
2247
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2248
+ <input>
2249
+ <soap:body
2250
+ use="encoded"
2251
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2252
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2253
+ </input>
2254
+ <output>
2255
+ <soap:body
2256
+ use="encoded"
2257
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2258
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2259
+ </output>
2260
+ </operation>
2261
+
2262
+ <operation name="set_ike_proposal_name">
2263
+ <documentation>
2264
+ Sets the IKE proposal name.
2265
+
2266
+ </documentation>
2267
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2268
+ <input>
2269
+ <soap:body
2270
+ use="encoded"
2271
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2272
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2273
+ </input>
2274
+ <output>
2275
+ <soap:body
2276
+ use="encoded"
2277
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2278
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2279
+ </output>
2280
+ </operation>
2281
+
2282
+ <operation name="get_ike_proposal_name">
2283
+ <documentation>
2284
+ Gets the IKE proposal name.
2285
+
2286
+ </documentation>
2287
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2288
+ <input>
2289
+ <soap:body
2290
+ use="encoded"
2291
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2292
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2293
+ </input>
2294
+ <output>
2295
+ <soap:body
2296
+ use="encoded"
2297
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2298
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2299
+ </output>
2300
+ </operation>
2301
+
2302
+ <operation name="set_phase1_auth_method">
2303
+ <documentation>
2304
+ Sets the IKE phase 1 authentication method.
2305
+ Defines the authentication method used for
2306
+ the phase 1 negotiation. Possible values are:
2307
+ pre-shared-key and rsa-signature. Use
2308
+ rsa-signature if using X.509 certificates.
2309
+
2310
+ </documentation>
2311
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2312
+ <input>
2313
+ <soap:body
2314
+ use="encoded"
2315
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2316
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2317
+ </input>
2318
+ <output>
2319
+ <soap:body
2320
+ use="encoded"
2321
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2322
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2323
+ </output>
2324
+ </operation>
2325
+
2326
+ <operation name="get_phase1_auth_method">
2327
+ <documentation>
2328
+ Gets the IKE phase 1 authentication method.
2329
+
2330
+ </documentation>
2331
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2332
+ <input>
2333
+ <soap:body
2334
+ use="encoded"
2335
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2336
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2337
+ </input>
2338
+ <output>
2339
+ <soap:body
2340
+ use="encoded"
2341
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2342
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2343
+ </output>
2344
+ </operation>
2345
+
2346
+ <operation name="set_phase1_hash_algorithm">
2347
+ <documentation>
2348
+ Sets the IKE phase 1 hash algorithm.
2349
+ Defines the hash algorithm used for the isakmp phase 1 negotiation.
2350
+ This directive must be defined. The algorithm should be
2351
+ one of following: md5, sha1, sha256, sha384, sha512.
2352
+
2353
+ </documentation>
2354
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2355
+ <input>
2356
+ <soap:body
2357
+ use="encoded"
2358
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2359
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2360
+ </input>
2361
+ <output>
2362
+ <soap:body
2363
+ use="encoded"
2364
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2365
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2366
+ </output>
2367
+ </operation>
2368
+
2369
+ <operation name="get_phase1_hash_algorithm">
2370
+ <documentation>
2371
+ Gets the IKE phase1 hash algorithm.
2372
+
2373
+ </documentation>
2374
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2375
+ <input>
2376
+ <soap:body
2377
+ use="encoded"
2378
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2379
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2380
+ </input>
2381
+ <output>
2382
+ <soap:body
2383
+ use="encoded"
2384
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2385
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2386
+ </output>
2387
+ </operation>
2388
+
2389
+ <operation name="set_phase1_encryption_algorithm">
2390
+ <documentation>
2391
+ Sets the IKE phase 1 encryption algorithm.
2392
+ Specifies the encryption algorithm used for the isakmp phase 1
2393
+ negotiation. This directive must be defined. Possible value is
2394
+ one of following: des, 3des, blowfish, cast128, aes, camellia.
2395
+
2396
+ </documentation>
2397
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2398
+ <input>
2399
+ <soap:body
2400
+ use="encoded"
2401
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2402
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2403
+ </input>
2404
+ <output>
2405
+ <soap:body
2406
+ use="encoded"
2407
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2408
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2409
+ </output>
2410
+ </operation>
2411
+
2412
+ <operation name="get_phase1_encryption_algorithm">
2413
+ <documentation>
2414
+ Gets the IKE phase 1 encryption algorithm.
2415
+
2416
+ </documentation>
2417
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2418
+ <input>
2419
+ <soap:body
2420
+ use="encoded"
2421
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2422
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2423
+ </input>
2424
+ <output>
2425
+ <soap:body
2426
+ use="encoded"
2427
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2428
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2429
+ </output>
2430
+ </operation>
2431
+
2432
+ <operation name="set_phase1_perfect_forward_secrecy">
2433
+ <documentation>
2434
+ Sets the IKE phase 1 perfect forward secrecy.
2435
+ Defines the group used for the Diffie-Hellman exponentiations
2436
+ to provide perfect forward secrecy. This directive must be
2437
+ defined. The group is one of following: modp768, modp1024,
2438
+ modp1536, modp2048, modp3072, modp4096, modp6144, modp8192.
2439
+
2440
+ </documentation>
2441
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2442
+ <input>
2443
+ <soap:body
2444
+ use="encoded"
2445
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2446
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2447
+ </input>
2448
+ <output>
2449
+ <soap:body
2450
+ use="encoded"
2451
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2452
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2453
+ </output>
2454
+ </operation>
2455
+
2456
+ <operation name="get_phase1_perfect_forward_secrecy">
2457
+ <documentation>
2458
+ Gets the IKE phase 1 perfect forward secrecy.
2459
+
2460
+ </documentation>
2461
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2462
+ <input>
2463
+ <soap:body
2464
+ use="encoded"
2465
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2466
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2467
+ </input>
2468
+ <output>
2469
+ <soap:body
2470
+ use="encoded"
2471
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2472
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2473
+ </output>
2474
+ </operation>
2475
+
2476
+ <operation name="set_preshared_key">
2477
+ <documentation>
2478
+ Sets the preshared key for each specified
2479
+ IPsec IKE peer.
2480
+
2481
+ </documentation>
2482
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2483
+ <input>
2484
+ <soap:body
2485
+ use="encoded"
2486
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2487
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2488
+ </input>
2489
+ <output>
2490
+ <soap:body
2491
+ use="encoded"
2492
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2493
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2494
+ </output>
2495
+ </operation>
2496
+
2497
+ <operation name="set_preshared_key_encrypted">
2498
+ <documentation>
2499
+ Sets the preshared key (encrypted) for each specified
2500
+ IPsec IKE peer.
2501
+ Requires an already encrypted key.
2502
+
2503
+ </documentation>
2504
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2505
+ <input>
2506
+ <soap:body
2507
+ use="encoded"
2508
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2509
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2510
+ </input>
2511
+ <output>
2512
+ <soap:body
2513
+ use="encoded"
2514
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2515
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2516
+ </output>
2517
+ </operation>
2518
+
2519
+ <operation name="get_preshared_key_encrypted">
2520
+ <documentation>
2521
+ Gets the preshared key encrypted (if any) for each specified
2522
+ IPsec IKE peer.
2523
+
2524
+ </documentation>
2525
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2526
+ <input>
2527
+ <soap:body
2528
+ use="encoded"
2529
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2530
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2531
+ </input>
2532
+ <output>
2533
+ <soap:body
2534
+ use="encoded"
2535
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2536
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2537
+ </output>
2538
+ </operation>
2539
+
2540
+ <operation name="set_dpd_delay">
2541
+ <documentation>
2542
+ Sets the IPsec IKE peer DPD delay for a list of IPsec IKE peers.
2543
+
2544
+ </documentation>
2545
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2546
+ <input>
2547
+ <soap:body
2548
+ use="encoded"
2549
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2550
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2551
+ </input>
2552
+ <output>
2553
+ <soap:body
2554
+ use="encoded"
2555
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2556
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2557
+ </output>
2558
+ </operation>
2559
+
2560
+ <operation name="get_dpd_delay">
2561
+ <documentation>
2562
+ Gets the IPsec IKE peer DPD delay for a list of IPsec IKE peers.
2563
+
2564
+ </documentation>
2565
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2566
+ <input>
2567
+ <soap:body
2568
+ use="encoded"
2569
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2570
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2571
+ </input>
2572
+ <output>
2573
+ <soap:body
2574
+ use="encoded"
2575
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2576
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2577
+ </output>
2578
+ </operation>
2579
+
2580
+ <operation name="set_crl_file">
2581
+ <documentation>
2582
+ Sets the name of the crl file object for each specified IPsec IKE peer.
2583
+
2584
+ </documentation>
2585
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2586
+ <input>
2587
+ <soap:body
2588
+ use="encoded"
2589
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2590
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2591
+ </input>
2592
+ <output>
2593
+ <soap:body
2594
+ use="encoded"
2595
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2596
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2597
+ </output>
2598
+ </operation>
2599
+
2600
+ <operation name="get_crl_file">
2601
+ <documentation>
2602
+ Gets the name of the crl file object for each specified IPsec IKE peer.
2603
+
2604
+ </documentation>
2605
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2606
+ <input>
2607
+ <soap:body
2608
+ use="encoded"
2609
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2610
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2611
+ </input>
2612
+ <output>
2613
+ <soap:body
2614
+ use="encoded"
2615
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2616
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2617
+ </output>
2618
+ </operation>
2619
+
2620
+ <operation name="get_version">
2621
+ <documentation>
2622
+ Gets the version information for this interface.
2623
+
2624
+ </documentation>
2625
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2626
+ <input>
2627
+ <soap:body
2628
+ use="encoded"
2629
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2630
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2631
+ </input>
2632
+ <output>
2633
+ <soap:body
2634
+ use="encoded"
2635
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2636
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2637
+ </output>
2638
+ </operation>
2639
+
2640
+ <operation name="set_replay_window_size">
2641
+ <documentation>
2642
+ Sets the replay window size for each specified IPsec IKE peer.
2643
+ This window will limit the number of out of order IPsec packets
2644
+ that can be received relative to the packet with the highest
2645
+ sequence number that has been authenticated so far. Packets with
2646
+ older sequence numbers that are outside of this range will be rejected.
2647
+ This configuration affects only dynamic negotiated IPsec SAs to the
2648
+ specified IPsec IKE peer. The default value is 64. The valid range
2649
+ is from 4 to 255.
2650
+
2651
+ </documentation>
2652
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2653
+ <input>
2654
+ <soap:body
2655
+ use="encoded"
2656
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2657
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2658
+ </input>
2659
+ <output>
2660
+ <soap:body
2661
+ use="encoded"
2662
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2663
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2664
+ </output>
2665
+ </operation>
2666
+
2667
+ <operation name="get_replay_window_size">
2668
+ <documentation>
2669
+ Gets the replay window size for each specified IPsec IKE peer.
2670
+
2671
+ </documentation>
2672
+ <soap:operation soapAction="urn:iControl:Networking/IPsecIkePeer"/>
2673
+ <input>
2674
+ <soap:body
2675
+ use="encoded"
2676
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2677
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2678
+ </input>
2679
+ <output>
2680
+ <soap:body
2681
+ use="encoded"
2682
+ namespace="urn:iControl:Networking/IPsecIkePeer"
2683
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
2684
+ </output>
2685
+ </operation>
2686
+ </binding>
2687
+
2688
+ <!-- service -->
2689
+
2690
+ <service name="Networking.IPsecIkePeer">
2691
+ <documentation>
2692
+ This interface configures the IPsec Protocol suite for securing
2693
+ Internet Protocol (IP) communications by authenticating and
2694
+ encrypting each IP packet of a communication session.
2695
+
2696
+ </documentation>
2697
+ <port name="Networking.IPsecIkePeerPort" binding="tns:Networking.IPsecIkePeerBinding">
2698
+ <soap:address location="https://url_to_service"/>
2699
+ </port>
2700
+ </service>
2701
+ </definitions>