How to use SNMP to access interface counters for WAN port when not in bridged mode

Hi All,
Can't fault my timecapsule, however just struggling to get one little bit of functionality working.  I'm keen to get access to the WAN port interface counter information via SNMP, so I can track total bandwidth/throughput & also volume. 
I have no issue getting SNMP to work & can see the 2.4 & 5.0GHz network counters, also total number of WIFI clients, wlan0, wlan1 and bridge0 interfaces.  Trouble is none of these are the WAN/external ethernet port.
I see that it is likely that I'm trying to find the vlan1 port, however from what I'm reading this may only be available when the device is running in a routed mode (I'm running in bridge mode).
Anyone able to suggest anything?

Some cable modem you can turn off NAT.. and then use the TC in router mode.. or even use DMZ if the cable router allows that.
Have you ever looked at gargoyle router firmware and its ability to count and quota all clients connecting to internet service.. it is a simply fantastic firmware and can be loaded onto a router that costs $70-130 dollars.. it is 3rd party but very solid if you choose the right combo.
http://www.gargoyle-router.com/wiki/doku.php?id=screenshots

Similar Messages

  • How to use same Data Type and Length for two fields

    How to use same data type and length for two fields when using 'FOR ALL ENTRIES IN' in a select statement? For instance the select queries are :
    SELECT bukrs gjahr belnr lifnr budat bldat zlspr dmbtr waers shkzg
    FROM bsik
    INTO TABLE it_bsik
    WHERE bukrs = p_bukrs
    AND lifnr IN s_lifnr.
    IF it_bsik IS NOT INITIAL.
    SELECT belnr gjahr awkey awtyp
    FROM bkpf
    INTO TABLE it_bkpf
    FOR ALL ENTRIES IN it_bsik
    WHERE belnr = it_bsik-belnr
    AND gjahr = it_bsik-gjahr.
    IF it_bkpf IS NOT INITIAL.
    SELECT belnr gjahr lifnr xblnr
    FROM rbkp
    INTO TABLE it_rbkp
    FOR ALL ENTRIES IN it_bkpf
    WHERE belnr = it_bkpf-awkey+0(10)
    AND gjahr = it_bkpf-awkey+10(4).
    ENDIF.
    ENDIF.
    Here it gives an error in the 3rd select query that 'When you use the addition "FOR ALL ENTRIES IN itab", the fields "GJAHR" and "IT_BKPF2-AWKEY+10(4)" must have the same type and the same length.'
    Kindly clarify.

    Hi Saurabh,
    Please see the example code that I have developed for you. It will help you solve the problem.
    REPORT ZTEST_3 .
    tables : BKPF.
    data : begin of it_bkpf occurs 1,
             belnr type RE_BELNR,
             awkey type awkey,
             awtyp type awtyp,
             gjahr type GJAHR,
           end of it_bkpf.
    data : begin of it_bkpf1 occurs 1,
             belnr type RE_BELNR,
             awkey type gjahr,              " change the data type
             awtyp type awtyp,
             gjahr type GJAHR,
           end of it_bkpf1.
    data : begin of it_rbkp occurs 1,
             belnr type BELNR_D,
             gjahr type gjahr,
             lifnr type LIFRE,
             xblnr type XBLNR,
           end of it_rbkp.
    select belnr
           awkey
           awtyp
           gjahr
           from bkpf
           into table it_bkpf
           where BUKRS = 'TELH'.
    loop at it_bkpf.
    it_bkpf1-belnr = it_bkpf-belnr.
    it_bkpf1-awkey = it_bkpf-awkey+10(4).           "Here only append the required length.
    it_bkpf1-awtyp = it_bkpf-awtyp.
    it_bkpf1-gjahr = it_bkpf-gjahr.
    append it_bkpf1.
    clear it_bkpf1.
    endloop.
    select  belnr
            gjahr
            lifnr
            xblnr
            from RBKP
            into table it_rbkp
            for all entries in it_bkpf1
            where belnr = it_bkpf1-belnr
    This is just an example. Change the fields according to your requirement.
    Regards
    Abhii
    Edited by: Abhii on Mar 9, 2011 9:08 AM

  • How to configure snmp on loopback interface, on vrf TEST, in ASR 9000 series

    Hi there!
    How to configure snmp v2, with community string, for ASR 9000 series, in interface loopback 1, that has vrf TEST
    Regards!

    oh that is somewhat vague, but let me try...
    in order to enable snmp access to an interface in a vrf you need to enable MPP (management plane protection) in that vrf.
    Something like this:
    control-plane
     management-plane
      inband
       interface Loopback100
        allow all
    if you have this and it doesn't work, a config snippet and some debugs (like debug snmp packet) will help to define what to do next.
    regards
    xander

  • How to use SNMP Agent

    Hi All,
    Can anybody tell me how to use SNMP Agent to monitor the Access and Identity Servers

    Hi Ramesh,
    I cannot comment on WebLogic & SNMP - this kind of questions would
    probably need to be asked on a WebLogic forum.
    If you're looking for an SNMP Manager API though, you may want to have a
    look at the Java Dynamic Management Kit (commercial product,
    free evaluation):
    http://java.sun.com/products/jdmk/index.jsp
    Hope this helps,
    -- daniel
    JMX, SNMP, Java, etc...
    http://blogs.sun.com/jmxetc
    null

  • How to use JAPI to Access Essbase 6.5

    Do anyone knows How to use JAPI to Access Essbase 6.5?
    I was told to install Enterprise Services 7.3.1.10.
    But when I test eds samples, I can connect Essbase but can not get data from Essbase.
    Need to change another Enterprise Services(I was told 7.3.1.10 is the latest version), or do some config in 7.3.1.10.
    Thanks a lot in advance

    Gee is correct. You will need to use EAS 7.x to add an analytic server. You will also have to do a few other tasks such as synch'ing security, etc.
    Further, as you are not accessing the exact same version of Essbase as your version of EDS, there is a property setting you will have to change to be successful. In eds\7.1.3\bin, open essbase.properties and modify the server.olap.direct setting to set it to false. What this setting does is forces EDS to use it's own private set of C API files and to use them for all calls to Essbase. Otherwise, EDS will attempt to use pure Java calls to the server. Unfortunately, the pure Java calls were implemented in an 'evolutionary' manner so every Essbase version got more calls until sometime in the System 9 timeframe. By the time 9.3 shipped (and maybe before, I would have to check), all calls the server are pure Java and that property setting is no longer available.
    Tim Tow
    Oracle ACE
    Applied OLAP, Inc

  • How to use SNMP??

    As a j2ee developer , how to use SNMP in our code? it is developer work? or is it administrator work???
    thanks

    You have to enable snmp manager process to be able to poll your device from IOS itself.
    To enable snmp manager enter global config command snmp-server manager.
    The SNMP manager process sends SNMP requests to agents and receives SNMP responses and notifications from agents. When the SNMP manager process is enabled, the router can query other SNMP agents and process incoming SNMP traps.
    Most network security policies assume that routers will be accepting SNMP requests, sending SNMP responses, and sending SNMP notifications. With the SNMP manager functionality enabled, the router may also be sending SNMP requests, receiving SNMP responses, and receiving SNMP notifications. The security policy implementation may need to be updated prior to enabling this functionality.
    SNMP requests are typically sent to UDP port 161. SNMP responses are typically sent from UDP port 161. SNMP notifications are typically sent to UDP port 162.
    Examples
    The following example shows how to enable the SNMP manager process:
     Router(config)# snmp-server manager
    -Thanks
    Vinod
    **Encourage Contributors. RATE Them.**

  • In Multimapping how can we configure the Receiver , Interface Deter for BPM

    Hi Friends ,
    I am trying the the BPM scenario using Integration Process
    BpmPatternCollectTime
    from SAP BASIS ® SAP BASIS 7.00 in the namespace http://sap.com/xi/XI/System/Patterns
    I have done the scenario like the above . I have followed all the Steps which are used in above scenario.
    I am using a File Sender Adapter and Receiver Adapter .
    It is Successfully picked up the File but nothing is happening after that .
    I am using two receiver Determination one from Ob to IP and other from IP to FIleReceiver ( IB) .
    But, I am Getting error as Block1 (No agent) Error in the PE graphical diagram
    I have checked in SWWL my Integration Process Return code is "0"
    The steps Which i have followed in BPM are
    1. Block with Deadlkine branch and Exception handler( as TimeOut Exception)
    Block Start and Block End as New Transaction
    2. Inside Block infinite Loop which contains Receive step ( Actives the Correlation ) and Multiline Container element which appends the Messages with CollectMessage
    3. Transformation Step
    It creates the New Transaction and Interface Maping from CollectMessage List to New Mesage
    4. Send Step
    It sends the New Message . It creates the New Transaction .
    Can you Please tell me how to configure the Receiver and Interface Determination for the above scenario ?
    Regards.,
    V.Rangarajan

    Hi Ranga
    have a look at these
    you can ref: this link to find example where a receiver determination step is used in BPM- http://help.sap.com/saphelp_nw04/helpdata/en/43/6211b11c895f6ce10000000a1553f6/content.htm
    More abt RD step in BPM - http://help.sap.com/saphelp_nw04/helpdata/en/14/d5283fd0ca8443e10000000a114084/content.htm
    if useful pls reward

  • How to restrict the change access in CRM for OLTP orders

    Hi Guru's,
    Please let me know  how to restrict the change access in CRM for the orders that are created in ECC. The ECC orders will only for display in CRM but not for change,
    We have  the orders that are  created in ECC, it will flows to CRM and should restrict the access to get in to the change mode in CRM but as of now CRM  system is allowing change mode for ECC orders and ending up with errors.
    Is there any additional middleware parameter that needs to be added to SMOFPARSFA table to get this functionality! Please advice! Thank your for your help.
    Regards
    Suneel

    Hi.
    You can use the PFCG role to control if the user is able to create, change, delete or only display a business transaction type.
    Regards.

  • How do i listen to my itunes on my ipad (3) when not connected to wifi? It shows a screen stating that the Itunes store can not be accessed.

    How can I listen to my itunes on my ipad (3) when not connected to wifi? It shows a screen stating that the Itunes store can not be accessed.

    You have to sync your music to your iPad, this can be done from a WiFi connection to your iCloud account for those purchased from the iTunes store.  Non-iTunes music has to be synced using iTunes Match, a fee is charged for that premium service.

  • How do use my ITunes balance to pay for Apps

    How do use my ITunes balance to pay for Apps?

    You just buy what you want.  If you have a credit (balance), it is automatically used before you are billed (if you run over your balance).
    How to manage unused iTunes Gift Card and Gift Certificate balances
    "Each time you purchase content, iTunes will deduct funds from the credit until it's depleted."

  • How to Use A Timemachine Back Up Drive for backup and storage?

    I bought a 1TB external drive, and installed a 1TB SSD in my Macbook Pro 13in Early 2011 i-5, and have 426gb free, the other 200 or so is for bootcamp. I used the external as a timemachine back up, but there should be some extra space right??? I need someplace for storage for my videos and photos for work, and I don't want to go out and buy another 500gb external. Can I just use the one for timemachine for both timemachine and storage?

    I plan on getting a second drive eventually but this is more of a last minute kind of transfer, i need to take a bunch of wedding videos and move them over to my laptop, and I don't have the money or time to get another external.
    how would I use the current one I have for storage, because when I plugged it in it reads it only as a time machine back up and drive and opens differently, I don't have it on me now to test it again, but just drag and drop files into it?

  • Using several UMTS access points (APN) for different services

    Hello,
    I wonder if it is possible to use several UMTS access points (APN) for different services.
    situation:
    1) The iPhone is used for business AND private purposes.
    2) The company's mobile telephone contract includes a APN, which is only usable by the employees' mobile phones.
    problem / question:
    Is it possible to define two access points in the iPhone, that for example the exchange account uses the company's APN, while all the other apps use the standard APN of the carrier?
    Problem is, that some iPhone's benefits like Push-Messages are blocked by the carrier's APN. Now, I have to switch the access point by installing the appropriate profile every time I want to check my e-mails or vice versa for using "normal" apps.
    I hope you can hep me.
    Greets from Germany
    Mitch

    Thanks for your help! This really helps a lot! We actually only want to replace the autonmous access point with the controller solution and make one WLAN available at another site. From what I can see, this is possible with our current solution - we just need to switch from Layer 2 to Layer 3 and purchase the corresponding amount of supported Access Points (I think we should be able to get some refurbished ones).
    Am I correct in assuming that the Access Points we want to replace (AIR-AP1230B-E-K9 with 802.11b radio only) cannot be upgraded to lightweight ones? Since if I understood document http://www.cisco.com/en/US/docs/wireless/access_point/conversion/lwapp/upgrade/guide/lwapnote.html correctly, this is not possible with access points that only have 802.11b radios.
    Regarding the switch from Layer 2 to Layer 3: Do we really only need to perform the steps I described in my first post?
    And one last question regarding REAP. As far as I understood this is only needed when local traffic needs to be maintained in case the connection to the WLC becomes unavailable. So we really don't need it if we want to access resources that are only available over the WLC?
    Thanks again for your help!
    Michael

  • I have a large number of PDFs documents stored on a windows pcthat I would like to access on my iPad mini even when not cBooking referenceonnected to a network.

    i have a large number of PDFs documents stored on a windows pc that I would like to access on my iPad mini even when not connected  to a network. Does anyone know a solution. Eg maybe card reader and a app.

    Those devices have mixed results depending on the application. If the application does not support the device, then you are out of luck. There is no file manager in IOS to allow you to move files between folders because there are no folders that you can access. An app has to specifically support a storage location to access files.
    It's not that bad. The app has to have the ability to accept data from another app.  The latest memory dongles come with an ios app to access the external storage.  You then transfer the pdf from dongle's app to your app.  If your app can accept data from dropbox, it will be able to accept data from the memory dongle app.
    Other solutions:
    == "GoodReaderUSB is a practical and useful application whose main purpose is to help users transfer files and folders from their mobile device to PC effortlessly. It helps them to move and backup important data from their Apple device via a USB cable."
    http://www.softpedia.com/get/IPOD-TOOLS/Multimedia-IPOD-tools/GoodReaderUSB.shtm l
    == "iExplorer's disk mounting features allow you to use your iPhone, iPod or iPad like a USB flash drive."
    http://www.macroplant.com/iexplorer/

  • How do I Install or re-buy iPhoto for my Mac when the app can't lunch?

    How do I Install or re-buy iPhoto for my Mac when the app can't lunch?
    The App Store does not let me buy iPhoto from scratch nor update it. I used the original Applications Install DVD to re-install iPhoto, and the icon appeared but the app could not be used because iPhoto 2.1 is not compatible with the Mac operating system OS X (10.9.2)? I thried to update manually through apple support, and a notification of unauthorized licence did not let it happen.  What is this? What happened with my iPhoto? What can I do to solve this and safe my photos? I'm willing to pay for it, but even the app store say that it can't becuase it was suppousely bought through another account? Please help!

    Not launching is probablay not a software issue - it is probably a data issue
    No - iPhoto 2 version 2.1 is not compatible with Mavericks - or pretty much anything else - you need to purchase iPhoto '11 version 9.5.x from the App store
    LN

  • How do I get a new icloud account for my phone when it was setup with my wifes account?

    How do I get a new icloud account for my phone when it was setup with my wifes account?

    Go to Settings>iCloud and sign out. Any synced data, such as calendars and contacts, will be removed.
    To get a new ID: go to http://appleid.apple.com and create a new ID - you will need a different non-Apple email address from any ID you already have.
    Then go back to Settings>iCloud and sign in there, enabling any data types you want to sync in the list there. You will be asked to create a new @icloud.com address when enabling Mail.

