1-- ***************************************************************** 2-- CISCO-CDSTV-INGESTMGR-MIB: Cisco CDS-TV Ingest Manager Configuration 3-- Management Information Base 4-- 5-- April 2010, Rajat Ahuja. 6-- 7-- Copyright (c) 2010 by Cisco Systems, Inc. 8-- 9-- All rights reserved. 10-- 11-- ***************************************************************** 12 13CISCO-CDSTV-INGESTMGR-MIB DEFINITIONS ::= BEGIN 14 15IMPORTS 16 MODULE-IDENTITY, 17 OBJECT-TYPE, 18 Unsigned32 19 FROM SNMPv2-SMI 20 MODULE-COMPLIANCE, 21 OBJECT-GROUP 22 FROM SNMPv2-CONF 23 InetPortNumber, 24 InetAddressType, 25 InetAddress 26 FROM INET-ADDRESS-MIB 27 TruthValue 28 FROM SNMPv2-TC 29 CiscoURLString, 30 CiscoURLStringOrEmpty, 31 TimeIntervalSec, 32 TimeIntervalMin 33 FROM CISCO-TC 34 ciscoMgmt 35 FROM CISCO-SMI; 36 37 38ciscoCdstvIngestmgrMIB MODULE-IDENTITY 39 LAST-UPDATED "201005270000Z" 40 ORGANIZATION "Cisco Systems, Inc." 41 CONTACT-INFO 42 "Cisco Systems 43 Customer Service 44 45 Postal: 170 W Tasman Drive 46 San Jose, CA 95134 47 USA 48 49 Tel: +1 800 553-NETS 50 51 E-mail: cs-cds@cisco.com" 52 DESCRIPTION 53 "This MIB module defines ingest manager configuration objects 54 that faciliate the management of the Cisco Content Delivery 55 System for TV (CDS-TV) product family. 56 57 CDS-TV is a suite of products and software applications 58 providing ingest, storage, caching, streaming, playout and 59 on-demand delivery of video to television or set-top-box 60 clients. 61 62 Abbreviations: 63 64 CCP Cache Control Protocol 65 CDS Content Delivery System 66 CORBA Common Object Request Broker Architecture 67 ISA Interactive Services Architecture 68 ISV Integrated Streamer-Vault 69 FSI File Service Interface 70 FTP File Transfer Protocol 71 MPEG Motion Picture Experts Group 72 MSA Managed Services Architecture 73 RTSP Real-Time Streaming Protocol 74 STB Set-Top Box 75 76 Common terms: 77 78 Catcher: Device responsible for receiving content (typically via 79 satellite dishes and antennae) from content providers or from a 80 Headend-In-The-Sky. 81 82 Content Ingest: Acquisition of content from a source such as a 83 catcher or an FTP server for storing it locally and making it 84 available to streamers as needed. 85 86 Ingest Manager: CDS module that takes care of provisioned 87 content objects by collecting metadata, sending messages to the 88 appropriate subsystem to ingest the content, and sending 89 messages to expire the content when the expiration period has 90 passed. 91 92 Device Roles: 93 94 Vault: Content delivery application responsible for ingesting 95 and storing video content and making it available to streamers 96 and/or caching nodes. 97 98 Caching Nodes: Content delivery application responsible for 99 caching content from vault (using CCP) and then streaming 100 content out to streamers over HTTP or CCP. 101 102 Streamer: Content delivery application responsible for streaming 103 video out to STB's. 104 105 ISV: Content delivery application capable of acting as both a 106 vault and as a streamer in a single device." 107 REVISION "201005270000Z" 108 DESCRIPTION 109 "Initial version of this MIB module." 110 ::= { ciscoMgmt 739 } 111 112 113-- Textual Conventions definition will be defined before this line 114 115ciscoCdstvIngestMgrMIBNotifs OBJECT IDENTIFIER 116 ::= { ciscoCdstvIngestmgrMIB 0 } 117 118ciscoCdstvIngestMgrMIBObjects OBJECT IDENTIFIER 119 ::= { ciscoCdstvIngestmgrMIB 1 } 120 121ciscoCdstvIngestMgrMIBConform OBJECT IDENTIFIER 122 ::= { ciscoCdstvIngestmgrMIB 2 } 123 124ciscoCdstvIngestMgrMIBCompliances OBJECT IDENTIFIER 125 ::= { ciscoCdstvIngestMgrMIBConform 1 } 126 127-- Ingest Manager General Settings 128 129cdstvIngestMgrGeneralSettings OBJECT IDENTIFIER 130 ::= { ciscoCdstvIngestMgrMIBObjects 1 } 131 132-- Ingest Manager Ingest Settings 133 134cdstvIngestMgrIngestSettings OBJECT IDENTIFIER 135 ::= { ciscoCdstvIngestMgrMIBObjects 2 } 136 137-- Ingest Manager Back-office Settings 138 139cdstvIngestMgrBackOfficeSettings OBJECT IDENTIFIER 140 ::= { ciscoCdstvIngestMgrMIBObjects 3 } 141 142-- Ingest Manager Content Store Settings 143 144cdstvIngestMgrContentStoreSettings OBJECT IDENTIFIER 145 ::= { ciscoCdstvIngestMgrMIBObjects 4 } 146 147-- Ingest Manager Encryption Settings 148 149cdstvIngestMgrEncryptionSettings OBJECT IDENTIFIER 150 ::= { ciscoCdstvIngestMgrMIBObjects 5 } 151 152 153cdstvIngestMgrHostAddressType OBJECT-TYPE 154 SYNTAX InetAddressType 155 MAX-ACCESS read-write 156 STATUS current 157 DESCRIPTION 158 "This object specifies the type of the IP address (specified by 159 cdstvIngestMgrHostAddress) of the Ingest Manager." 160 ::= { cdstvIngestMgrGeneralSettings 1 } 161 162cdstvIngestMgrHostAddress OBJECT-TYPE 163 SYNTAX InetAddress 164 MAX-ACCESS read-write 165 STATUS current 166 DESCRIPTION 167 "This object specifies the IP address of the Ingest Manager. The 168 type of this address is specified by 169 cdstvIngestMgrHostAddressType." 170 ::= { cdstvIngestMgrGeneralSettings 2 } 171 172cdstvIngestMgrPort OBJECT-TYPE 173 SYNTAX InetPortNumber (0..65535) 174 MAX-ACCESS read-write 175 STATUS current 176 DESCRIPTION 177 "This object specifies the port number to use for listening for 178 inbound connections." 179 ::= { cdstvIngestMgrGeneralSettings 3 } 180 181cdstvIngestMgrFsiCallbackPort OBJECT-TYPE 182 SYNTAX InetPortNumber (0..65535) 183 MAX-ACCESS read-write 184 STATUS current 185 DESCRIPTION 186 "This object specifies the port number to use for File Services 187 Interface (FSI) callbacks." 188 ::= { cdstvIngestMgrGeneralSettings 4 } 189 190cdstvIngestMgrAdditionalPackageWindow OBJECT-TYPE 191 SYNTAX Unsigned32 192 UNITS "days" 193 MAX-ACCESS read-write 194 STATUS current 195 DESCRIPTION 196 "This object specifies the additional amount of time to wait 197 once the package expiration window has ended before 198 destroying the stored content package. Typically, when the 199 package expiration window ends, the ingested content package is 200 destroyed from the device. The additional package window adds a 201 grace period to the expiration window." 202 ::= { cdstvIngestMgrGeneralSettings 5 } 203 204cdstvIngestMgrFtpTimeout OBJECT-TYPE 205 SYNTAX TimeIntervalSec 206 MAX-ACCESS read-write 207 STATUS current 208 DESCRIPTION 209 "This object specifies the maximum period the Ingest Manager 210 waits before timing out an FTP session and terminating 211 the process." 212 ::= { cdstvIngestMgrGeneralSettings 6 } 213 214cdstvIngestMgrUseAssetIdEnable OBJECT-TYPE 215 SYNTAX TruthValue 216 MAX-ACCESS read-write 217 STATUS current 218 DESCRIPTION 219 "This object specifies whether to use the Asset ID (a unique ID 220 assigned to each content ingested into the CDS) for the content 221 name. 222 'true' indicates that Asset ID is used for the content name. 223 'false' indicates Asset ID is not used for the content name." 224 ::= { cdstvIngestMgrGeneralSettings 7 } 225 226cdstvIngestMgrManageCorbaServices OBJECT-TYPE 227 SYNTAX TruthValue 228 MAX-ACCESS read-write 229 STATUS current 230 DESCRIPTION 231 "This object specifies whether the CDS manages the CORBA 232 services. 233 'true' indicates that CDS manages CORBA services. 234 'false' indicates that CDS does not manage CORBA services." 235 ::= { cdstvIngestMgrGeneralSettings 8 } 236 237cdstvIngestMgrRequireNotifyService OBJECT-TYPE 238 SYNTAX TruthValue 239 MAX-ACCESS read-write 240 STATUS current 241 DESCRIPTION 242 "This object specifies whether the CDS requires the use of ISA 243 Notify Service. 244 'true' indicates that CDS requires the use of ISA Notify 245 Service. 246 'false' indicates that CDS does not require the use of ISA 247 Notify Service." 248 ::= { cdstvIngestMgrGeneralSettings 9 } 249 250cdstvIngestMgrDebugLevel OBJECT-TYPE 251 SYNTAX INTEGER { 252 errors(1), 253 all(2), 254 off(3) 255 } 256 MAX-ACCESS read-write 257 STATUS current 258 DESCRIPTION 259 "This object specifies the amount of debugging information 260 logged. 261 errors(1) - Only error messages are logged. 262 all(2) - Errors, warnings and success message are all logged. 263 off(3) - Debugging is disabled." 264 ::= { cdstvIngestMgrGeneralSettings 10 } 265 266cdstvIngestMgrMetaDataPublish OBJECT-TYPE 267 SYNTAX TruthValue 268 MAX-ACCESS read-write 269 STATUS current 270 DESCRIPTION 271 "This object specifies whether content metadata is published or 272 not. 273 'true' indicates that content metadata is published. 274 'false' indicates that content metadata is not published." 275 ::= { cdstvIngestMgrGeneralSettings 11 } 276 277cdstvIngestMgrMetaPublishUrl OBJECT-TYPE 278 SYNTAX CiscoURLString 279 MAX-ACCESS read-write 280 STATUS current 281 DESCRIPTION 282 "This object specifies the URL where the metadata is published, 283 typically the back-office." 284 ::= { cdstvIngestMgrGeneralSettings 12 } 285 286cdstvIngestMgrMetaPublishBackupUrl OBJECT-TYPE 287 SYNTAX CiscoURLStringOrEmpty 288 MAX-ACCESS read-write 289 STATUS current 290 DESCRIPTION 291 "This object specifies the URL of the backup server where the 292 metadata is published. This string is empty if a backup server 293 URL is not configured." 294 ::= { cdstvIngestMgrGeneralSettings 13 } 295 296cdstvIngestMgrIngestInterface OBJECT-TYPE 297 SYNTAX BITS { 298 isa(0), 299 ciscoSoap(1), 300 prodisSoap(2) 301 } 302 MAX-ACCESS read-write 303 STATUS current 304 DESCRIPTION 305 "This object specifies all ingest interfaces (methods) 306 available, i.e. ISA, Cisco SOAP, Prodis SOAP or any combination 307 of the three. 308 isa(0) - ISA. 309 ciscoSoap(1) - Cisco SOAP 310 prodisSoap(2) - Prodis SOAP." 311 ::= { cdstvIngestMgrIngestSettings 1 } 312 313cdstvIngestMgrCiscoSoapUrl OBJECT-TYPE 314 SYNTAX CiscoURLStringOrEmpty 315 MAX-ACCESS read-write 316 STATUS current 317 DESCRIPTION 318 "This object specifies the URL (IP address, port, and directory) 319 on the Vault used to receive content using the Cisco SOAP 320 (Simple Object Access Protocol). An example of the Cisco SOAP 321 URL is http://10.22.216.251:8793/CiscoAIM. This string is empty 322 if Cisco SOAP is not used." 323 ::= { cdstvIngestMgrIngestSettings 2 } 324 325cdstvIngestMgrProdisSoapUrl OBJECT-TYPE 326 SYNTAX CiscoURLStringOrEmpty 327 MAX-ACCESS read-write 328 STATUS current 329 DESCRIPTION 330 "This object specifies the URL (IP address, port, and directory) 331 on the Vault used to receive content using the Prodis 332 SOAP(Simple Object Access Protocol). An example of the Prodis 333 SOAP URL is http://10.22.216.251:8793/ProdisAIM. This string is 334 empty if Prodis SOAP is not used." 335 ::= { cdstvIngestMgrIngestSettings 3 } 336 337cdstvIngestMgrBackOfficeMaxRetries OBJECT-TYPE 338 SYNTAX Unsigned32 (0..1000) 339 MAX-ACCESS read-write 340 STATUS current 341 DESCRIPTION 342 "This object specifies the maximum number of times to retry a 343 failed communication with the back-office." 344 ::= { cdstvIngestMgrBackOfficeSettings 1 } 345 346cdstvIngestMgrBackOfficeRetryInterval OBJECT-TYPE 347 SYNTAX TimeIntervalMin 348 MAX-ACCESS read-write 349 STATUS current 350 DESCRIPTION 351 "This object specifies the amount of time to wait before 352 retrying a failed communication with the back-office." 353 ::= { cdstvIngestMgrBackOfficeSettings 2 } 354 355cdstvIngestMgrBackOfficeTimeout OBJECT-TYPE 356 SYNTAX TimeIntervalSec 357 MAX-ACCESS read-write 358 STATUS current 359 DESCRIPTION 360 "This object specifies the amount of time to wait for the 361 back-office to respond to a communication attempt." 362 ::= { cdstvIngestMgrBackOfficeSettings 3 } 363 364cdstvIngestMgrBackOfficeTable OBJECT-TYPE 365 SYNTAX SEQUENCE OF CdstvIngestMgrBackOfficeEntry 366 MAX-ACCESS not-accessible 367 STATUS current 368 DESCRIPTION 369 "A table containing the back-office type and URL 370 settings." 371 ::= { cdstvIngestMgrBackOfficeSettings 4 } 372 373cdstvIngestMgrBackOfficeEntry OBJECT-TYPE 374 SYNTAX CdstvIngestMgrBackOfficeEntry 375 MAX-ACCESS not-accessible 376 STATUS current 377 DESCRIPTION 378 "An entry (conceptual row) in the table of back-office type and 379 URL settings. Rows are added if new back-offices are 380 configured and deleted if back-offices are disabled." 381 INDEX { cdstvIngestMgrBackOfficeIndex } 382 ::= { cdstvIngestMgrBackOfficeTable 1 } 383 384CdstvIngestMgrBackOfficeEntry ::= SEQUENCE { 385 cdstvIngestMgrBackOfficeIndex Unsigned32, 386 cdstvIngestMgrBackOfficeType INTEGER, 387 cdstvIngestMgrBackOfficeUrl CiscoURLStringOrEmpty 388} 389 390cdstvIngestMgrBackOfficeIndex OBJECT-TYPE 391 SYNTAX Unsigned32 392 MAX-ACCESS not-accessible 393 STATUS current 394 DESCRIPTION 395 "This object uniquely identifies a back-office." 396 ::= { cdstvIngestMgrBackOfficeEntry 1 } 397 398cdstvIngestMgrBackOfficeType OBJECT-TYPE 399 SYNTAX INTEGER { 400 none(1), 401 totalManage(2) 402 } 403 MAX-ACCESS read-write 404 STATUS current 405 DESCRIPTION 406 "This object specifies the type of back-office support used. 407 none(1) - No back-office support. 408 totalManage(2) - Use TotalManage back-office support." 409 ::= { cdstvIngestMgrBackOfficeEntry 2 } 410 411cdstvIngestMgrBackOfficeUrl OBJECT-TYPE 412 SYNTAX CiscoURLStringOrEmpty 413 MAX-ACCESS read-write 414 STATUS current 415 DESCRIPTION 416 "This object specifies the location (URL) of the back-office. 417 This string is empty if back-office support is disabled." 418 ::= { cdstvIngestMgrBackOfficeEntry 3 } 419 420 421 422cdstvIngestMgrContentStore OBJECT-TYPE 423 SYNTAX INTEGER { 424 none(1), 425 isa(2), 426 fsi(3), 427 ngod(4), 428 openStream(5) 429 } 430 MAX-ACCESS read-write 431 STATUS current 432 DESCRIPTION 433 "This object specifies the type of content store used. 434 none(1) - Content store is disabled. 435 isa(2) - Use ISA content store. 436 fsi(3) - Use FSI content store. 437 ngod(4) - Use Next-Generation On-Demand (NGOD) content store. 438 openStream(5) - Use OpenStream content store." 439 ::= { cdstvIngestMgrContentStoreSettings 1 } 440 441cdstvIngestMgrContentStoreUrl OBJECT-TYPE 442 SYNTAX CiscoURLStringOrEmpty 443 MAX-ACCESS read-write 444 STATUS current 445 DESCRIPTION 446 "This object specifies the URL where the content store is 447 located. This string is empty if content store is disabled." 448 ::= { cdstvIngestMgrContentStoreSettings 2 } 449 450cdstvIngestMgrEncryptionType OBJECT-TYPE 451 SYNTAX INTEGER { 452 none(1), 453 verimatrix(2), 454 widevine(3) 455 } 456 MAX-ACCESS read-write 457 STATUS current 458 DESCRIPTION 459 "This object specifies the type of encryption used. 460 none(1) - Encryption is disabled. 461 verimatrix(2) - Use Verimatrix encryption. 462 widevine(3) - Use Widevine encryption." 463 ::= { cdstvIngestMgrEncryptionSettings 1 } 464 465cdstvIngestMgrEncryptionTargetUrl OBJECT-TYPE 466 SYNTAX CiscoURLStringOrEmpty 467 MAX-ACCESS read-write 468 STATUS current 469 DESCRIPTION 470 "This object specifies the location on the encryption server 471 used to send MPEG files for encryption, for example, 472 http://192.168.128.54:7898/files/encrypted. This string will be 473 empty if encryption is disabled." 474 ::= { cdstvIngestMgrEncryptionSettings 2 } 475 476cdstvIngestMgrEncryptionRetrievalUrl OBJECT-TYPE 477 SYNTAX CiscoURLStringOrEmpty 478 MAX-ACCESS read-write 479 STATUS current 480 DESCRIPTION 481 "This object specifies the location on the encryption server 482 used to retrieve encrypted MPEG files, for example, 483 ftp://192.168.128.54:7899/files/encrypted. This string will be 484 empty if encryption is disabled." 485 ::= { cdstvIngestMgrEncryptionSettings 3 } 486ciscoCdstvIngestMgrMIBGroups OBJECT IDENTIFIER 487 ::= { ciscoCdstvIngestMgrMIBConform 2 } 488 489 490ciscoCdstvIngestMgrMIBCompliance MODULE-COMPLIANCE 491 STATUS current 492 DESCRIPTION 493 "The compliance statement for the entities which 494 implement the Cisco CDS TV Ingest Manager MIB." 495 MODULE -- this module 496 MANDATORY-GROUPS { 497 ciscoCdstvIngestMgrMIBMainObjectGroup, 498 ciscoCdstvIngestMgrMIBIngestSettingsGroup, 499 ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup, 500 ciscoCdstvIngestMgrMIBContentStoreSettingsGroup, 501 ciscoCdstvIngestMgrMIBEncryptionSettingsGroup 502 } 503 504 OBJECT cdstvIngestMgrHostAddressType 505 MIN-ACCESS read-only 506 DESCRIPTION 507 "Write-access is not required." 508 509 OBJECT cdstvIngestMgrHostAddress 510 MIN-ACCESS read-only 511 DESCRIPTION 512 "Write-access is not required." 513 514 OBJECT cdstvIngestMgrPort 515 MIN-ACCESS read-only 516 DESCRIPTION 517 "Write-access is not required." 518 519 OBJECT cdstvIngestMgrFsiCallbackPort 520 MIN-ACCESS read-only 521 DESCRIPTION 522 "Write-access is not required." 523 524 OBJECT cdstvIngestMgrAdditionalPackageWindow 525 MIN-ACCESS read-only 526 DESCRIPTION 527 "Write-access is not required." 528 529 OBJECT cdstvIngestMgrFtpTimeout 530 MIN-ACCESS read-only 531 DESCRIPTION 532 "Write-access is not required." 533 534 OBJECT cdstvIngestMgrUseAssetIdEnable 535 MIN-ACCESS read-only 536 DESCRIPTION 537 "Write-access is not required." 538 539 OBJECT cdstvIngestMgrManageCorbaServices 540 MIN-ACCESS read-only 541 DESCRIPTION 542 "Write-access is not required." 543 544 OBJECT cdstvIngestMgrRequireNotifyService 545 MIN-ACCESS read-only 546 DESCRIPTION 547 "Write-access is not required." 548 549 OBJECT cdstvIngestMgrDebugLevel 550 MIN-ACCESS read-only 551 DESCRIPTION 552 "Write-access is not required." 553 554 OBJECT cdstvIngestMgrMetaDataPublish 555 MIN-ACCESS read-only 556 DESCRIPTION 557 "Write-access is not required." 558 559 OBJECT cdstvIngestMgrMetaPublishUrl 560 MIN-ACCESS read-only 561 DESCRIPTION 562 "Write-access is not required." 563 564 OBJECT cdstvIngestMgrMetaPublishBackupUrl 565 MIN-ACCESS read-only 566 DESCRIPTION 567 "Write-access is not required." 568 569 OBJECT cdstvIngestMgrIngestInterface 570 MIN-ACCESS read-only 571 DESCRIPTION 572 "Write-access is not required." 573 574 OBJECT cdstvIngestMgrCiscoSoapUrl 575 MIN-ACCESS read-only 576 DESCRIPTION 577 "Write-access is not required." 578 579 OBJECT cdstvIngestMgrProdisSoapUrl 580 MIN-ACCESS read-only 581 DESCRIPTION 582 "Write-access is not required." 583 584 OBJECT cdstvIngestMgrBackOfficeMaxRetries 585 MIN-ACCESS read-only 586 DESCRIPTION 587 "Write-access is not required." 588 589 OBJECT cdstvIngestMgrBackOfficeRetryInterval 590 MIN-ACCESS read-only 591 DESCRIPTION 592 "Write-access is not required." 593 594 OBJECT cdstvIngestMgrBackOfficeTimeout 595 MIN-ACCESS read-only 596 DESCRIPTION 597 "Write-access is not required." 598 599 OBJECT cdstvIngestMgrBackOfficeType 600 MIN-ACCESS read-only 601 DESCRIPTION 602 "Write-access is not required." 603 604 OBJECT cdstvIngestMgrBackOfficeUrl 605 MIN-ACCESS read-only 606 DESCRIPTION 607 "Write-access is not required." 608 609 OBJECT cdstvIngestMgrContentStore 610 MIN-ACCESS read-only 611 DESCRIPTION 612 "Write-access is not required." 613 614 OBJECT cdstvIngestMgrContentStoreUrl 615 MIN-ACCESS read-only 616 DESCRIPTION 617 "Write-access is not required." 618 619 OBJECT cdstvIngestMgrEncryptionType 620 MIN-ACCESS read-only 621 DESCRIPTION 622 "Write-access is not required." 623 624 OBJECT cdstvIngestMgrEncryptionTargetUrl 625 MIN-ACCESS read-only 626 DESCRIPTION 627 "Write-access is not required." 628 629 OBJECT cdstvIngestMgrEncryptionRetrievalUrl 630 MIN-ACCESS read-only 631 DESCRIPTION 632 "Write-access is not required." 633 ::= { ciscoCdstvIngestMgrMIBCompliances 1 } 634 635-- Units of Conformance 636 637ciscoCdstvIngestMgrMIBMainObjectGroup OBJECT-GROUP 638 OBJECTS { 639 cdstvIngestMgrHostAddress, 640 cdstvIngestMgrPort, 641 cdstvIngestMgrFsiCallbackPort, 642 cdstvIngestMgrAdditionalPackageWindow, 643 cdstvIngestMgrFtpTimeout, 644 cdstvIngestMgrUseAssetIdEnable, 645 cdstvIngestMgrManageCorbaServices, 646 cdstvIngestMgrRequireNotifyService, 647 cdstvIngestMgrDebugLevel, 648 cdstvIngestMgrMetaDataPublish, 649 cdstvIngestMgrMetaPublishUrl, 650 cdstvIngestMgrMetaPublishBackupUrl, 651 cdstvIngestMgrHostAddressType 652 } 653 STATUS current 654 DESCRIPTION 655 "A collection of objects that provide the configuration of 656 CDS-TV ingest manager." 657 ::= { ciscoCdstvIngestMgrMIBGroups 1 } 658 659ciscoCdstvIngestMgrMIBIngestSettingsGroup OBJECT-GROUP 660 OBJECTS { 661 cdstvIngestMgrIngestInterface, 662 cdstvIngestMgrCiscoSoapUrl, 663 cdstvIngestMgrProdisSoapUrl 664 } 665 STATUS current 666 DESCRIPTION 667 "A collection of objects that provide the ingest settings of the 668 CDS-TV ingest manager." 669 ::= { ciscoCdstvIngestMgrMIBGroups 2 } 670 671ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup OBJECT-GROUP 672 OBJECTS { 673 cdstvIngestMgrBackOfficeMaxRetries, 674 cdstvIngestMgrBackOfficeRetryInterval, 675 cdstvIngestMgrBackOfficeTimeout, 676 cdstvIngestMgrBackOfficeType, 677 cdstvIngestMgrBackOfficeUrl 678 } 679 STATUS current 680 DESCRIPTION 681 "A collection of objects that provide the back-office settings 682 of the CDS-TV ingest manager." 683 ::= { ciscoCdstvIngestMgrMIBGroups 3 } 684 685ciscoCdstvIngestMgrMIBContentStoreSettingsGroup OBJECT-GROUP 686 OBJECTS { 687 cdstvIngestMgrContentStore, 688 cdstvIngestMgrContentStoreUrl 689 } 690 STATUS current 691 DESCRIPTION 692 "A collection of objects that provide the content store settings 693 of the CDS-TV ingest manager." 694 ::= { ciscoCdstvIngestMgrMIBGroups 4 } 695 696ciscoCdstvIngestMgrMIBEncryptionSettingsGroup OBJECT-GROUP 697 OBJECTS { 698 cdstvIngestMgrEncryptionType, 699 cdstvIngestMgrEncryptionTargetUrl, 700 cdstvIngestMgrEncryptionRetrievalUrl 701 } 702 STATUS current 703 DESCRIPTION 704 "A collection of objects that provide the encryption settings of 705 the CDS-TV ingest manager." 706 ::= { ciscoCdstvIngestMgrMIBGroups 5 } 707 708END 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765