ASA SSL Authentication special caracters

Hi,
I have a ASA 5540 configured in WebVPN to authenticate users through an ACS server. The ACS server can use my Active Directory Users Database.
a user with those credentials:
login : testuser
pass : céli20
can login through Remote Access VPN (classic cisco ipsec vpn client)
but can't throught webvpn portal page..!!If we change the password and remove the "é" it can log-in...How to allow specials characters in the webvpn session connection?

ASDM does not support any non-English characters or any other special characters. If you enter non-English characters in any text entry field, they become unrecognizable when you submit the entry, and you cannot delete or edit them.
If you are using a non-English keyboard or usually type in language other than English, be careful not to enter non-English characters accidentally. For a workaround, see caveat CSCeh39437

Similar Messages

  • ASA- ACS authentication

    I have an ASA, an ACS appliance, Active Directory, and RSA securID. SSL users should only authenticate with AD, while IPSec users should only authenticate with RSA. Not yet using anyconnect.
    here is my scenario:
    ACS -- AD - Dynamic users are created in ACS when authenticated with their AD domain login/password
    ACS -- AD - AD Group mapping to put user in the correct ACS group
    ASA SSL - matches username in ACS group to display customized SSL bookmarks
    all looks good
    ACS -- RSA - static users in ACS assigned to RSA group in ACS configured for authentication with external RSA DB
    ASA IPSec - Authenticates with ACS
    Question: How does the ASA or ACS know to authenticate IPSec users ONLY via RSA and SSL users only via AD?
    What do I have to do to not allow a windows user to simply enter their AD login/password into thei IPSec client and login. I could see this become common with users who dont have their keyfob handy or forget to use it.
    Thanks!

    You need to look at NAP feature in acs,
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_windows/4.1/user/NAPs.html#wp1128143
    A NAP, also known as a profile, is essentially a classification of network-access requests for applying a common policy. You can use NAPs to aggregate all policies that should be activated for a certain location in the network. Alternatively, you can aggregate all policies that handle the same device type, for example, VPNs or Access Points (APs).
    Regards,
    ~JG
    Do rate helpful posts

  • SMS Problems with portuguese special caracters

    I´ve recently installed the upgrade for ios 6, I became aware that  when I use portuguese special caracters(i.e. ç ã á..etc)  in an SMS message the system splits into two messages.
    Does anyone know if there is a solution for this problem?

    Hi
    Can you be more clear plz...what is stoping you to
    do your work.Follow the link.Its clearly stated with
    all the screen shots and I am sure it will help you
    http://www.auditware.co.uk/downloads/SAPQuery_step_thru.pdf
    Also check with the changes in settings>settings>Is graphical query painter checked
    and what are the below options in which radio buttons are checked in.
    Regards,
    Manjula.

  • SSL authentication

    Hello
    I am configuring ssl authentication ( document oracle support 736510.1)
    But when doing tnsping from client side i have an tns-12560
    [oracle@testrac3 admin]$ tnsping TEST
    TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 17-JUN-2013 10:04:14
    Copyright (c) 1997, 2011, Oracle.  All rights reserved.
    Used parameter files:
    /opt/app/oracle/product/11.2.0.3/db/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCPS)(HOST = testrac1.XX.XX)(PORT =2484)) (SECURITY= (SSL_SERVER_CERT_DN=CN=dbasecurityRoot,O=dbasecurity,C=US)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME= TEST.XXX.XXX)))
    TNS-12560: TNS:protocol adapter error
    Can someone give me an help
    Best regards

    Hi, djoloff,
    I already answered in this thread, may be it will help.
    https://forums.oracle.com/thread/2527585

  • Problems with special caracters

    Hi coleagues,
    I have problem with special caracters in querys(SQ01, SQ02, etc), in place of (ç,~,) appers #.
    Thanks in advanced for your cooperation.

    Hi
    Can you be more clear plz...what is stoping you to
    do your work.Follow the link.Its clearly stated with
    all the screen shots and I am sure it will help you
    http://www.auditware.co.uk/downloads/SAPQuery_step_thru.pdf
    Also check with the changes in settings>settings>Is graphical query painter checked
    and what are the below options in which radio buttons are checked in.
    Regards,
    Manjula.

  • Connecting Using SSL Authentication Without Username and Password

    Hi,
    We're on RedHat Linux 4.0 using 10.2.0.3 (server/client). We're trying to figure out a way to connect to the database using instantclient and JDBC-OCI and SSL authentication without using a username or password. According to the documentation this should be possible but no sample code is given.
    LD_LIBRARY_PATH is set /opt/app/oracle/product/10.2.0/db_1/lib:/usr/lib:/home/oracle/instantclient where the instantclient was installed from the 10.2.0.1 client software
    and we are using JDK version 1.6.0_03.
    We're also referencing the following paper:
    http://www.oracle.com/technology/tech/java/sqlj_jdbc/pdf/wp-oracle-jdbc_thin_ssl_2007.pdf
    We've got our client and server wallets configured and the sample code we tried looks like this:
    import java.sql.*;
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    import oracle.net.ns.*;
    import oracle.net.ano.*;
    import oracle.jdbc.*;
    import oracle.jdbc.pool.*;
    import java.security.*;
    import oracle.jdbc.pool.OracleDataSource;
    public static void main(String[] argv) throws Exception {
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Security.addProvider(new oracle.security.pki.OraclePKIProvider());
    System.setProperty("oracle.net.tns_admin", "/opt/app/oracle/product/10.2.0/db_1/network/admin");
    String url = "jdbc:oracle:thin:@orcl";
    java.util.Properties props = new java.util.Properties();
    props.setProperty("oracle.net.authentication_services","(TCPS)");
    props.setProperty("javax.net.ssl.trustStore",
    "/opt/app/oracle/product/10.2.0/db_1/admin/wallet/server/cwallet.sso");
    props.setProperty("javax.net.ssl.trustStoreType","SSO");
    props.setProperty("javax.net.ssl.keyStore", "/opt/app/oracle/product/10.2.0/db_1/admin/wallet/client/cwallet.sso");
    props.setProperty("javax.net.ssl.keyStoreType","SSO");
    props.put ("oracle.net.ssl_version","3.0");
    props.put ("oracle.net.wallet_location", "(SOURCE=(METHOD=file)(METHOD_DATA=(DIRECTORY=/opt/app/oracle/product/10.2.0/db_1/admin/wallet/client)))");
    System.out.println("At Here...");
    OracleDataSource ods = new OracleDataSource();
    //ods.setUser("scott");
    //ods.setPassword("tiger");
    ods.setURL(url);
    ods.setConnectionProperties(props);
    System.out.println("At Here1...");
    Connection conn = ods.getConnection();
    System.out.println("At Here2...");
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery("select 'Hello Thin driver SSL "
    + "tester ' from dual");
    while (rset.next())
    System.out.println(rset.getString(1));
    rset.close();
    stmt.close();
    conn.close();
    When this code is compiled and run, the following error is thrown:
    Exception in thread "main" java.sql.SQLException: invalid arguments in call
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    If a username and password is supplied, the code works. So does anyone have a working of using SSL to authenticate without supplying username/password?
    Thanks
    mohammed

    Hi,
    I just solved this. I noticed from another thread that I was not using the OCI driver (see below):
    String url = "jdbc:oracle:thin:@pki14";
    Once I changed it to:
    String url = "jdbc:oracle:oci:@pki14";
    The code worked perfectly. One more setting that you'll have to do is to create the user you want to connect as externally:
    create user scott identified externally as
    'CN=acme, OU=development, O=acme, C=US';
    grant connect,create session to scott;
    Note that the DN should be the same as the SSL certificate that you created in your wallet.
    hth
    mohammed

  • Java sp 2-way SSL authentication

    I've written a java stored proc that uses JSSE to implement an HTTPS client to a partner's server. In the past, this strategy has worked well, and we have several successful projects under our belts.
    This time, the partner's server is configured for 2-way ssl authentication. When I try to open the connection from my client, it is reporting-
    javax.net.ssl.SSLHandshakeException: Received fatal alert: bad_certificate.
    I'm not 100% sure what that means, but I think that it means the server is asking for a public cert from the client, and it isn't happy with what it is getting back.
    Can anyone tell me how to configure the client-side cert in a way that will make it available for my java code running in the Oracle JVM. I understand how to set up the keystore so that it is available for Tomcat, for example, but I'm at a loss to find how to setup client certs for access within an Oracle Java Stored Procedure...
    I hope that I have explained this clearly. If I need to provide more information, just ask.
    Thanks in advance for any help.
    Cole

    http://www.weblogic.com/docs51/classdocs/API_acl.html
    Michael Girdley
    BEA Systems Inc
    "gennot" <[email protected]> wrote in message
    news:[email protected]..
    Could you send me the complete URL of these example, please?
    Thanks
    Enrico
    Michael Girdley <[email protected]> wrote in message
    39b87078$[email protected]..
    The passing of the client's certificate should be automatic to WebLogic.We
    have an example of getting the client side certificate from inside of
    WebLogic in our documentation.
    This does not require for SSL to be used from the Web server to
    WebLogic.
    >>
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "Bob Simonoff" <[email protected]> wrote in message
    news:[email protected]..
    I have read through the docs and haven't found anything that would
    address
    the following confusion:
    Suppose I want to use Apache or IPlanet as the webserver with WebLogicas
    the back end application server (obviously). I have the need to use 2way
    SSL authentication. As I understand it the following applies:
    Client (browser) has a certificate as does the web server. Theyauthenticate
    each other.
    Now, the web server and weblogic need to communicate. WebLogic, in our
    environment does authentication via the security realm.
    What do I have to do to get the the web server (Apache or IPlanet) to
    communicate the client's certificate to WebLogic so the WebLogic canperform
    the authentication?
    Does the communication between the web server and WebLogic also need
    to
    be
    SSL?
    Thanks
    Bob Simonoff

  • SSL authentication between business connectoe and other system

    Hi every1,
    One system has to be connected to SAP BC(Business connector). I want to know how to setup the connectivity between these two systems. Also I want to know how to handel the SSL authentication between these two systems with complete details for how to do this.
    Thankx in advance.
    Regards
    Karan

    Hi Karan,
    Find everything related to SAPBC at http://service.sap.com/connectors _> SAP business connector.
    For SSL check
    http://service.sap.com/connectors _> SAP business connector -> Tools and Services -> SSL Version.
    Regards
    Juan

  • SSL authentication Connectivity using Oracle JDK1.3

    Please let me know whether Oracle JDK1.3 will support the SSL authentication Connectivity.
    If not what is the workaround to make the SSL authentication connectivity work
    in oracle JDK 1.3
    since this urgent,Please let us know this information at the earliest

    Hi,
    Oracle furnish an embedded Java VM with the database but does not furnish JDKs; there is no such a thing as Oracle JDK 1.3.
    You are probably referring to JDBC but which release?
    SSL Authentication is supported in JDBC-Thin 11g and JDBC-OCI pre-11g.
    Kuassi http://db360.blogspot.com

  • Configuring SSL Authentication

    I am attempting to set up SSL authentication in a test environment with Oracle 9.2 on Windows XP. When I try to connect the client I get ORA-28862: SSL connection failed. I switched on client tracing which appears to show that the wallet is being opened successfully but the connection fails on the SSL handshake with ORA-28862 and a minor code of 542. Where can I find out what this minor code means? There doesn't appear to be any further indication of what the problem might be in the trace file but here is the section with the handshake error, any assistance gratefully received:
    [04-DEC-2008 18:44:40:795] ntzCreateConnection: performing NZOS handshake - pass 1
    [04-DEC-2008 18:44:40:795] nzos_Handshake: entry
    [04-DEC-2008 18:44:40:795] nttwr: entry
    [04-DEC-2008 18:44:40:795] nttwr: socket 1772 had bytes written=51
    [04-DEC-2008 18:44:40:795] nttwr: exit
    [04-DEC-2008 18:44:40:795] nttrd: entry
    [04-DEC-2008 18:44:40:795] ntt2err: entry
    [04-DEC-2008 18:44:40:795] ntt2err: soc 1772 error - operation=5, ntresnt[0]=530, ntresnt[1]=53, ntresnt[2]=0
    [04-DEC-2008 18:44:40:795] ntt2err: exit
    [04-DEC-2008 18:44:40:795] nttrd: exit
    [04-DEC-2008 18:44:40:795] nzos_Handshake: exit
    [04-DEC-2008 18:44:40:795] ntzCreateConnection: SSL handshake failed with error 28862.
    [04-DEC-2008 18:44:40:795] ntzchknb: entry
    [04-DEC-2008 18:44:40:795] nttctl: entry
    [04-DEC-2008 18:44:40:795] nttctl: Setting connection into async mode
    [04-DEC-2008 18:44:40:795] ntzchknb: exit
    [04-DEC-2008 18:44:40:795] ntzchknb: entry
    [04-DEC-2008 18:44:40:795] nttctl: entry
    [04-DEC-2008 18:44:40:795] nttctl: Setting connection into callback mode
    [04-DEC-2008 18:44:40:795] ntzchknb: exit
    [04-DEC-2008 18:44:40:795] ntzCreateConnection: returning NZ error 28862 in result structure
    [04-DEC-2008 18:44:40:795] ntzCreateConnection: failed with error 542
    [04-DEC-2008 18:44:40:795] ntzCreateConnection: exit
    [04-DEC-2008 18:44:40:795] ntzdisconnect: entry
    [04-DEC-2008 18:44:40:795] ntzFreeNTZData: entry
    [04-DEC-2008 18:44:40:795] ntzFreeNTZData: exit
    [04-DEC-2008 18:44:40:795] nttdisc: entry
    [04-DEC-2008 18:44:40:795] nttdisc: exit
    [04-DEC-2008 18:44:40:795] ntzdisconnect: exit
    [04-DEC-2008 18:44:40:795] ntzconnect: failed with error 542
    [04-DEC-2008 18:44:40:795] ntzconnect: exit
    [04-DEC-2008 18:44:40:795] nserror: entry
    [04-DEC-2008 18:44:40:795] nserror: nsres: id=0, op=65, ns=12560, ns2=0; nt[0]=28862, nt[1]=542, nt[2]=0; ora[0]=28862, ora[1]=0, ora[2]=0
    [04-DEC-2008 18:44:40:795] nsopen: unable to open transport
    [04-DEC-2008 18:44:40:795] nsbfr: entry
    [04-DEC-2008 18:44:40:795] nsbfr: normal exit
    [04-DEC-2008 18:44:40:795] nsbfr: entry
    [04-DEC-2008 18:44:40:795] nsbfr: normal exit
    [04-DEC-2008 18:44:40:795] nsmfr: entry
    [04-DEC-2008 18:44:40:795] nsmfr: 2348 bytes at 0xdee0b8
    [04-DEC-2008 18:44:40:795] nsmfr: normal exit
    [04-DEC-2008 18:44:40:795] nsmfr: entry
    [04-DEC-2008 18:44:40:795] nsmfr: 492 bytes at 0xdbd2d0
    [04-DEC-2008 18:44:40:795] nsmfr: normal exit
    [04-DEC-2008 18:44:40:795] nsopen: error exit
    [04-DEC-2008 18:44:40:795] nsclose: entry
    [04-DEC-2008 18:44:40:795] nsclose: normal exit
    [04-DEC-2008 18:44:40:795] nladget: entry
    [04-DEC-2008 18:44:40:795] nladget: exit
    [04-DEC-2008 18:44:40:795] nsmfr: entry
    [04-DEC-2008 18:44:40:795] nsmfr: 164 bytes at 0xdd7ea0
    [04-DEC-2008 18:44:40:795] nsmfr: normal exit
    [04-DEC-2008 18:44:40:795] nladtrm: entry
    [04-DEC-2008 18:44:40:795] nladtrm: exit
    [04-DEC-2008 18:44:40:795] nscall: error exit
    [04-DEC-2008 18:44:40:795] nioqper: error from nscall
    [04-DEC-2008 18:44:40:795] nioqper: nr err code: 0
    [04-DEC-2008 18:44:40:795] nioqper: ns main err code: 12560
    [04-DEC-2008 18:44:40:795] nioqper: ns (2) err code: 0
    [04-DEC-2008 18:44:40:795] nioqper: nt main err code: 28862
    [04-DEC-2008 18:44:40:795] nioqper: nt (2) err code: 542
    [04-DEC-2008 18:44:40:795] nioqper: nt OS err code: 0
    [04-DEC-2008 18:44:40:795] niomapnserror: entry
    [04-DEC-2008 18:44:40:795] niqme: entry
    [04-DEC-2008 18:44:40:795] niqme: reporting ORA-28862 error

    Hi Ian,
    Well, I'm pretty sure Oracle Advanced Security is an Oracle product so you may not need to contact Microsoft just yet. :)
    I don't have too much to offer but I can say that I have seen this error when the operating system user used to create the wallet is not the same user that the listener and database services run as (these likely are running as the default Local System account unless you've already changed them).
    That is to say, if a user named "abc" created the wallet the listener and database services should be edited to run as that user using the Log On tab for the service properties. Hopefully that makes sense.
    Perhaps that will help a bit,
    Regards,
    Mark

  • Importing txt in flash 8, problems with special caracters

    i am having a problem when importing a txt file into my swf.
    When publishing it in flash player 5 the special caracters (in this
    case another language) the caracters display just fine, but when
    publishing in flash 8 they all transform into weird boxes.
    Anybody, any sugestions???
    thanks a lot

    Hade almost the same problem - - ->
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=194&threadid=1240349

  • TN3270 Plugin / ASA SSL Portal

    Hi Guys, I'm working on the ssl portal of my company  and  we need to have an  3270 emulator available in it, Do you know if there is a tn3270 plugin for cisco asa ssl portal? or is there a workaround to make it work?
    Thanks in advance,
    Regards
    Oscar

    Hello,
    Regarding the plugin, Nop.. There are no that much available plug-ins.
    So you have to other options:
    1- Smart tunnel ( You do not need to have administrative rights over the remote system, you only need to have the application locally installed)
    2- Port-forwarding ( You do  need to have administrative rights over the remote system and have the application locally installed)
    If those does not fit your expectations I will go for a tunnel all vpn ( Anyconnect or Ipsec remote access)
    Hope I could help.
    Julio
    Do rate all the helpful posts

  • Mutual SSL Authentication

    Hi,
    We are trying to implement Mutual SSL Authentication in our environment with Reverse Proxy and the Client's Browser.
    Can anybody help me out in this.
    We are using OAM

    Make sure the following for reverse proxy:
    1. make sure the webserver that uses reverse proxy accepts requests from reverse proxies.
    2. update the virtual hosts configured in the policy manager
    3. prevent people from using the direct url, u can use web server ACL's
    4.redirect all existing URL's to reverse proxy hostname with port
    5. deploy enough proxy servers to handle the load
    Thanks.
    Subhani Shaik

  • SSL Certificate and SSL Authentication

    Hi-
    I'm hoping someone can shed some light on this issue.
    First off, is there a difference between SSL Certificate and SSL Authentication?
    I have a POP account. The Incoming port is set to 110. The Outgoing, 26. (This is according to Bluehost.com). The security settings for both incoming/outgoing are set to none. Everything works fine.
    But if I want extra security, I'll set the incoming to 995 and outgoing to 465.
    If I set the security settings to SSL, do I check "Use secure authentication", or do I have to purchase a SSL certificate to secure the authentication? This is where I'm confused. I tried asking the hosting company but they're not much help.
    Any advice would be appreciated.
    Thanks!

    Hi Imagine,
    You do not need to purchase your own SSL certificate to use secure authentication. The server handles this for you. You just need to make sure the port #s are correct and you simply check mark the SSL boxes and leave authentication on Password at least on most setups. Each host maybe different so you have to double check with them.
    Hope That Helps,
    Eric

  • Why where special caracters removed from the German keyboard in iOS 4.2?

    Hi,
    with iOS 3 you could access special caracters like è é etc by pressing the e key when using the standard german keyboard on the iPad or iPhone.
    This is gone with iOS 4.21 - the only additional caracter is the letter ė.
    As my first name contains the letter é this is very bothersome as I need to work with an additonal (french) keyboard layout to type my name.
    Why where most of the letters removed, when will they be back?

    This problem has been raised here a few times already. Nobody knows why Apple did this. You need to ask for a fix via this channel:
    http://www.apple.com/feedback/ipad.html

