1-- *****************************************************************
2-- CISCO-CDSTV-SERVER-MIB: Cisco CDS-TV Server Setup Management
3-- Information Base
4--
5-- June 2010, Rajat Ahuja
6--
7-- Copyright (c) 2010, 2012 by Cisco Systems Inc.
8--
9-- All rights reserved.
10--
11-- *****************************************************************
12
13CISCO-CDSTV-SERVER-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    SnmpAdminString
24        FROM SNMP-FRAMEWORK-MIB
25    InetAddressType,
26    InetAddress,
27    InetPortNumber
28        FROM INET-ADDRESS-MIB
29    TruthValue,
30    TEXTUAL-CONVENTION
31        FROM SNMPv2-TC
32    Dscp
33        FROM DIFFSERV-DSCP-TC
34    ciscoMgmt
35        FROM CISCO-SMI;
36
37
38ciscoCdstvServerMIB MODULE-IDENTITY
39    LAST-UPDATED    "201212120000Z"
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 server configuration  that
54        faciliate the management of the Cisco Content Delivery System
55        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        CDS     Content Delivery System
65        CDSM    Content Delivery System Manager
66        ISA     Interactive Services Architecture
67        ISV     Integrated Streamer-Vault
68        FSI     File Service Interface
69        FTP     File Transfer Protocol
70        MPEG    Motion Picture Experts Group
71        MSA     Managed Services Architecture
72        NDVR    Network Digital Video Recorder
73        RTSP    Real-Time Streaming Protocol
74        STB     Set-Top Box
75        VVI      Virtual Video Infrastructure
76
77
78        Device Roles:
79
80        Vault: Content delivery application responsible for ingesting
81        and storing video content and making it available to streamers
82        and/or caching nodes.
83
84        Caching Nodes: Content delivery application responsible for
85        caching content from vault (using CCP) and then streaming
86        content out to streamers over HTTP or CCP.
87
88        Streamer: Content delivery application responsible for
89        streaming
90        video out to STB's.
91
92        ISV: Content delivery application capable of acting as both a
93        vault and as a streamer in a single device.
94
95        Controller (also called 'CDSM'): CDS application providing a
96        web-based interface for monitoring, control and configuration
97        of
98        CDS devices(streamers, vaults, caching nodes and ISV's), device
99        arrays/groups, and the complete CDS deployment.
100
101        Recorder: Content delivery application responsible for recording
102        NDVR content and delivering it to streamers.
103
104        Role-specific objects:
105
106        cdstvServerCommonObjects apply to all roles
107        cdstvServerStreamingObjects apply to streamer and ISV role
108        specified by cdstvServerRole
109        cdstvServerStorageObjects apply to vault and ISV role specified
110        by cdstvServerRole
111        cdstvServerCachingObjects apply to cachingserver role specified
112        by cdstvServerRole"
113    REVISION        "201212120000Z"
114    DESCRIPTION
115        "Added support for recorder server role."
116    REVISION        "201007130000Z"
117    DESCRIPTION
118        "Initial version of this MIB module."
119    ::= { ciscoMgmt 754 }
120
121
122
123CiscoCdstvEcn ::= TEXTUAL-CONVENTION
124    STATUS          current
125    DESCRIPTION
126        "The Explicit Congestion Notification (ECN) field consists of
127        two bits that denote the end points of a transfer protocol as
128        ECN-capable, or that ECN is not being used. The possible values
129        of the ECN Capable
130        Transport Codepoint (ECT) are:
131
132        ect1(1)       - Use ECN with ECT(1) setting.
133        ect0(2)       - Use ECN with ECT(0) setting (recommended).
134        congestion(3) - Congestion is experienced by router.
135        disabled(4)   - Do not use ECN
136
137        Setting the ECN field to 3 is performed by the router to
138        indicate congestion is experienced. ECN is set separately for
139        cache and transport interfaces. ECN can also be set for HTTP
140        Streamers when HTTP is selected as the cache-fill protocol for
141        VVI."
142    SYNTAX          INTEGER  {
143                        ect1(1),
144                        ect0(2),
145                        congestion(3),
146                        disabled(4)
147                    }
148-- Textual Conventions definition will be defined before this line
149
150ciscoCdstvServerMIBNotifs  OBJECT IDENTIFIER
151    ::= { ciscoCdstvServerMIB 0 }
152
153ciscoCdstvServerMIBObjects  OBJECT IDENTIFIER
154    ::= { ciscoCdstvServerMIB 1 }
155
156ciscoCdstvServerMIBConform  OBJECT IDENTIFIER
157    ::= { ciscoCdstvServerMIB 2 }
158
159ciscoCdstvServerMIBCompliances  OBJECT IDENTIFIER
160    ::= { ciscoCdstvServerMIBConform 1 }
161
162cdstvServerCommonObjects  OBJECT IDENTIFIER
163    ::= { ciscoCdstvServerMIBObjects 1 }
164
165cdstvServerStreamingObjects  OBJECT IDENTIFIER
166    ::= { ciscoCdstvServerMIBObjects 2 }
167
168cdstvServerStorageObjects  OBJECT IDENTIFIER
169    ::= { ciscoCdstvServerMIBObjects 3 }
170
171cdstvServerCachingObjects  OBJECT IDENTIFIER
172    ::= { ciscoCdstvServerMIBObjects 4 }
173
174
175-- Device Info
176
177cdstvServerRole OBJECT-TYPE
178    SYNTAX          INTEGER {
179                        isv(1),
180                        vault(2),
181                        streamer(3),
182                        controller(4),
183                        cachingserver(5),
184                        recorder(6)
185                    }
186    MAX-ACCESS      read-only
187    STATUS          current
188    DESCRIPTION
189        "This object indicates the type/role of this server:
190        isv(1) - Cisco CDS Integrated Streamer Vault
191        vault(2) - Cisco CDS Vault
192        streamer(3) - Cisco CDS Streamer
193        controller(4) - Cisco CDS Manager (CDSM)
194        cachingserver(5) - Cisco CDS Caching Node/Server
195        recorder(6) - Cisco CDS Recorder"
196    ::= { cdstvServerCommonObjects 1 }
197
198cdstvServerPartNo OBJECT-TYPE
199    SYNTAX          SnmpAdminString
200    MAX-ACCESS      read-only
201    STATUS          current
202    DESCRIPTION
203        "This object indicates the part number of this device, which
204        uniquely identifies the type of hardware this CDS application is
205        running on, for example, CDE-420 2S3."
206    ::= { cdstvServerCommonObjects 2 }
207
208cdstvServerID OBJECT-TYPE
209    SYNTAX          Unsigned32
210    MAX-ACCESS      read-only
211    STATUS          current
212    DESCRIPTION
213        "This object indicates the unique server ID assigned to this
214        device. Server ID's are auto-assigned by the CDS when servers
215        are configured and are used to uniquely identify,
216        optionally with the group ID, a device in the CDS."
217    ::= { cdstvServerCommonObjects 3 }
218
219cdstvServerGroupID OBJECT-TYPE
220    SYNTAX          Unsigned32
221    MAX-ACCESS      read-only
222    STATUS          current
223    DESCRIPTION
224        "This object indicates the group ID of the group this server
225        belong to. Group ID's are auto-assigned when server groups are
226        configured in the CDS."
227    ::= { cdstvServerCommonObjects 4 }
228
229cdstvServerHostname OBJECT-TYPE
230    SYNTAX          SnmpAdminString (SIZE  (0..64))
231    MAX-ACCESS      read-write
232    STATUS          current
233    DESCRIPTION
234        "This object specifies the optional fully qualified hostname for
235        this server, for example, vault.cisco.com."
236    ::= { cdstvServerCommonObjects 5 }
237
238cdstvServerTTL OBJECT-TYPE
239    SYNTAX          Unsigned32 (0..255)
240    UNITS           "hops"
241    MAX-ACCESS      read-write
242    STATUS          current
243    DESCRIPTION
244        "This object specifies the IP time to live (TTL) for data
245        packets."
246    DEFVAL          { 16 }
247    ::= { cdstvServerCommonObjects 6 }
248-- Default Stream/Cache Settings
249
250cdstvServerDefaultStreamCacheSettings  OBJECT IDENTIFIER
251    ::= { cdstvServerCommonObjects 7 }
252
253
254cdstvCacheJumboFramesEnable OBJECT-TYPE
255    SYNTAX          TruthValue
256    MAX-ACCESS      read-write
257    STATUS          current
258    DESCRIPTION
259        "This object specifies the status of jumbo frames on cache
260        interfaces:
261        'true' - Jumbo frames are enabled
262        'false' - Jumbo frames are disabled"
263    ::= { cdstvServerCommonObjects 8 }
264
265cdstvServerOffloadEnable OBJECT-TYPE
266    SYNTAX          TruthValue
267    MAX-ACCESS      read-write
268    STATUS          current
269    DESCRIPTION
270        "This object specifies the current offload status of the server.
271        When Server Offload is enabled, the server is configured not to
272        accept new provisioning.
273        'true'  - Server offload is enabled
274        'false' - Server offload is disabled"
275    ::= { cdstvServerCommonObjects 9 }
276-- Transport/Cache IP Packets
277
278cdstvServerTransportCacheIPPkts  OBJECT IDENTIFIER
279    ::= { cdstvServerCommonObjects 10 }
280
281
282cdstvServerNullStreamingEnable OBJECT-TYPE
283    SYNTAX          TruthValue
284    MAX-ACCESS      read-write
285    STATUS          current
286    DESCRIPTION
287        "This object specifies whether the streaming of null MPEG files
288        is allowed or not:
289        'true' - Null MPEG streaming is allowed.
290        'false' - NUll MPEG streaming is not allowed."
291    ::= { cdstvServerCommonObjects 11 }
292
293cdstvServerStartingTransportPort OBJECT-TYPE
294    SYNTAX          InetPortNumber
295    MAX-ACCESS      read-write
296    STATUS          current
297    DESCRIPTION
298        "This object specifies the beginning default UDP port number
299        used for stream and stream/cache interfaces on this streamer or
300        ISV."
301    DEFVAL          { 48879 }
302    ::= { cdstvServerStreamingObjects 1 }
303
304cdstvServerEndingTransportPort OBJECT-TYPE
305    SYNTAX          InetPortNumber
306    MAX-ACCESS      read-write
307    STATUS          current
308    DESCRIPTION
309        "This object specifies the ending default UDP port number used
310        for stream and stream/cache interfaces on this streamer or
311        ISV."
312    ::= { cdstvServerStreamingObjects 2 }
313
314cdstvStreamJumboFramesEnable OBJECT-TYPE
315    SYNTAX          TruthValue
316    MAX-ACCESS      read-write
317    STATUS          current
318    DESCRIPTION
319        "This object specifies the status of jumbo frames on stream
320        interfaces of this streamer or ISV:
321        'true'  - Jumbo frames are enabled.
322        'false' - Jumbo frames are disabled."
323    ::= { cdstvServerStreamingObjects 3 }
324-- Stream Group Info
325
326cdstvServerStreamGroupInfo  OBJECT IDENTIFIER
327    ::= { cdstvServerStreamingObjects 4 }
328
329
330cdstvServerStreamGroupName OBJECT-TYPE
331    SYNTAX          SnmpAdminString
332    MAX-ACCESS      read-only
333    STATUS          current
334    DESCRIPTION
335        "This object indicates the name of the stream group this
336        streamer or ISV is a member of. Group name for a stream group is
337        configured in the CDSM."
338    ::= { cdstvServerStreamGroupInfo 1 }
339
340cdstvServerStreamGroupID OBJECT-TYPE
341    SYNTAX          Unsigned32
342    MAX-ACCESS      read-only
343    STATUS          current
344    DESCRIPTION
345        "This object indicates the ID of the stream group this streamer
346        or ISV is a member of. Stream group ID is auto-assigned by CDS
347        when the stream group is created."
348    ::= { cdstvServerStreamGroupInfo 2 }
349
350cdstvServerStreamerIsCache OBJECT-TYPE
351    SYNTAX          TruthValue
352    MAX-ACCESS      read-write
353    STATUS          current
354    DESCRIPTION
355        "This object specifies whether 'Streamer Is Cache' is enabled on
356        this streamer. If 'Streamer Is Cache' is enabled, the Streamer
357        can be used as a possible cache-fill source by a Streamer in a
358        different Stream Group. All Stream Groups that have at least one
359        Streamer with 'Streamer is Cache' enabled are displayed on the
360        'Stream to Cache Map' page, where the Stream Group can be
361        selected
362        as a possible cache-fill source and given a preference. Only the
363        Streamers with 'Streamer Is Cache' enabled are used as possible
364        cache-fill sources. The protocol used for cache-fill responses
365        from Streamers is always CCP.
366        'true' - 'Streamer Is Cache' is enabled
367        'false' - 'Streamer Is Cache' is disabled"
368    ::= { cdstvServerStreamGroupInfo 3 }
369
370cdstvVaultMirrorCopies OBJECT-TYPE
371    SYNTAX          Unsigned32 (0..10)
372    UNITS           "copies"
373    MAX-ACCESS      read-write
374    STATUS          current
375    DESCRIPTION
376        "This object specifies the number of content copies on a Vault
377        or ISV that will ensure there is at least one copy at each
378        site."
379    ::= { cdstvServerStorageObjects 1 }
380cdstvServerCacheGroupInformation  OBJECT IDENTIFIER
381    ::= { cdstvServerCachingObjects 1 }
382
383
384cdstvServerCacheGroupName OBJECT-TYPE
385    SYNTAX          SnmpAdminString
386    MAX-ACCESS      read-only
387    STATUS          current
388    DESCRIPTION
389        "This object indicates the name of the cache group this Caching
390        Node is a member of. Group name for a caching group is
391        configured in the CDSM."
392    ::= { cdstvServerCacheGroupInformation 1 }
393
394cdstvServerCacheGroupID OBJECT-TYPE
395    SYNTAX          Unsigned32
396    MAX-ACCESS      read-only
397    STATUS          current
398    DESCRIPTION
399        "This object indicates the ID of the caching group this Caching
400        Node is a member of. Caching Group ID is auto-assigned by the
401        CDS when a caching group is created."
402    ::= { cdstvServerCacheGroupInformation 2 }
403
404cdstvVaultLocalCopies OBJECT-TYPE
405    SYNTAX          Unsigned32 (1..4)
406    UNITS           "copies"
407    MAX-ACCESS      read-write
408    STATUS          current
409    DESCRIPTION
410        "This object specifies the number of local copies on a Vaults or
411        ISV at a site."
412    ::= { cdstvServerStorageObjects 2 }
413-- FTP Out Settings
414
415cdstvServerFTPOutSettings  OBJECT IDENTIFIER
416    ::= { cdstvServerStorageObjects 3 }
417
418cdstvServerVaultGroupInformation  OBJECT IDENTIFIER
419    ::= { cdstvServerStorageObjects 4 }
420
421
422cdstvServerFTPOutInterface OBJECT-TYPE
423    SYNTAX          INTEGER  {
424                        management(1),
425                        ingest(2)
426                    }
427    MAX-ACCESS      read-write
428    STATUS          current
429    DESCRIPTION
430        "This object specifies whether the management
431        interface or the ingest interface is used for FTP pull and FTP
432        push on a Vault or ISV.
433        management(1) - Management interface is used for FTP pull and
434        FTP push
435        ingest(2) - Ingest interface is used for FTP pull and FTP push"
436    ::= { cdstvServerFTPOutSettings 1 }
437
438cdstvServerFTPOutBandwidth OBJECT-TYPE
439    SYNTAX          Unsigned32 (0..1000)
440    UNITS           "Mbps"
441    MAX-ACCESS      read-write
442    STATUS          current
443    DESCRIPTION
444        "This object specifies the maximum bandwidth allowed for FTP
445        functionality on a Vault or ISV."
446    ::= { cdstvServerFTPOutSettings 2 }
447
448cdstvServerFTPOutSessions OBJECT-TYPE
449    SYNTAX          Unsigned32 (0..100)
450    UNITS           "sessions"
451    MAX-ACCESS      read-write
452    STATUS          current
453    DESCRIPTION
454        "This object specifies the maximum number of FTP out sessions
455        allowed on a Vault or ISV."
456    ::= { cdstvServerFTPOutSettings 3 }
457
458cdstvServerVaultGroupName OBJECT-TYPE
459    SYNTAX          SnmpAdminString
460    MAX-ACCESS      read-only
461    STATUS          current
462    DESCRIPTION
463        "This object indicates the name of the vault group this Vault is
464        a member of. Group name for a vault group is configured in the
465        CDSM."
466    ::= { cdstvServerVaultGroupInformation 1 }
467
468cdstvServerVaultGroupID OBJECT-TYPE
469    SYNTAX          Unsigned32
470    MAX-ACCESS      read-only
471    STATUS          current
472    DESCRIPTION
473        "This object indicates the ID of the vault group this Vault is a
474        member of. Vault Group ID is auto-assigned by the CDS when a
475        vault group is configured."
476    ::= { cdstvServerVaultGroupInformation 2 }
477
478cdstvServerSourceAddressType OBJECT-TYPE
479    SYNTAX          InetAddressType
480    MAX-ACCESS      read-write
481    STATUS          current
482    DESCRIPTION
483        "This object specifies the type of the default source IP address
484        (specified by the cdstvServerSourceAddress) for all stream and
485        cache interfaces."
486    DEFVAL          { ipv4 }
487    ::= { cdstvServerDefaultStreamCacheSettings 1 }
488
489cdstvServerSourceAddress OBJECT-TYPE
490    SYNTAX          InetAddress
491    MAX-ACCESS      read-write
492    STATUS          current
493    DESCRIPTION
494        "This object specifies the default source IP address for all
495        stream and cache interfaces. The type of this address is
496        specified by the cdstvServerSourceAddressType."
497    DEFVAL          { "192.168.207.65" }
498    ::= { cdstvServerDefaultStreamCacheSettings 2 }
499
500cdstvServerCachePort OBJECT-TYPE
501    SYNTAX          InetPortNumber
502    MAX-ACCESS      read-write
503    STATUS          current
504    DESCRIPTION
505        "This object specifies the default UDP port number used for
506        cache traffic between servers."
507    DEFVAL          { 48879 }
508    ::= { cdstvServerDefaultStreamCacheSettings 3 }
509
510cdstvServerTransportDSCP OBJECT-TYPE
511    SYNTAX          Dscp
512    MAX-ACCESS      read-write
513    STATUS          current
514    DESCRIPTION
515        "This object specifies the Differentiated Services Code Point
516        (DSCP) for the Transport Interface on this server. DSCP uses six
517        bits of the DiffServ field, which was originally the ToS octet,
518        to mark all outgoing packets with a specific DSCP value. Cache
519        or transport traffic may require certain forwarding behavior,
520        known as the per-hop behavior (PHB), which is specified in the
521        DSCP. The network gives priority to marked traffic. Generally,
522        the lower number has lower priority and the higher number has
523        higher priority.
524
525        DSCP is set separately for cache and transport interfaces.
526
527        DSCP can also be set for HTTP Streamers when HTTP is selected as
528        the cache-fill protocol for VVI."
529    ::= { cdstvServerTransportCacheIPPkts 1 }
530
531cdstvServerTransportECN OBJECT-TYPE
532    SYNTAX          CiscoCdstvEcn
533    MAX-ACCESS      read-write
534    STATUS          current
535    DESCRIPTION
536        "This object specifies the Explicit Congestion Notification
537        (ECN) for the Transport Interface on this server."
538    ::= { cdstvServerTransportCacheIPPkts 2 }
539
540cdstvServerCacheDSCP OBJECT-TYPE
541    SYNTAX          Dscp
542    MAX-ACCESS      read-write
543    STATUS          current
544    DESCRIPTION
545        "his object specifies the Differentiated Services Code Point
546        (DSCP) for the Cache Interface on this server. DSCP uses six
547        bits of the DiffServ field, which was originally the ToS octet,
548        to mark all outgoing packets with a specific DSCP value. Cache
549        or transport traffic may require certain forwarding behavior,
550        known as the per-hop behavior (PHB), which is specified in the
551        DSCP. The network gives priority to marked traffic. Generally,
552        the lower number has lower priority and the higher number has
553        higher priority.
554
555        DSCP is set separately for cache and transport interfaces.
556
557        DSCP can also be set for HTTP Streamers when HTTP is selected as
558        the cache-fill protocol for VVI."
559    ::= { cdstvServerTransportCacheIPPkts 3 }
560
561cdstvServerCacheECN OBJECT-TYPE
562    SYNTAX          CiscoCdstvEcn
563    MAX-ACCESS      read-write
564    STATUS          current
565    DESCRIPTION
566        "This object specifies the Explicit Congestion Notification
567        (ECN) for the Cache Interface on this server."
568    ::= { cdstvServerTransportCacheIPPkts 4 }
569ciscoCdstvServerMIBGroups  OBJECT IDENTIFIER
570    ::= { ciscoCdstvServerMIBConform 2 }
571
572
573ciscoCdstvServerMIBCompliance MODULE-COMPLIANCE
574    STATUS          current
575    DESCRIPTION
576        "The compliance statement for the entities which
577        implement the Cisco CDS TV Server setup MIB."
578    MODULE          -- this module
579    MANDATORY-GROUPS { ciscoCdstvServerMIBMainObjectGroup }
580
581    GROUP           ciscoCdstvServerMIBStreamingObjectGroup
582    DESCRIPTION
583        "This object group is required only for server role 'streamer'
584        and 'isv' as indicated by cdstvServerRole."
585
586    GROUP           ciscoCdstvServerMIBStorageObjectGroup
587    DESCRIPTION
588        "This object group is required only for server role 'vault' as
589        indicated by cdstvServerRole."
590
591    GROUP           ciscoCdstvServerMIBCachingObjectGroup
592    DESCRIPTION
593        "This object is required only for server role 'caching node' as
594        indicated by cdstvServerRole."
595
596    OBJECT          cdstvServerHostname
597    MIN-ACCESS      read-only
598    DESCRIPTION
599        "Write-access is not required."
600
601    OBJECT          cdstvServerTTL
602    MIN-ACCESS      read-only
603    DESCRIPTION
604        "Write-access is not required."
605
606    OBJECT          cdstvServerSourceAddressType
607    MIN-ACCESS      read-only
608    DESCRIPTION
609        "Write-access is not required."
610
611    OBJECT          cdstvServerSourceAddress
612    MIN-ACCESS      read-only
613    DESCRIPTION
614        "Write-access is not required."
615
616    OBJECT          cdstvServerCachePort
617    MIN-ACCESS      read-only
618    DESCRIPTION
619        "Write-access is not required."
620
621    OBJECT          cdstvCacheJumboFramesEnable
622    MIN-ACCESS      read-only
623    DESCRIPTION
624        "Write-access is not required."
625
626    OBJECT          cdstvServerOffloadEnable
627    MIN-ACCESS      read-only
628    DESCRIPTION
629        "Write-access is not required."
630
631    OBJECT          cdstvServerTransportDSCP
632    MIN-ACCESS      read-only
633    DESCRIPTION
634        "Write-access is not required."
635
636    OBJECT          cdstvServerTransportECN
637    MIN-ACCESS      read-only
638    DESCRIPTION
639        "Write-access is not required."
640
641    OBJECT          cdstvServerID
642    MIN-ACCESS      read-only
643    DESCRIPTION
644        "Write-access is not required."
645
646    OBJECT          cdstvServerCacheDSCP
647    MIN-ACCESS      read-only
648    DESCRIPTION
649        "Write-access is not required."
650
651    OBJECT          cdstvServerCacheECN
652    MIN-ACCESS      read-only
653    DESCRIPTION
654        "Write-access is not required."
655
656    OBJECT          cdstvServerNullStreamingEnable
657    MIN-ACCESS      read-only
658    DESCRIPTION
659        "Write-access is not required."
660
661    OBJECT          cdstvServerStartingTransportPort
662    MIN-ACCESS      read-only
663    DESCRIPTION
664        "Write-access is not required."
665
666    OBJECT          cdstvServerEndingTransportPort
667    MIN-ACCESS      read-only
668    DESCRIPTION
669        "Write-access is not required."
670
671    OBJECT          cdstvServerStreamerIsCache
672    MIN-ACCESS      read-only
673    DESCRIPTION
674        "Write-access is not required."
675
676    OBJECT          cdstvVaultMirrorCopies
677    MIN-ACCESS      read-only
678    DESCRIPTION
679        "Write-access is not required."
680
681    OBJECT          cdstvVaultLocalCopies
682    MIN-ACCESS      read-only
683    DESCRIPTION
684        "Write-access is not required."
685
686    OBJECT          cdstvServerFTPOutInterface
687    MIN-ACCESS      read-only
688    DESCRIPTION
689        "Write-access is not required."
690
691    OBJECT          cdstvServerFTPOutBandwidth
692    MIN-ACCESS      read-only
693    DESCRIPTION
694        "Write-access is not required."
695
696    OBJECT          cdstvServerFTPOutSessions
697    MIN-ACCESS      read-only
698    DESCRIPTION
699        "Write-access is not required."
700
701    OBJECT          cdstvStreamJumboFramesEnable
702    MIN-ACCESS      read-only
703    DESCRIPTION
704        "Write-access is not required."
705    ::= { ciscoCdstvServerMIBCompliances 1 }
706
707-- Units of Conformance
708
709ciscoCdstvServerMIBMainObjectGroup OBJECT-GROUP
710    OBJECTS         {
711                        cdstvServerRole,
712                        cdstvServerPartNo,
713                        cdstvServerID,
714                        cdstvServerGroupID,
715                        cdstvServerHostname,
716                        cdstvServerTTL,
717                        cdstvServerSourceAddress,
718                        cdstvServerCachePort,
719                        cdstvCacheJumboFramesEnable,
720                        cdstvServerOffloadEnable,
721                        cdstvServerTransportDSCP,
722                        cdstvServerTransportECN,
723                        cdstvServerCacheDSCP,
724                        cdstvServerCacheECN,
725                        cdstvServerSourceAddressType,
726                        cdstvServerNullStreamingEnable
727                    }
728    STATUS          current
729    DESCRIPTION
730        "A collection of common objects that provide CDS-TV server
731        configuration for all device roles."
732    ::= { ciscoCdstvServerMIBGroups 1 }
733
734ciscoCdstvServerMIBStreamingObjectGroup OBJECT-GROUP
735    OBJECTS         {
736                        cdstvServerStartingTransportPort,
737                        cdstvServerEndingTransportPort,
738                        cdstvStreamJumboFramesEnable,
739                        cdstvServerStreamGroupName,
740                        cdstvServerStreamGroupID,
741                        cdstvServerStreamerIsCache
742                    }
743    STATUS          current
744    DESCRIPTION
745        "A collection of streaming objects that provide CDS-TV server
746        configuration for all streamers and ISVs."
747    ::= { ciscoCdstvServerMIBGroups 2 }
748
749ciscoCdstvServerMIBStorageObjectGroup OBJECT-GROUP
750    OBJECTS         {
751                        cdstvVaultMirrorCopies,
752                        cdstvVaultLocalCopies,
753                        cdstvServerFTPOutInterface,
754                        cdstvServerFTPOutBandwidth,
755                        cdstvServerFTPOutSessions,
756                        cdstvServerVaultGroupName,
757                        cdstvServerVaultGroupID
758                    }
759    STATUS          current
760    DESCRIPTION
761        "A collection of storage objects that provide CDS-TV server
762        configuration for vaults."
763    ::= { ciscoCdstvServerMIBGroups 3 }
764
765ciscoCdstvServerMIBCachingObjectGroup OBJECT-GROUP
766    OBJECTS         {
767                        cdstvServerCacheGroupName,
768                        cdstvServerCacheGroupID
769                    }
770    STATUS          current
771    DESCRIPTION
772        "A collection of caching objects that provide CDS-TV server
773        configuration for Caching Nodes."
774    ::= { ciscoCdstvServerMIBGroups 4 }
775
776END
777
778
779
780
781
782
783
784