Report of the SCA BB Console - average subscriber

Hi all

I'm studying just how to implement multiple levels of quota subscribed on my network. I'm generated the report on the average subscriber as below to determine what is the right value of quota for each of my subscribers. According the report, it shows the total number of subscribers. Here's my question:

1. What is the average total subscriber from the report?

2 - is the average active subscriber for the period of special aggregation?

3 is Subscriber assets with session traffic?

The generated report is as below, for information, our total subscribers is about 1.6 million.

Very grateful for the help. Thank you

It is a snapshot of the CES at some point. So when the report was generated, you had 248876 subscribers (with or without flow) active on the CPE. If a subscriber was signed 10 days ago, he'll get an average consumption of this Subscriber for 10 days. Even for a Subscriber registered in a minute there would average consumption in this minute.

Heop this helps.

Shelley.

Tags: Cisco Support

Similar Questions

  • AAA GANYMEDE + accounting - CLI question by user not appear in the report of the ACS.

    Can I know why CLI cancelled by the user does not show on GANYMEDE ACS accounting report. The length of time is displayed, but I also wanted to connect what is the commands issued by the user.

    WHA is missing here?

    enable AAA authentication login VTY P1_ACS local group

    Group default AAA authorization exec local P1_ACS authenticated by FIS

    AAA authorization exec CONSOLE none

    AAA exec by default start-stop accounting P1_ACS group

    AAA commands 5 default start-stop accounting P1_ACS group

    AAA commands 15 arrhythmic default accounting P1_ACS group

    Accounting logs command is stroed in the newspapers of the administration of Ganymede.

    There is also a known issue on ver 4.1.1 and we must

    apply the ACS 4.1.1.23.5 patch to fix the problem.

    Patch for the unit is available on

    http://www.Cisco.com/cgi-bin/tablebuild.pl/ACS-Soleng-3DES

    The patch name: ACS SE 4.1.1.23.5 rollup

    Acs hotfix for windows is available on

    http://www.Cisco.com/cgi-bin/tablebuild.pl/ACS-win-3DES

    The patch name: ACS 4.1.1.23.5 rollup

    CCIE Security

  • GANYMEDE - orders do not show the report to the Administration

    I configured both switches for GANYMEDE + with the following commands:

    AAA authentication login default group Ganymede + local

    authorization AAA console

    AAA authorization config-commands

    AAA authorization exec default group Ganymede + local

    AAA authorization commands 0 default group Ganymede + local

    AAA authorization commands 1 default group Ganymede + local

    AAA authorization commands 15 default group Ganymede + local

    orders accounting AAA 15 by default start-stop Ganymede group.

    I've signed on as the same user and type the same commands, "sh run", on switch1 and switch2.

    When I look at the report of the directors of GANYMEDE, the commands that I tap on switch1 are on the report.  However, the same commands as I type the switch2 are not on the report.

    Any thoughts on what I missed?

    Hello

    Could you please give me the version of the switch? In addition, add the following command: and then to test, see if that helped.

    o default start-stop Ganymede group AAA accounting controls +.

    orders accounting AAA 1 by default start-stop Ganymede group.

    Concerning

    Mohammed (assign useful jobs)

  • Report of the OPS / s

    We currently just bought a new storage and I'm looking for the best way to get reports of the IOPS / s of our virtual machines. Specifically, I want to get the OPS are / s for the last quarter on schedule from 07:00 - 18:00. We're currently on vSphere 4.1. A good majority are desktop view, that's why I want to look specifically at opening hours. Any ideas? Thank you!

    Here's a quick and powershell (really) dirty way providing the average and maximum read and write of IOPS / s over a period of days:

    $daysback = - 30
    $vms = get - VM
    "write-host (" {0, -40} ' t 1.8 t {2,8}} 't {3.8}' t {4,8} "-f"VM"," IOPS / s W avg ', ' Avg R IOPS / s "," W IOPS / s max "," IOPS R / s max ")"
    ; $vms | kind | % {
    $wval = (((get-Stat_$_-stat_"datastore.numberWriteAveraged.average"-Start_(Get-Date).adddays ($daysback) - Finish (Get-Date)) |-expandproperty value Select): measure - average - max);
    $rval = (((get-Stat_$_-stat_"datastore.numberReadAveraged.average"-Start_(Get-Date).adddays ($daysback) - Finish (Get-Date)) |-expandproperty value Select): measure - average - max);
    write-host ("{0, -40} ' t {1, 8:N2} t {2, 8:N2} ' t {3, 8:N2} t {4, 8:N2} ' f $_.) Name, $wval.average, $rval.average, $wval.maximum, $rval.maximum)
    }

    Output is as:

    VM W IOPS avg IOPS R / W IOPS avg s / s max IOPS R / s max
    VM1                                                1,96            0,67            7,00           31,00
    VM2                                                0,46            0,53            7,00           17,00
    VM3                                                7,57            7,66           52,00           73,00
    VM4                                                3,47            0,00             4,00            0,00
    [...]

    Remember that historical performance data are rolled up in the DB vCenter. So if you query data from the last 30 days as in this example, the values are made upwards of 2 average hours wrapped in the comic book. Especially the peak values can seem a little low then. Go to-1 (dailly, 1 minute averages) or - 7 (weekly, 30-minute averages) in this case and run it periodically.

    Also, here is a version that will assess only the values with a timestamp between 07:00 - 18:30:

    $daysback = - 30
    $vms = get - VM
    "write-host (" {0, -40} ' t 1.8 t {2,8}} 't {3.8}' t {4,8} "-f"VM"," IOPS / s W avg ', ' Avg R IOPS / s "," W IOPS / s max "," IOPS R / s max ")"
    ; $vms | kind | % {
    $wval = (((get-Stat_$_-stat_"datastore.numberWriteAveraged.average"-Start_(Get-Date).adddays ($daysback) - Finish (Get-Date)) |?)) {$_. "Timestamp.ToString () - match" (0 [7-9]: 1 [0-8]) :'} | Select - expandproperty value) | measure - average - max);
    $rval = (((get-Stat_$_-stat_"datastore.numberReadAveraged.average"-Start_(Get-Date).adddays ($daysback) - Finish (Get-Date)) |?)) {$_. "Timestamp.ToString () - match" (0 [7-9]: 1 [0-8]) :'} | Select - expandproperty value) | measure - average - max);
    write-host ("{0, -40} ' t {1, 8:N2} t {2, 8:N2} ' t {3, 8:N2} t {4, 8:N2} ' f $_.) Name, $wval.average, $rval.average, $wval.maximum, $rval.maximum)
    }

  • How to access the ESX service console

    Hi all.

    I'm a TV engineer trying to solve a problem of network with our equipment. I'm not a network engineer.

    I'm trying to follow the VMWareKB: "Troubleshooting connection problems network using the Protocol ARP (Address Resolution)" I'm just trying to check the ARP table exists on our ESX Server and has some entries.

    KB said running 'arp - a' for a list of the ARP table.

    To do this, I need to open a service console. I have now read articles 3 or 4 on the use of the Service Console but I am still unable to open it to run the command. I do not understand what I am doing wrong, I am incredibly stupid or miss me something completely.

    An article said, press 'Alt F1"exactly where I am doing this? A virtual machine is connected to the ESX? An article said "to VIM summary screen' I tried logging on the virtual machine and point a web browser on the server, I get a screen of welcome of ESX with link"Connecting to Web Access", when I click on it I get"Internet Explorer Can t Open The Web page.

    I had a look at VIM, I can see the details of the Vswitch network on the configuration page, including the IP address of the console service. Can't see how to open a service console. VIM of pointing at the address for service console is unable to do anything.

    I just need to know how to open the Service console and check the tables of ARP based on the KB.

    Please dumb down of your responses to me!

    The fundamental problem is about some units of electric distribution that we use to power the equipment in the racks. They have a network connection which we track using Virtual Machines to the report of a third person of monitoring and control software. The virtual machines are running alarm software driver used to report to the third party. The virtual machine is on a blade server.

    We have a problem where a unit of the IML has been replaced but configured with incorrect default gateway address. In the hours to do so, the monitoring and control software lost connection to ILM and one by one, all units of the IML began to send the ARP requests - "who has 10.172.248.254'.

    Finally, the MDU constantly send ARP requests and the MDU have lost connectivity to the virtual computer. If we open the VM machine, follow up and a MUD, the ping command ping fails, if we put a laptop in place an ILM and ping the machine VM, the ping works fine.

    If power us off/on the ILM voltage they are good, but we are a 24/7 operation and power cycling the MDU is considered risky.

    We have had this problem before and the only solution was to rebuild the virtual machine and assign all MDU to a new network address.

    All switches ILM is connected (foundry Falstron GS) have been verified by the support of our network guys and we are told are all good. The blade server hosts about 20 VM and they work just fine from other systems SNMP traffic monitoring.

    If anyone has any ideas I'm all ears.

    Hello

    As stated, the console is the administration interface that you can use directly on the hardware. It is not a VM (as such) that connect you with the standard management GUI. You can SSH in the network or you can be "physically connected" as you say (I would use HP SIM or the ILO to connect directly to the blade). Once you have that screen upward, press 'Alt + F1' and you connect. Then you should be able to follow the KB to check the ARP table.

    See you soon,.

  • custom settings which must be read in the SCA composite

    We have some custom settings which must be read in composite of the SCA. These must be configurable.

    Examples of these default values or date formats different systems. What is the best strategy to manage these?

    (1) you can access the MBean browser through the EM console.
    In the EM console right-click on the soa-infra in the left pane. Select Administration and inside you will see the option system MBean browser.

    3. Yes, you will be able to change the properties defined in the composite.xml through the deployment plan.

  • use the enterprise manager console on the server with 2 instances

    Hello

    I had a server with 2 databases (DB1, DB2), I have 2 windows services (begun boath): OracleDBConsoleDB1 & OracleDBConsoleDB2

    My problem is that I have only 1 url to connect to 1 db (in my case always DB1)

    http://servername:1158/em/console

    is it possible to type the SID in the url, so I can use the company for my 2nd db console?

    (the two db is 11G)

    Kind regards

    O

    orapunk.com wrote:
    Hello

    I had a server with 2 databases (DB1, DB2), I have 2 windows services (begun boath): OracleDBConsoleDB1 & OracleDBConsoleDB2

    My problem is that I have only 1 url to connect to 1 db (in my case always DB1)

    http://servername:1158/em/console

    is it possible to type the SID in the url, so I can use the company for my 2nd db console?

    (the two db is 11G)

    Kind regards

    O

    As suggested at, but not directly stated by others, a given instance of dbcontrol will work with a database. However, you can still have multiple databases on one host, and each database has its own dbcontrol. Differentiation will be each console runs on a different port, and this number is port part of the url that you use to reach the console. The url, with port, is reported when the dbcontrol is configured, and in my view, it is also reported to start the console.

  • How to install the Microsoft Management Console?

    Hello

    I have a Satellite (S1800-412) with Win XP.
    Now I need to install the Microsoft Management Console on, but I have not possibility, because I have only Toshiba CD-ROM product recovery.

    to install the Microsoft Management Console, I should have the XP installation CD, but I did not.
    So my question is:
    What can I do with Toshiba CD-ROM product recovery to install on my satellite Microsoft Management Console?

    I'm trying to understand the policy of Microsoft and Toshiba, but it doesn't look good when I spend much for the XP system and I don't have the cd it wit.

    How can I solve my problem?

    I need to get an answer as soon as POSSIBLE!

    Concerning

    Stan

    Haha! It's easy:

    1. click on run.
    2. type in mmc.exe
    3. press enter
    4. There you are

    :)

    Where is my reward? (:)

  • What is the orange dot on the bottom of page average smiley face?

    What is the orange dot on the bottom of page average smiley face?

    Is this orange dot on the smiley thing in the instant message box

  • website valid W3C, initially no error reported by the developer toolbar. But by right clicking (giving the menu validation), the toolbar reports two errors: width and height. Despite the fact that each page is posted! The forum for the toolbar, this i

    website valid W3C, initially no error reported by the developer toolbar. But by right clicking (giving the menu validation), the toolbar reports two errors: width and height. Despite the fact that each page is posted! The forum for the toolbar, it's supposed to be a browser error. So, how can it be fixed? I use FF 3.6.6

    This has happened

    Each time Firefox opened

    is after upgrade to 3.5?

    http://chrispederick.com/forums/viewtopic.php?PID=8239#p8239

    You create a new profile and install only the extension Web Developer, as recommended Chris?

  • Re: How to access the Windows Recovery Console?

    How can I access the Windows Recovery Console. The State of KBs Microsoft it may be accessessed to start with the DVD of the OS. However, you provide OS DVD only Toshiba recovery disks. When I boot them it gives only the option to erase all data and restore the original state.

    I have a Toshiba Qosmio F10 running Windows 7 32 bit.

    The reason why I need the recovery console is due to a breakdown of chkdsk which results now it running whenever I start up and hanging each time. Other Articals MS say I can get out of this infinite loop by using the Windows Recovery Console.

    > I have a Toshiba Qosmio F10 Windows 7 32 bit.
    Are you sure you have Qosmio F10?

  • How can I include results of a subsequence, which takes place in a new thread in the test report from the main sequence

    Hello!

    I have ", working with the Version 4.2.1 of TestStand. I have a main sequence, which sous-séquences of different calkls. All these steps are reported correctly. One of the subsequences works like "new thread". How can I include his results in the common test report of the main sequence?

    I have variable markes of the subsequence as is required for the test report (it works OK if it's not a new thread). If the digital test, which is performed in this subsequence is correct, I get no results at all. If the digital test could not get a "message in red" who whithout having failed to test any reference to step somewhere in the report of the main sequence or values of vaiables that were not correct.

    I tried an option 'on the fly' in the Configuration of the report, but n ' got no useful result. What should I do?

    Best regards

    Hello Pericles,

    You can use a queue time for the results of the wire once it ends. Place a waiting time after the call to the thread in your MainSequence at the location where you want the results to add to the report (compared to other results). In the waiting step Setup tab, select wait: Thread the threaded sequence, and then select call to specify sequence call the radio button. You can also use an object reference if you need results if poster somewhere where elsewhere - you would just add an object reference to the appeal of sequence threaded in its thread settings dialog box.

    I hope this helps.

    -Jack

  • Create new report if the file size is too large

    The sequences I run in TestStand have the ability to generate large reports and I am looking for a way to start a new sequence of intermediate report if the file size exceeds certain limits, either start a new report every night at midnight.

    I am currently using TestStand 2014 and reports ATML 5.00.

    Here, any help would be greatly appreciated.

    mattb1 wrote:
    [...]

    I was hoping I'd be able to use some substitutions to get there, but it sounds a bit more complex than that. [...]

    There is no specific substitutions that solve this problem 'in configuration and only few implementation".

    The point is that you should follow the following steps:

    1. check the size of the file after writing a new segment of report data.

    2. If size > configured the file size, create a new file. Write a footer in the previous file, duplicate the header for the new file information and store the handle to file for all the previous files.

    3. once the test is complete, update the header in all files (remember: the header contains the overall result of the ESA.) This is known only when the test is finished!) and finalize all the report files.

    In the plugins default report, none of the above functions is applied.

    You want may also focus on 'File offline results' as a reporting mechanism. It might be easier to change things using this approach, unless you go the recommended manner: database.

    Norbert

  • Get the Max values and average of the different cycles in the single channel

    Hello

    I'm trying to get the Max values and average of the single channel that has different cycles it contains. I tried to use commands such as Chnclasspeak3 and chnpeakfind, but they were not useful for me. What I need is the Max values and average of the different cycles numbers saved in the data channel.

    Exampld if the string contains 5 numbers of repetitive cycles, then we must find the maximum values and the average of these 5 cycles in the single channel. Attached reference data. This is the .raw file and I have the plugin for it to use in diadem 11.1.

    Kind regards

    X. Ignatius

    Hello, Ignatius,.

    Sorry, it took some time to provide a replacement based on the script for the function. Please take a look at the attached script. I changed the script to use my function if the tiara-version is less than 12. My script function is not as fast and more stable than the implementation of tiara, but for now, it does the job

    Andreas

  • OfficeJet 6500 a: Office jet 6500 has printed a computer; produce reports of the printer

    My trusty old Officejet 6500 has suddenly cannot print from my computer.  When I try to print, I receive a FAX form on my screen.

    I printed the printer Hardware Information (2 pages) and the status of the report of the HP printer Assistant printer and they look great.

    How to print the Test Page from Windows printer and the Configuration Page of HP network?  I printed these years when I installed the printer, but I do not remember how I accessed them.

    Thank you for your help.

    It seems that the FAX is set as the default for your printer.  Try the following: click on start, devices and printers. Right-click on the Officejet 6500, and then select set as default.  At this point, it can come with a selection to the FAX or printer, select the printer.

Maybe you are looking for