VRO - EMC Networker 8.1 EBR Appliance integration. Experiences?

I've asked the question on the EMC support forums, btu maybe there's a chance to tap on some knowledge on the topic here: has anyone made experience with integrating the EMC Networker Appliance into the Orchestrator?
Recently I have  deployed the EBR Appliance in my vSphere environment, now I want to automate adding\removing virtual machine to and from the backup policy.
The VMs are being provisiond using vCAC and the vRO. Now I want to allow the VM owner to optionally add the VM into a backup policy. I would need a vRO workflow to talk to the EBR Appliance API so the particular VM would be added.
I could not find a documentation for the EBR Appliance API anywhere, nor a EBR plug-in for vRO.
Thanks!

Thanks for answering so quickly!
About the procedure you have mentioned:
1. Note down the process that you want to automate, and how you do it manually now (you mentioned the first part, I assume currently a Backup Operator adds the new VM to a backup policy using the Networker UI, whatever that is)
The EMC appliance integrates into the Web Client - this is the only interface you can use AFAIK. There you can tell EMC Networker (with the whole Server, DataDomain backend) which VMs you want to back up. You can choose a cluster or resource pool and back up the whole inventory element too. I administer the whole vCenter\vCAC\vRO combo including the EMC Appliance - the appliance itself however has very limited options though. You can basically only add VMs to a backup policy and restore them. The rest (liek creating new backup policies) is done by the Backup Admins on the Networker Server.
2. See if the vendor provides a vRO Plugin, if so, check if it provides your functionality
EMC does provide some plugins, but none of them are strictly backup related and cannot talk to the backup appliance (or, for example, VMwares' VADP)
3. Check if the vendor provides some API  / Automation tools (didnt find anything for these two points)
Nope, sadly. I'm waiting for someone to answer on the EMC forums, next week I'll ask one of the Backup Admins to open a SR at EMC, maybe we will get some useful info. The product documentation says that the Web Client is the only way to manage the appliance, but I don't know if this includes direct access via the API or not. This is really frustrating:(
4. & 5.
The EMC Backup appliance is "VADP Appliance by EMC", a third-party VADP based backup solution.By that I mean that it's VADP with the EMC Backup Infrastructure access integrated. So the whole backup planning jobs are done on the EMC Networker backend, not the appliance itself. The GUI is even the same:
So, I guess, the API access would function similar as with VADP? Sadly I have not yet made experience with it.
6. Worst case (...)
I thought an alternative would be to create a new ressource pool, tell the appliance to back up every vm in there, and just move a vm in or out of the pool according to the vm owners preferences. This move can easily be automated. But, I've tested this jsut now and altohugh, after moving a vm into the pool, the appliance says it will be backed up, it throws an error during the backup job :| Meh.
Is it possible to automate backup tasks on the native VMware VADP appliance using the Orchestrator?

Similar Messages

  • Restore to a different node with RMAN and EMC Networker

    Please, really need help :)
    I took hotbackup using RMAN catalog which went to tape. Here is the script for that:
    connect target sys/****@PROD;*
    connect rcvcat rman/***@catalog;*
    *run {*
    allocate channel t1 type 'SBT_TAPE';
    send 'NSR_ENV=(NSR_SERVER="**",NSR_DATA_VOLUME_POOL=Oracle)';*
    *backup database plus archivelog;*
    *release channel t1;*
    My settings include control file autobackup as follows:
    *RMAN> show all;*
    *RMAN configuration parameters are:*
    *CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 10 DAYS;*
    *CONFIGURE BACKUP OPTIMIZATION OFF; # default*
    *CONFIGURE DEFAULT DEVICE TYPE TO DISK;*
    *CONFIGURE CONTROLFILE AUTOBACKUP ON;*
    *CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE 'SBT_TAPE' TO '/NMO_%F/';*
    *CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default*
    *CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default*
    *CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default*
    *CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default*
    *CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/data/backups/PROD/ora_df%t_s%s_s%p';*
    *CONFIGURE MAXSETSIZE TO UNLIMITED; # default*
    *CONFIGURE ENCRYPTION FOR DATABASE OFF; # default*
    *CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default*
    *CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default*
    *CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/data/backups/PROD/hotbkp/snapcf_PROD.f';*
    I am trying to restore this backup that is on tape (EMC Networker) to a different node. I can do this outside of Networker without any problems. However, when I try to get the backup from tape I have this issue:
    1. initPROD.ora is created and modified accordingly on a new server
    2. Export sid, startup nomount on new server
    export ORACLE_SID=PROD (on this new server)
    *rman target /*
    *startup nomount*
    3. I then run the following and get this error:
    *RMAN> run {*
    *2> allocate channel t1 type 'SBT_TAPE'*
    *3> send 'NSR_ENV=(NSR_SERVER="***",NSR_CLIENT="********")';*
    *4> restore controlfile from autobackup;*
    *5> sql 'alter database mount';*
    *6> sql 'alter database rename file "/data/dbf/PROD/redo01.log" to "/data/scratch/dbf/PROD/redo01.log"';*
    *7> sql 'alter database rename file "/data/dbf/PROD/redo02.log to "/data/scratch/dbf/PROD/redo02.log"';*
    *8> sql 'alter database rename file "/data/dbf/PROD/redo03.log to "/data/scratch/dbf/PROD/redo03.log"';*
    *9> set until sequence 22; (I get this from archive logs)*
    *10> set newname for datafile 1 to '/data/scratch/dbf/PROD/system01.dbf';*
    *11> set newname for datafile 2 to '/data/scratch/dbf/PROD/undotbs01.dbf';*
    *12> set newname for datafile 3 to '/data/scratch/dbf/PROD/sysaux01.dbf';*
    *13> set newname for datafile 4 to '/data/scratch/dbf/PROD/users01.dbf';*
    *14> restore database;*
    *15> switch datafile all;*
    *16> recover database;*
    *17> alter database open resetlogs;*
    *18> }*
    *allocated channel: t1*
    *channel t1: sid=149 devtype=SBT_TAPE*
    *channel t1: NMO v4.5.0.0*
    *Starting restore at 27-FEB-09*
    *released channel: t1*
    *RMAN-00571: ===========================================================*
    *RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============*
    *RMAN-00571: ===========================================================*
    *RMAN-03002: failure of restore command at 02/27/2009 22:10:43*
    *RMAN-06495: must explicitly specify DBID with SET DBID command*
    I cannot seem to pass this error. This error indicates that the db has to be either mounted or DBID set before the restore of teh controlfile. Mounting db before the restore of the controlfile does not work. Setting db id 1) does not make sense because if the primary db is down then I cannot get it, right? My primary is up now, so I was able to get db id, but setting it made the restore hang with the following:
    *RMAN> run {*
    *connect target*
    *set dbid=466048808*
    *2> allocate channel t1 type 'SBT_TAPE'*
    *3> send 'NSR_ENV=(NSR_SERVER="***",NSR_CLIENT="********")';*
    *4> restore controlfile from autobackup;*
    *5> sql 'alter database mount';*
    *6> sql 'alter database rename file "/data/dbf/PROD/redo01.log" to "/data/scratch/dbf/PROD/redo01.log"';*
    *7> sql 'alter database rename file "/data/dbf/PROD/redo02.log to "/data/scratch/dbf/PROD/redo02.log"';*
    *8> sql 'alter database rename file "/data/dbf/PROD/redo03.log to "/data/scratch/dbf/PROD/redo03.log"';*
    *9> set until sequence 22; (I get this from archive logs)*
    *10> set newname for datafile 1 to '/data/scratch/dbf/PROD/system01.dbf';*
    *11> set newname for datafile 2 to '/data/scratch/dbf/PROD/undotbs01.dbf';*
    *12> set newname for datafile 3 to '/data/scratch/dbf/PROD/sysaux01.dbf';*
    *13> set newname for datafile 4 to '/data/scratch/dbf/PROD/users01.dbf';*
    *14> restore database;*
    *15> switch datafile all;*
    *16> recover database;*
    *17> alter database open resetlogs;*
    *18> }*
    *connected to target database: PROD (not mounted)*
    *executing command: SET DBID*
    *using target database control file instead of recovery catalog*
    *allocated channel: t1*
    *channel t1: sid=152 devtype=SBT_TAPE*
    *channel t1: NMO v4.5.0.0*
    *Starting restore at 27-FEB-09*
    *channel t1: looking for autobackup on day: 20090227*
    *channel t1: looking for autobackup on day: 20090226*
    *channel t1: looking for autobackup on day: 20090225*
    It looks like it cannot find the autbackup of controlfile? But when I list backup while connected to the target db and rman catalog, I see that autobackup is included in every hot backup that we do:
    *BS Key Type LV Size Device Type Elapsed Time Completion Time*
    *4639 Full 7.00M SBT_TAPE 00:00:04 27-FEB-09*
    *BP Key: 4641 Status: AVAILABLE Compressed: NO Tag: TAG20090227T150141*
    *Handle: /NMO_c-466048808-20090227-01/ Media:*
    *Control File Included: Ckp SCN: 23352682865 Ckp time: 27-FEB-09*
    *SPFILE Included: Modification time: 26-FEB-09*
    I am stuck What I am doing wrong? Thank you!
    Edited by: rysalka on Feb 28, 2009 8:35 AM

    Do a list command to see if the controlfile backup is on tape.
    RMAN> list backup of controlfile;
    I suggest you to read the manual of EMC Networker or call EMC on how to restore the database to another node. I am using Veritas Netbackup, it may be similar to EMC Networke for your reference. There are a few things that need to be followed when you restore database to another node:
    1) set DB_ID, which you have done
    2) set NB_CLIENT (in your case NSR_CLIENT) to the primary node from where backup was taken
    3) configure the backup server to allow redirect restore between the two nodes.
    Hope this helps.

  • Cisco Prime Infrastructure 1.2 with Cisco Prime Network Control System Hardware Appliance

    Hi Team,
    I have  following BOM
    Cisco Prime Infrastructure
    R-PI-1.2-K9
    Cisco Prime Infrastructure 1.2
    1
    R-PI-1.1-500-K9
    Prime Infrastructure 1.2 Software - 500 Device Base Lic
    1
    L-PILMS42-500
    Prime Infrastructure LMS 4.2 - 500 Device Base Lic
    1
    L-PINCS12-500
    Prime Infrastructure NCS 1.2 - 500 Device Base Lic
    1
    PRIME-NCS-APL-K9
    Cisco Prime Network Control System Hardware Appliance
    1
    PI-APL-IMAGE-1.2
    Cisco Prime Infrastructure 1.2 Appliance Software
    1
    Pls let me know if we have both NCS and LMS preinstalled with Cisco Prime Infrastructure 1.2 Appliance Software orwe need seperate appliance or server for LMS 4.2. 
    Regards

    Hi Scott,
    Thanks for the response but I got to know that LMS and NCS are combined in single ISO image from PI 1.2 and can be installed on the same physical NCS appliance.
    Can you pls check this.
    Regards

  • RMAN and EMC Networker

    We have just purchased EMC Networker to work with RMAN. We have about 25 databases, where we have configured a recovery catalog on a separate server. We are planning to run RMAN remotelly from this server, rather then locally for each of the 25 databases. I have 2 questions:
    1. Does it makes sense to do that, to run RMAN from the remote location on the server where recovery catalog is located?
    2. My understanding is that once RMAN commands are issued, Oracle starts a backup where it reads the appropriate database file, creates backup set and passes it to Networker Oracle module. Where is this backup set created? Can it be created in the Flash Recovery Area (so backup to disk first) and then backup this area to Networker? Does it make sense to set up FRA if we are using Networker?
    Thank you!

    1) There are version dependencies between the RMAN components, but apart from this you can run the executable from everywhere. This is often done from a centralized location.
    2) It's a common strategy to first backup to disk (and FRA is the recommened location) and then to backup the FRA to tape via RMAN. That means performance advantages and your first backup stage is independent of 3rd party functionality. But you have a second storage destination,which makes your backup/recovery strategy more reliable. Of course you also could backup directly to tape, if you don't have enough disk space (and you don't want to invest in it).
    Werner

  • EMC Networker, where to get NMO to install?

    Hello all,
    I've installed Oracle Enterprise Edition 11Gr2.
    I can see that networker has been installed on the box, and am trying to follow the book (for 10G, but figure it is close) to install and configure NMO to get RMAN to work.
    This is a RHEL5 box. I see in the instrucitons, it says to insert and mount a NMO CD-ROM....
    I'm confused..where do I get this? Does this come from EMC Networker.....or is this (or the files) something I can get from Oracle?
    I am clear about once it is installed, to do the linking: ln -s /usr/lib/libnwora.so /$ORACLE_HOME/lib/libobk.so
    But, I'm not sure where to find the networker lib to install to link to...
    From nsrwatch I see I have Version: NetWorker 7.1.Build.230 Data Backup Utility
    Any suggestions?
    Thank you,
    cayenne

    Hi cayenne,
    I'm confused..where do I get this? You need an account on EMC power link to download the nmo.
    But, I'm not sure where to find the networker lib to install to link to...Follow the link.
    https://powerlink.emc.com/nsepn/webapps/btg548664833igtcuup4826/km/appmanager/km/secureDesktop?_nfpb=true&_pageLabel=servicesDownloadsTemplatePg&internalId=0b01406680192a33&_irrt=true
    Take the "NetWorker Module for Oracle 5.0" which matches you platform.
    (You will need a license installed in backup system before it works.)
    Regards,
    Tycho

  • Oracle Online Backup through EMC Networker - RMAN Script

    Hi,
    For taking online oracle backup through EMC Networker, we configure the RMAN script to connect to the target database, create the media channels, backup format etc. The password for the sys or rman user entered in the RMAN script is in clear-text format.
    Due to security reasons, I don't want the passwords to be entered in the RMAN script. Is there any option for configuring RMAN script without mentioning the username/password to connect to the target database ?
    Thanks & Regards,
    Shreejesh.

    When you have to connect remotely to RMAN, you cannot hide the password, you can only define very restricted access for the script itself. Remote OS authentication will not work, because the target db user needs SYSDBA privilege, which cannot be granted to an externally identified user.
    Werner

  • RMAN / EMC Networker 7.6 (NMDA): Rman output logfile specification??

    DBA Colleagues,
    I have a quick question concerning leveraging the NSR_RMAN_ARGUMENTS parameter with the new version of EMC Networker & NMDA. In past EMC Networker versions, when the EMC Scheduler was used to initiate the backup jobs, there was a shell script called nsrnmo that could leverage unix variables and os commands to construct the path/filename for all rman output files such as:
    NSRMMO defintion(/usr/bin/nsrnmo--shell script):
    NSR_RMAN_ARGUMENTS="msglog '/nsr/applogs/${ORACLE_SID}_msglog_`date +%Y-%m-%d_%H:%M:%S`.log' append"
    NSRNMO output which would produce an rman output logfile of(this was able to used OS vars and commands):
    /nsr/applogs/MYDB_msglog_2012-06-04_11:43:02.log
    Now in the latest version of EMC Networker, there are config files that are not shell scripts, but still use the same definition:
    NMDA config file (/nsr/apps/config/MYDB.cfg)
    ORACLE_SID=MYDB
    NSR_RMAN_ARGUMENTS="msglog '/nsr/applogs/${ORACLE_SID}_msglog_`date +%Y-%m-%d_%H:%M:%S`.log' append"
    MNDA Output which produce rman output logifle(no translation of the varaibles...no MYDB or date format returned in logfile name):
    /nsr/applogs/${ORACLE_SID}_msglog_`date +%Y-%m-%d_%H:%M:%S`.log
    Has anyone converted from Networker 7.5(NMO) or ealier to Networker 7.6(NMDA)..and what specification was useful for rman output logfile naming??
    Kind Regards,
    . . . Todd . . .

    Hi Todd,
    I implemented the nmda module after using the nmo module for some of my databases.
    Sadly enough the old nmo had much more options to push environment settings compared to the new nmda.
    Also the translation of variables seems to be lost as well.
    The only way for me was to create an nmda file per database having hard coded values in it.
    I use cron to rotate the log to a logfile with a date format just before midnight.
    Regards,
    Tycho

  • Anybody has the BEA JMS integration experience?

    Dear all,
    i am configuring a scenario Idoc >XI>JMS .the external JMS software  is BEA JMS server.does anybody has the integration experience?in the JMS communiction channel ,i don't know what should enter for the parameters.thanks a lot
    xiao feng

    HI Jayson,
    you can also request the web service directly.
    For example, you could create a local xml file with the values you want to pass to the web service and configure a file 2 soap scenario within XI itself.
    You can create interfaces for each available web service.
    You could call this scenario "ID objects generator" or something and save the .tpz for the repository objects of this scenario, since you could reuse it in other projects.
    Other than that, in Teched '08, Bill Li showed a lot of proxies developed over Java to consume the ID API web services, and they all seemed to work ok. However I do think he used NW Developers Studio 7.0 (2004s), not CE.
    I'd raise an OSS msg with SAP in order to check the problem you're getting.
    Regards,
    Henrique.

  • Any kind of integration experience with Weblogic JMS and Oracle AQ?

    Hi,
    In my company I work with java developers who believe in some kind of "holly" database independence I don't understand and as a result my life as a database developer is hell on earth.. Yesterday we again started to discuss, this time where to log, they believe database is slow and prefer logging to filesystem, after some hours finally I could convince them for some operational and reporting needs to use the database and will do this in an asyncronous way whiich they won't get slow. After all I believe the reason for a database is data, this is the place where data lives, and with the correct desing and implementation logging to database would perform better.
    I love Oracle features, and know that we paid a lot for this software, so today I started investigating this promised solution. And quickly I found AQ and JMS topics in the documentation :)
    After this introduction here is my problem; my company use BEA Weblogic as application server and the java guys want AQ to automatically (but of course with some delay) take their JMS log requests into database tables. Does any one have similar application experience, or any kind of integration experience with Weblogic JMS and Oracle AQ?
    Any comments, references, documentation, sample code, url will be most welcomed :)
    Thank you very much!
    Tonguc
    [email protected]
    References I found upto now;
    Oracle® Streams Advanced Queuing Java API Reference 10g Release 2 (10.2) http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14291/toc.htm
    (Packages; javax.jms & oracle.jms)
    Oracle® Streams Advanced Queuing User's Guide and Reference 10g Release 2 (10.2) http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14257/toc.htm
    Part IV
    Using Oracle JMS and Oracle Streams AQPart V describes how to use Oracle JMS and Oracle Streams Advanced Queuing (AQ).
    Chapter 11, "Introducing Oracle JMS"
    Chapter 12, "Oracle JMS Basic Operations"
    Chapter 13, "Oracle JMS Point-to-Point"
    Chapter 14, "Oracle JMS Publish/Subscribe"
    Chapter 15, "Oracle JMS Shared Interfaces"
    Chapter 16, "Oracle JMS Types Examples"
    A Sample Code from Otn
    http://www.oracle.com/technology/sample_code/tech/java/web_services/jmsws/NewsQueueEJB.java.html

    I wouldn't go as far to say Oracle AQ is out-dated today. However, it is indeed a proprietary technology that did not found much main-stream adoption in the earlier years after its introduction. The advent of JMS made it somewhat more useful (or should I say intriguing, because more people are trying to tie it together with other J2EE technologies), but the Oracle's JMS wrapper classes in aqapi.jar were not feature complete for a long while, so using it outside Oracle's application server was painful, if not impossible. I do agree that the info at the dev2dev's JMS newsgroup or in this forum is highly fragmented, as neither Oracle nor BEA provides an official solution to integrate AQ with WebLogic, so people like us have to learn the technology through experimentation and in a piecemeal fashion.
    3 years ago I was literally "playing around" - we had a polling mechanism set up to use triggers to write Oracle data changes into an event table, and had a Java-based daemon to scan that table and publish events as JMS messages to the WebLogic JMS server. This continues to work reliably till today, but I was looking for a solution that has few parts - I wanted to hook up my WebLogic MDB directly to AQ as a foreign JMS provider. Although I was able to get it to work (including XA), there were a few hoops I had to jump through, such as decompiling the Oracle AQjms classes to make them bind to the WebLogic JNDI tree.
    One year after that Diptanshu Parui took what I did a giant step further - he extended the Oracle AQjms classes to allow them to be bound to the WebLogic JNDI tree naturally, and he figured out how to use WebLogic JMS messging bridge to re-send single-threaded AQ JMS messages to clustered JMS queues, which allow concurrent message assumption by multiple instances of MDB's. My impression is that he is using that setup in a production environment.
    I am sure you are aware of it but I would like to make it clear - in order to use AQ as a foreign JMS provider to WebLogic-hosted MDB's, you don't need to update your database to Oracle 10g - Oracle 8i is good enough (although I recommend at least 9i Release 2). It is not the database engine, but rather the aqapi.jar JMS wrapper on top of AQ that matters. I do recommend that you use aqapi.jar from Oracle Application Server 10.0.3 or up for better XA support, among other things. Again, you don't have to replace WebLogic with Oracle AS - you only need a single jar file from it and put it in your WebLogic's classpath. However, I don't know what this means from a licensing point of view if you ever go to production - do you have to pay the full price of OracleAS or OC4J just to use the aqapi.jar?
    In the coming days I will test the latest aqapi.jar to see how much progress Oracle has made in terms of making their J2EE products more spec-compliant :-).
    Hope the above gives you a different perspective.
    Eric

  • I have a 2nd gen airport extreme (no time capsule) and 2nd gen airport expresses:  is there any new additons I can make to my existing network to improve reach and integrity of signal?

    I have the older airport extreme and 2 2nd gen airport expresses in a large house.  Lately I have been getting complaints about internet  "drop out" and weak signal (orange signal - weak network)  in one (oddly enough the nearest one to my extreme).  What can I do to insure network and internet integrity going forward. Do I buy a new a. extreme and convert the old one (how is also a question)?  Do I buy new expresses?  (and why) Do I move the original express out of room and get longer internet cable?  Extreme is upstairs in a split level and must remain there because of proximity to modem and its connection to security. The "working" express is all the way on the other side of the house through 2 concrete walls and does ok - though signal is understandable week. The nearer one with the "problems" is at the foot of the stairs less than 50 feet away, behind an always closed door  (not tested-belongs to teenager voicing complaints).  Incidentally the other bedroom directly across from the closed door one, houses a temporary adult child at home who has no problems with their lap top (2nd gen macbook) and signal.

    There is no easy answer to your question, but here are some things to think about.
    The newest generation of airport extremes and expresses are dual-band devices. they transmit on both 2.4 GHz and 5 GHz frequencies. the 2.4 GHz frequency penetrates walls better than the 5 GHz frequency which is faster in terms of data throughput. they also have improved antennas which may help your signal problems. unfortunately the only way to be sure would be trial and error you can also walk around with a laptop and monitor the signal strength to see where you have dropouts and consider repositioning your express devices to compensate . 

  • Network Analysis Module (NAM) appliance 2220 version 5.0.1 and SNMPv3

    Hello,
    Is there some patch requirement for SNMPv3 on the NAM appliance ?
    I tried to do SNMPv1 on a 6509 with VSS it works fine and I could capture the packet of the SNMP request.
    If I tried to move to SNMPv3, the communication failed and there is no SNMP packets transmitted from the NAM.
    I was wondering if there is a patch requirement for the SNMPv3 (as for SSL or HTTPS)  ?
    Kind regards
    Charles

    I attached a file with the 6509 config, sh snmp user and sh snmp result.
    When I go to :
    Setup > Managed Device > Device Information
    I've got :
    Access to the managed device failed. This may be due to
          1. Incorrect managed device IP address.
          2. Incorrect managed SNMP community string.
          3. The managed device's SNMP access control list is enabled.
    If the managed device's IP address or community string is incorrect, please use the input
    fields below to set the correct IP address and SNMP read-write community string.
    Otherwise, check if your managed device's SNMP access control list is enabled
    and make sure that the NAM's IP address shown in the Test popup
    window is included in the access control list.
    I've got this result when I test SNMP connectivity on the 2220. I tested snmpv3 with authpriv, authnopriv, noauthnopriv.
    Test Connectivity :
    SNMP read from managed device:     Failed    
    SNMP write from managed device:     Failed
    So I was thinking at some small license requirement for SNMPv3 as no packet were transmitted from the 2220. Unlike in SNMPv1 where I could capture the management packet.

  • ACS 4.2 Appliance integration with LDAP

    Hi,
    I would like to ask some question from the expert here.
    1. I'm building 802.1x infra for my customer.
    2. We are using ACS SE version 4.2
    3. We have successfully integrate the ACS with AD using Remote Agent.
    4. Using will authenticate using PEAP MS-CHAP v2.
    5. However, my customer dont want to use Remote Agent (RA) because the want the ACS talk to the external database directly.
    6. Their argument is, if they bought other Radius appliance for this project, the appliance should have the same function in order to authenticate the user.
    7. What are needed to complete this requirement?
    I saw in this table http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4.2/user/guide/Overvw.html#wp857274 the LDAP does not support PEAP MS-Chap v2.
    Can any expert give opinion on this issue?

    Despite various efforts a few years back, LDAP vendors could not be persuaded to implement an MSCHAP interface - which is technically possible.
    That said ACS also has its Windows External Authenticator that will do MSCHAP just fine to a Windows AD Server (via a different interface).
    The old LEAP protocol was mschap inside EAP. EAP-FAST can also do mschap too.
    The key is not use the LDAP authenticator in ACS. If you really must use it, you'll have to make sure you use EAP-GTC inside your PEAP/FAST tunnel

  • Issue with Network configuration - ACS 4113 Appliance

    We are having issues with two particular devices. I am trying to remove and add the devices, but when I do a search and go to their IP, I receive.
    Failed to edit blahblah.ourdomain.... Reason: The Host no longer exists.
    How do I get rid of this so I can readd the devices?
    Thanks
    Dwane

    Yes, ACS SE doesn't support csutil. Please use RDBMS with solution engine and see if that helps.
    Creating, Reading, Updating and Deleting AAA clients
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4.2/configuration/guide/rdbms_sync.html#wp1011624
    Regds,
    JK
    Do rate helpful posts-

  • Does a Solaris 10 Zoning enviroment. support EMC Networker (Legato)

    I need to make a server less backup out of the Solaris 10 zone.
    Any experience

    I need to make a server less backup out of the Solaris 10 zone.
    Any experience

  • Abaper with FI and SD Integration experience?

    Hi Friends,
    I was curious to know as to what is the role of an Abaper in integration of functionals modules of FI and SD?
    What are the steps involved in integration and what kind of knowledge he should possess?
    Regards,
    MD

    SD+FI tables names
    Flow from SD to FI

Maybe you are looking for

  • Double click in ALV tree output????

    Hi all, I am able to display output in tree format. But I want to add the double click functionality to some of the fields in output. Means if I double click on some value in output tree, it should call some transaction. Please help me with this issu

  • Receiver file adapter posts multiples for singel source files

    Hi, I am using wild character in my input source ftp adapter but my receiver file adapter is creating multiple duplicate files. I am not sure why this happens as QOS is set to "Exactly Once" with archive processing mode. I tried with delete mode and

  • MapViewer + WebLogic + Coherence

    I want to deploy the Mapviewer service in WebLogic server combined with Oracle Coherence caches. My purpose is to get in-memory grid computing. The MapViewer (which is deployed in a WebLogic server) retrieves data from the Oracle Spatial database and

  • Driver support mmap

    I am trying to make the device memory mapping work inside driver to support mmap. I implemented xxx_segmap and xxx_devmap, inside xxx_segmap I called devmap_setup() and in xxx_devmap() I called devmap_devmem_setup(). My user test program calling mmap

  • Motion Compressor settings

    hi! I have a little problem with my compressor settings. I want to output several projects from motion to compressor, with png settings, motion blur, field rendering etc etc. But when I open compressor, I can only find the settings for final cut pro