Maybe you are looking for

  • How to Open Ports for HP Printers for all computers within the network (router)

    Hi, I have the EA6700 router and a few HP printers and Multi purpose printers/scanner/fax ... When installing the print drivers, they are ok.  Sending to printers are not a problem.  However, the problem comes with scanning. The HP Software ask to op

  • Ipod mini click wheel

    I bought my ipod mini in june, and by mid july, the click wheel all of a sudden was at an angle, i mean the wheel itself was slanting to the left, towards the back track button. I never put much, or any force on my ipod mini click wheel, especially s

  • 3D surface graph

    Hi Guys, I'm trying to draw a 3D graph. I have set the Range of the X,Y and Z-matrix axis as auto scalling. But the graph is looking differently. For an example if the X-axis in the range of 440-540 with 10 iteration. The output graph is not clear an

  • Can't write password on online banking

    My girlfriend has a problem, where she can't write anything in the password bar in her online banking. She has to write the password another place (f.e. in the internet adress bar) and then copy-paste it into the password bar (by pressing "cmd"+"v" -

  • What cable hookup should I use for DAT to hard drive conversion

    Hi, I have a Fostex D5 Dat machine with xlr & optical digital outputs and analog I/O right/left channels. I want to get these DAT tapes into my iMac (I have Logic 7 and will simply be using it to copy these to an external drive and then later master