How do I view/log Easy VPN users connections?

I have a 2811 as an Easy VPN server. How do I view and log users who login via local accounts? This can be by either CLI or SDM access.
Thanks
Leigh

Leigh,
Long time no talk :-))
On the 2811, do a "show aaa user all" and check if you are able to see the users connected. In case you dont see any outputs, enable AAA Accounting on the 2811 and then run the command again.
Please refer the below URL for enabling VPN Accounting.
http://www.cisco.com/en/US/customer/products/sw/iosswrel/ps1839/products_feature_guide09186a00801541ba.html
Let me know if it helps.
Regards,
Arul

Similar Messages

  • How do you reset a specific vpn user that is sharing an ezvpn tunnel?

    I have been testing vpn clients on Vistax64 and one of them seems to have worked. I am now unable to access the machine and need to find a way to terminate the vpn session for this user.
    It also exposed my lack of knowledge is simple vpn maintenance. How do I view all the users, kick someone off who has been connected too long, etc..
    I search all over and havent found any document that will tell me how do do this. I suppose I lack the proper terminology to search for it.
    Please give me a hand.

    You could do a "show crypto session", identify the hung session and then do a "clear crypto session username" to clear it.
    Thanks,
    Marcos

  • Authentication for easy vpn users using windows ad and xauth on pix firewa

    Hii
    We need to authenticate the VPN client users from windows as pix as the network device where all vpn configuration done
    Need the accounting for those vpn users.
    Thanks
    Manish GaurPlease guide me

    Manish,
    Which version of the pix os are you running 6.x.x or 7.x.x. If your using 6 your have to use radius. Follow this guide for radius:
    http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a00800b6099.shtml
    For the actual pix configuration its easiest to run through the vpn wizard in PDM (PIX Device Manager)
    The radius guide should work for 7.0 if you run the ADSM Wizard for the vpn portion.
    Patrick
    Please rate any posts that are helpful.

  • Tracking VPN user connectivity

    Is there an easy way on the ASA to track user connectivity statistics? I have found that I can get a syslog record when a user connects / disconnects but am looking for an elegant way to track a bit more. On the old Concentrator there used to be a log entry when a user disconnected that gave things like time connected and the amount of data transferred. I would like to figure out a way to duplicate this on the ASA and maybe even add the IP addressed they received from the DHCP pool? I though this might be part of accounting but that appears to be more for radius integration than keeping track of user usage.
    Thoughts or suggestions on how to accomplish this?
    Brent

    Cisco Security Manager product collects and stores such information (along with a lot of other things). It's a pretty hefty product though and probably more than you want to spend for doing just that one thing.
    You can use a general purpose SNMP management tool like PRTG to grab all the data as well. I know it has out of the box sensors for Cisco ASA VPN connections and users. I'm not sure if it also collects the amount of data transferred.

  • How to send notification when too many users connected

    Hi all !
    I need to send a notification from my web container when there are over 100 users connected, does anybody know how to do it without using vendor's Api but just JEE Api ?
    thanks
    Luca

    mark1970__mtb wrote:
    Hello,
    If you create an object that implements javax.servlet.http.HttpSessionBindingListener,
    you can define valueBound and valueUnbound methods. I usually call it a User class. Also you
    can have a static int, counter, in this class, which is accessible by all
    classes (make it public or create increment, decrement and getValue methods). In
    the valueBound method, get it to increment the static int, in valueUnbound call
    decrement).
    Now in the JSP pages, at the top, check if the User object exists in the Session
    scope. If it doesn't, create one and add it to the Session. This will
    automatically call the valueBound on that object and increment the counter. When
    a persons session expires, or the User object is removed from the session, the
    valueUnbound is automatically called and the counter decrements.
    I usually make this check a seperate JSP page which I include on all the other
    pages. Then all you need to do is get the User.counter value at any time to see
    how many people are on the system.
    Hope it helps
    Mark
    Don't link spam, please.

  • How we can see logged in portal user

    hello SAP EP gurus,
    How i can know how man users are logged on my EP Portal and which user is using which report.Is there any way to find out this thing.?
    Also how we can see the performance of our portal?
    Waiting for earliest reply.
    regards
    Neeraj Pandey

    Hi,
    You can use " portal Activity Report" for this purpose.
    alternatively, if you have access to server you can check this through visual admin
    simply open visual admin,open on your servernode --services,click on Performance Tracing,click on JARM and choose what you want to see.
    its easy to use standard portal Activity Report.
    else you can use third party reports loke "google analytics" which will give the number of users logged in, what the navigation of each user, from which geographical area the user has logged in and all about the user logged into the portal and portal performance.
    you need to login with your gmail id and password and download the code and use it in you portal application... its very easy to use.
    https://www.google.com/analytics/home/
    PradeeP

  • How to get Current Log in BO user name in data access driver

    In universe, to get the current log in user is via @Variable('BOUSER').
    Right now, I need to be able to get the user name in the data access driver. I am writing a customized data access driver because we need to patch some where clause on the the query generated by the universe based on the logged-in user info. I only think of using end_sql parameter or adding an universe level filter to patch the @Variable('BOUSER') to the query, which would not work if user want to use customized query.
    Can anyone tell me how to get currentBO user name from connection server ? or how @Variable('BOUSER') is translated into the logged-in user name in the universe?

    Shweta,
    The link you provided was the Auditor guide for BO 6.x, I'm not sure it that is going to help Karen or not.
    Karen,
    There is function called connection
    (usage:  =connection([Query Name]), where [Query Name]
    denotes the name of the tab for the query under Edit Query)
    Here is some of the output from connection:
    4;ODBC18;MS SQL Server 2000166; VERSION=7; USER=xxxxx;
    PASSWORD=; DBTYPE=Relational; DATABASE=xxx_xxxx;
    ODBC_USER=xxxxxx; ODBC_PASSWORD=; BO_DSN=xxxx_xxxx;
    BO_DRV_CONNECT_MODE=0; 224; VERSION=6; Name=xxxxx; Shared=4;
    LoginTimeout=600; Timeout=600; Pool Time=60; Array Fetch Size=10;
    Array Bind Size=5; RecommendedLenTransfert=1000; Password_Encryption=x;
    AliasTable=; MeasureDimension=; Hint=; ConnectInit=; ArrayFetch=1;
    I'm not sure if this info helps out either, being that connection provides info on a post-processing basis and it sounds like you need to get out ahead of the SQL generation.  The @variable('bouser') would seem like the place to be, however, in allowing custom SQL to take place you loose the bouser due to an individual could customize the SQL to the point that it gets unwantingly yanked out.  The end_sql might be your answer...
    Thanks,
    John

  • How To Restrict View of Data Per User

    I am designing a reporting application in Discoverer, from Oracle Applications data. We need to show sales data to the sales people - and we would like a single Discoverer workbook to do this - the challenge is that we need to restrict the data so that the salesperson only sees his/her own data, and cannot view other sales data.
    I will need to use this same methodology for the sales managers. Each sales manager will only be able to see his/her direct reports' sales data.
    How would you design this? Could we use a single Discoverer workbook for all sales people - and there be row-level security to restrict the current users' search results?
    Thank you,
    Rich Magee
    Greenwich, CT

    Yes Rich. We have only one workbook for all the stores in our case. You can create mapping table like this
    Table Name: usermapping
    username salesrepid
    john 10
    michelle 20
    If you are using your own tables/views for your reports create a repid column in them and populate accordingly.Assuming that your custom tables is like this
    Table Name: RepInfo
    line# salesrepid region product amount
    1 10 NE S/W 1000.00
    2 20 SW H/W 500.00
    Create a function like this
    CREATE OR REPLACE FUNCTION setparam (name VARCHAR2)
    RETURN NUMBER
    IS
    BEGIN
    /* Setting the session client information to the value of parameter so that this can be accessed
    by the custom folder in the admin edition */
    dbms_application_info.set_client_info(name);
    RETURN 1;
    END;
    Create a custom folder like
    select a.region,a.product,a.amount
    from
    repinfo a,
    usermapping b
    where
    a.salesrepid = b.salesrepid
    and b.username = USERENV('CLIENT_INFO') --gets the username from the above function which sets the username for the database session.
    The input to above function which is username would be passed from report using a calculation item.You can create a calculation item and select the function setparam and give the input to it 'USER' variable which is gives the username of the current session.
    The workbooks passes the username to function and custom folder would get the username from the function.This approach would allow you to pass the username dynamically and use the same report for all the rep's. I'vent tried VPD concept till now.
    Hope this helps.
    Thanks
    Raj

  • How to create view/table from other user's view/table

    Hi all
    I'm using Oracle database 10g.
    I create table/view on user XXX, how to I create table/view on user YYY from user XXX.
    Thankyou,
    Thiensu2810

    user8248216 wrote:
    Hi all
    I'm using Oracle database 10g.
    I create table/view on user XXX, how to I create table/view on user YYY from user XXX.
    Thankyou,
    Thiensu2810grant select on xxx.table_name to yyy;
    create table/view table/view_name as select * from xxx.table_name;

  • How to show IP's of all users connected over AFP?

    Hello --
    In my office, we all use Mac OS X filesharing to share projects, files, etc. I'd like to be able to see what IP addresses are connected to my computer as AFP clients. ...Using "who" in Terminal won't work since everyone connects to me using the same account name. Is there another way to do this?
    Thanks in advance!
    Mike

    netstat -an | egrep 548
    Roger

  • How to view Logged in User's sessions

    Dear Portal gurus,
    Pls let me know how I can view logged in user's session s.
    Thanks.
    Jack

    Hi Jack,
      I haven't checked yet but found this doc. Check if helps.
    User Overview;
    http://help.sap.com/saphelp_nw04/helpdata/en/20/b7ced1025f3245b43d23184fc0212f/content.htm
    Managing Login sessions:
    http://help.sap.com/saphelp_nw04/helpdata/en/7e/aa610cc1dd8f4388b1df02fc362f0f/content.htm
    Monitoring and Logging of User Information:
    http://help.sap.com/saphelp_nw04/helpdata/en/f2/6a82270fd99844a65085bd90022fab/content.htm
    Don't forget to reward points if helped.
    Regards,
    Harini S

  • How to view/edit/delete the user created profile in oracle 9i? Very Urgent

    Friends,
    I logged in as system in oracle 9i.
    SQL> create profile testpro limit
    2 idle_time 1;
    Profile created.
    SQL> alter user scott profile testpro;
    User altered.
    Then i logged in to sqlplusw as a scott user.
    and i waited for 10 mins after that.
    sql> select * from cat;
    its working......
    how come? i have already set a idle time to 1 minute.
    Please correct me if im wrong.
    Also, how can i view/edit/delete the user created profile.
    Thanks & Regards
    Sathyguy
    Message was edited by:
    sathyguy

    The resource limits set for a profile are enforced only when you enable resource limitation for the database.
    Enabling and Disabling Resource Limits While the Database is Open
    ALTER SYSTEM SET RESOURCE_LIMIT = TRUE;
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96521/users.htm#15451
    Manu

  • How to make Adobe acrobat feature to convert SAP  Pages to PDF available for multiple users connected to the same server

    We have installed Adobe Acrobat X Pro- English,Francais,Deutsch version 10.1.9 in our test environment and tried  testing it for converting SAP pages into PDF with a few pilot users. In doing so we faced a challenge, where only one user at a time can use Adobe Acrobat PRO to convert SAP pages in to PDF.As long as the first user who  is connected to Adobe Acrobat Pro via SAP isn’t logged off, other users connected to the same  server  are not being able to get the “Save As” dialog box to save the PDF in their preferred location.
    This is a business requirement and we need an urgent solution for the same. Can anyone help us in telling us if this is possible and if yes the how to go about?

    It's not something we deal with here, the LiveCycle products are a different world. Key points: Adobe LiveCycle is a range of products, some desktop, some server. LiveCycle PDF Generator is the one you should look at, it comes in 3 editions. License terms are by negotiation. Key management is via its Java API.

  • Materialized view log with multiple materialized views

    DB: 9.2.0.8
    Yes its old. I am not allowed to upgrade it.
    I have a set of materialized views that are created off of 5 base tables. They do fast refreshes. So I have multiple materialized views for the same base table and same materialized view log.
    1. how do materialized view logs manage multiple dependent materialized views?
    2. How do I tell by looking at the materialized view log which rows have not been fast refresh for a specific materialized view?

    As a starter for 10 try reading: Materialized View Refresh : Log Population and Purge (Doc ID 236233.1) on MOS.
    Thanks
    Paul

  • Materialized view  and view logs on EBS 11.5.10

    Hi,
    Trying to create a materialized view log on table MTL_SYSTEM_ITEMS_B connected as APPS... the system complaints about : ORA-00942: table or view does not exist
    So, do i have to create the mv log to the INV schema or do i need to grant a priv to user APPS???
    I have read in the EBS- Concepts edoc that the materialized view should be created in the APPS schema...
    What about the materialized view logs..???
    Thank you,
    Sim

    Sim,
    Please review the following documents, and see if it helps.
    Note: 273924.1 - ORA-12096: ERROR IN MATERIALIZED VIEW LOG ON ''INV''.''MTL_MATERIAL_TRANSACTIONS
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=273924.1
    Note: 215463.1 - ORA-01031 Insufficient Privileges When Create A Materialized View Log In Different Schema
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=215463.1
    Regards,
    Hussein

Maybe you are looking for