Maybe you are looking for

  • Ipod Touch Recovery Mode Loop - Error Code 14

    I attempted to update my Ipod Touch (3rd Gen 32 GB) to the latest firmware (IOS 5 i think). It froze during the process and has since been stuck in a Recovery Mode loop. I have followed all recommendations on their website, called Apple support and r

  • Performance tunning in select

    Hi People! I need some advise! I trying to do a performance tunnig in a program. So, I ran SE30 and the most critical time is spent in this select:     SELECT  refbt refbn rfpos rfknt             rftrm rfart lifnr lednr             objnr hrkft rforg

  • N97 Copy & Past missing?

    How can I copy urls from the browser, or past passwords into my wlan configuration? On my N95, there was a dedicated key for copy&past but this key has been stripped by Nokia on the N97. I could live with that, if there would be a key combination equ

  • Rendering...Can anyone help???

    I have 2 classes for rendering images. When i run the application, the images kept flashing, may i know how could i actually have 1 image appearing instead of many images flashing? In other words, i would like in a way similar to mosaic rendering pro

  • Will Categories work when a folder's versioning is enabled..

    Hi, I have a defined to category attribute with the help of TestCategories class of Content DB dev kit. I am able to upload a document without any problem and retrieve the category details, when versioning on the folder is disabled. But, when the ver