How to determine current SIMMs installed in 2801?

Hi,
I have a remote 2801 with 128MB DRAM installed, but need to know if it exists of 1 x 128MB SIMM or 2x 64MB SIMM. Is there any way to determine this remotely (like you can with the 3640 series)?
If not, any one happen to know what is the default (1 or 2 banks) for the CISCO2801?
Thanks,
Leo

Hi Leo
Cisco 2801 routers have 128 MB of SDRAM soldered onto the system board.. You can install an additional DIMM in the DIMM connector to expand system memory to a maximum of 384 MB.
For more info:
http://www.cisco.com/en/US/products/ps5854/products_installation_guide_chapter09186a00802c5ad8.html#wp1026137
HTH

Similar Messages

  • How to determine current period start and end dates

    Hi All,
    If given previous period start date and end date, how to determine current period start date and end date?
    Suppose if given previous period start and end dates are 12/28/08 - 01/30/09, then current period start date and end date will be 01/30/09 - 02/27/09. (where 12 is the previous period, 28 is the day, 08 is the year......)
    Can you please suggest an FM to determine the current period dates?
    Thanks & Regards
    Gowthami

    >
    gowthami karunya wrote:
    > If given previous period start date and end date, how to determine current period start date and end date?
    > Suppose if given previous period start and end dates are 12/28/08 - 01/30/09, then current period start date and end date will be 01/30/09 - 02/27/09. (where 12 is the previous period, 28 is the day, 08 is the year......)
    Hello,
    I am assuming you have the Company Code with you & proposing this solution.
    TABLES: bkpf.
    PARAMETERS:
    p_bukrs TYPE bukrs.
    SELECT-OPTIONS:
    s_date FOR bkpf-budat.
    DATA :
    l_perio LIKE bkpf-monat,
    l_poper TYPE poper,
    l_year  LIKE bkpf-gjahr,
    l_spmon TYPE spmon,
    l_periv TYPE periv,
    l_date1 TYPE datum,
    l_date2 TYPE datum.
    CALL FUNCTION 'BAPI_COMPANYCODE_GET_PERIOD'
      EXPORTING
        companycodeid = p_bukrs
        posting_date  = s_date-high
      IMPORTING
        fiscal_year   = l_year
        fiscal_period = l_perio.
    CONCATENATE l_year l_perio INTO l_spmon.
    * Get the next period
    IF l_perio < 12.
      l_perio = l_perio + 1.
    ELSE.
      l_perio = '01'.
      l_year = l_year + 1.
    ENDIF.
    MOVE l_perio TO l_poper.
    SELECT SINGLE periv INTO l_periv
    FROM t001
    WHERE bukrs = p_bukrs.
    IF sy-subrc = 0.
      CALL FUNCTION 'FIRST_DAY_IN_PERIOD_GET'
        EXPORTING
          i_gjahr        = l_year
          i_periv        = l_periv
          i_poper        = l_poper
        IMPORTING
          e_date         = l_date1
        EXCEPTIONS
          input_false    = 1
          t009_notfound  = 2
          t009b_notfound = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'LAST_DAY_IN_PERIOD_GET'
        EXPORTING
          i_gjahr        = l_year
          i_periv        = l_periv
          i_poper        = l_poper
        IMPORTING
          e_date         = l_date2
        EXCEPTIONS
          input_false    = 1
          t009_notfound  = 2
          t009b_notfound = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      WRITE: / l_date1, l_date2.
    ENDIF.

  • How to determine current ORACLE XE db has been used

    I installed the BPA Architect, and it seems all right.
    during stalling process, I've choiced using XE db, but can't find any schema throug XE admin tools.
    how to determine which db is been used in Architect?

    Hi,
    Lockservice.cfg file in your config folder contains the details of Database being used by your Business Process Repository.
    Regards
    ashish

  • 11i: How to determine current CU level?

    I'm new to 11i and would like to know how to determine if we are running 11.5.10 CU2?
    I was hoping to find a SQL statement or some configuration file somewhere that would provide definitive information about the installed "consolidated update".
    Thx.
    Don

    903322 wrote:
    I'm new to 11i and would like to know how to determine if we are running 11.5.10 CU2?
    I was hoping to find a SQL statement or some configuration file somewhere that would provide definitive information about the installed "consolidated update".SQL> select release_name
    from fnd_product_groups;
    https://forums.oracle.com/forums/search.jspa?threadID=&q=RELEASE_NAME+AND+fnd_product_groups&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    From the application: Help > About
    Thanks,
    Hussein

  • OBIEE11g: How to check current environment installed/applied patches?

    Hi all,
    Does anyone know how to check current OBIEE environment installed/applied patches? I don't have the patch installs anymore and now trying to figure out how to view them. My current environment is OBIEE 11.1.1.5.
    Thank you in advance!

    To check Patches applied, do changes where ever required.
    Use this command
    cd $FMW_HOME/Oracle_BI1
    opatch lsinventory|grep applied
    In Windows from C:\OFM\Oracle_BI1\OPatch
    Use this command
    opatch lsinventory applied
    opatch.bat lsinventory –oh <EPM_ORACLE_HOME> –jdk <MIDDLEWARE_HOME>/jdk160_21
    To check the version login to Answers-> Administration you can find the version a top use weblogic user to see.
    Appreciate if you mark as correct/helpful

  • How to determine current tax configuration owner (content_owner_id)

    I am attempting to query zx_rates_b to find a record where tax_rate_code = '6X' to find only the record for the current configuration owner. In 11i, we used the organziation id to identify the correct record.
    The following query returns too many records and need to be limited by content_owner_id.
    SELECT zrat.tax_rate_id, zrat.tax_rate_code --atco.tax_id, atco.tax_rate
    INTO v_tax_code_id, v_ap_tax_rate
    FROM --ap_tax_codes_all atco,
    po_vendor_sites_all pvsi, zx_rates_b zrat
    WHERE pvsi.vendor_site_id = r_ooli.execute_vendor_site_id
    --AND atco.name = pvsi.vat_code
    AND zrat.tax_rate_code = pvsi.vat_code
    --AND atco.org_id = r_ooli.debited_org_id
    --AND atco.enabled_flag = 'Y';
    AND zrat.active_flag = 'Y'
    AND trunc(sysdate) between zrat.effective_from and zrat.effective_to;
    How should I determine the content_owner_id?
    This code is executed during a concurrent request

    ZX_TAXES_B, ZX_STATUS_B and ZX_RATES_B tables contain content Owner Id column... you have to first find out the relevant content owner id from the complete list of options that are available, then hardcode the same to your SQl query to narrow down on unique record ...
    Regards,
    Ivruksha

  • How to determine current used ip address is from company wifi

    Hello guys, currently doing an attendance app (ios / android) for user to check in / out (will capture location coordinate, current used IP and etc, then send back to the server). Besides will use C# web as back-end reporting.
    At back-end reporting how do I determine or check the IP address being used is from company WiFi or not ?
    The purpose of this is because ensure the user check in / out within the office area. On the other hand, sometimes user will outstation at client side and check in / out by using the app (ios / android).
    Besides, any better ways to do this ?
    Thanks

    Hi loonloon,
    Based on your description, your case related to ios / android app. Both of them are third-patry mobile product. I am afraid this is out of our support. Thanks for your understanding and effort.
    Best regards,
    kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Graphics2D: How to determine current stroke width?

    I am trying to do something that sounds like it should be easy: I need to determine the current width of the stroke that is currently in effect in a Graphics2D. Graphics2D has a method called getStroke() which returns a Stroke. This in turn is an interface to BasicStroke which does have a getLineWidth() method.
    I don't seem to be able to conect the two. I don't know how to call a method in an object to which I only have an interface. Any advice on how to do this?

    Thanks Kaj. That is the right answer. I was screwing it up by having the cast nested inside a bigger expression. Made me doubt my own knowledge. All is OK now.

  • How to determine current state of resource group?

    Good morning!
    I'm in the process of creating a monitoring policy which would alert if a specific resource group is in a state other than "online". Is there a command line executable available that I could utilize which would return the current status of a resource group? I know that the status is written to the /var/adm/messages file, but parsing that would be my last resort.
    Thanks!

    Check out:
    man -M /usr/cluster/man scha_resourcegroup_get
    in particular the options:
    -O RG_STATE
    and
    -O RG_STATE_NODE
    Tim
    ---

  • I wanted to know how to unlock my iphone, since I had to restore it and when it restarted, it appeared this message: "The SIM card que you currently have installed in this iphone is from a carrier that is not supported under the Currently actuvation polic

    I wanted to know how to unlock my iphone, since I had to restore it and when it restarted, it appeared this message: "The SIM card que you currently have installed in this iphone is from a carrier that is not supported under the Currently actuvation policy that is assigned by the server activion. this is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request que this iphone be unlocked by your carrier. Please contact Apple for more information. "
    I need help, I use my phone for everything enclusive to work. I appreciate if you can help. I'm from Brazil. My name and giullia.

    Did you purchase this device from Apple or an authorized reseller? It sounds as if you had a device that was jailbroken/hacked to operate on your carrier. Upon updating the iOS, it is now locked back to the original carrier the device was locked to.
    Only the carrier the device is locked to can authorize an unlock. You will need to make contact with that carrier and see if they provide unlocking services, and if they do, if you qualify for an unlock. Otherwise, you are out of luck. One that carrier can take care of the unlocking.

  • Can I do a clean install of Lion, onto my Mac Book Pro4,1, that is currently running 10.5.8? I have seen U-tube videos on how to do a clean install to Snow Leopard, and another from SL to Lion, but can zero out my HD, and do a clean install to Lion?

    Can I do a clean install of Lion, onto my Mac Book Pro4,1, that is currently running 10.5.8? I have seen U-tube videos on how to do a clean install to Snow Leopard, and another from SL to Lion, but can zero out my HD, and do a clean install to Lion?

    See this article.

  • How can I delete entries in the list of currently not installed apps

    Hi everybody
    I use an iPhone 4 on fw 4.3.5 w/ german localisation. When I start the app store on the phone at the top of the update section is an entry purchased apps (or the like, don't know whether the translation is totally correct, but I guess you know what I mean).
    Typing on it delivers a list of apps with the choice to display the ones "not on this iphone". This list contains really ALL of what I ever had installed on my mobile.
    I would like to remove some entries or rebuild the list with only that apps currently being installed. Does anybody know how to do that? May that be related to the upcoming icloud service? I already did some research but did not find any hints.
    Thanks in advance for any ideas

    HI,
    If you're talking about making changes to your Purchase History... You can't...
    If you mean Deleting Apps... See here:
    How do I remove an application from my device?
    Select your device on the left side of the iTunes window.
    Click the Applications tab.
    Select Sync applications.
    Click the Selected applications button.
    Deselect the applications you wish to remove.
    Click Apply.

  • I have creative cloud, I have both photoshop and lightroom current versions installed - I was using the trial period.  I paid for the 9.99 a month and now I'm trying to figure out how to get a current program so it won't expire - which is still says it is

    I have creative cloud, I have photoshop and lightroom current versions installed - I was using the trial period.  I paid for the 9.99 a month and now I'm trying to figure out how to update this. 

    You need to uninstall the trial applications and reinstall from the CC app.

  • In app store some applications are of very small size like 15-20 Mb and after installing them they become more than 100 mb. how to determine their actual size???

    in app store some applications are of very small size like 15-20 Mb and after installing them they become more than 100 mb. how to determine their actual size???

    The app store size is probably just the software, while the size on your iPhone includes data.
    You can determine the size on your iPhone by looking at Settings > General > Usage.

  • How to determine the patch number used (installed using runInstaller)

    Whilst it easy to find the patch number installed using opatch by using the lsinventory argument.
    Is there a way to find patch number for a patch applied via runInstalled?
    META-INF/MANIFEST.MF from platform/iam-platform-kernel.jar,gives the following:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 19.1-b02 (Sun Microsystems Inc.)
    Product-Version: 11.1.1.3.0
    Build-Number: 11.1.1.3.0.0.0
    Built-By: aime1
    Build-Tag: Build_11.1_1_3.0_0_0
    Built-at: 05/02/2011 06:46
    Version: 11.1.1.3.0
    Build-Label: IAM_11.1.1.5.0_GENERIC_110502.0500
    Build-Transaction: NONE
    But I need the exact patch number, eg, p1234567.
    Anyone know where to find this information?
    The system has been patched from 11.1.1.3 to 11.1.1.5
    I am looking for the patches used for WLS, SOA and OIM.
    Regards
    Hanif

    Another way to get it is:
    SELECT XSD_CODE,XSD_VALUE FROM dev_oim.XSD WHERE xsd_code='XL_ADE_LABEL';
    Check Note: 1247564.1 for 11.1.1.3 and 1360009.1 for 11.1.1.5 for builds to patch mapping. Check Note:1299977.1 for how to determine build numbers.
    For WLS you can use: http://docs.oracle.com/cd/E13222_01/wls/docs81/admin_ref/clic.html
    For OIM as mentioned above
    For SOA: $mw_home\Oracle_SOA\bin\soaversion.cmd (or soaversion.sh) to know the SOA version or
    SELECT version, status, owner FROM schema_version_registry where owner = 'DEV_SOAINFRA';-Bikash

Maybe you are looking for