Question on IKE preshared key for sun systems.

Hi All
I'm testing IPsec between a Sun system and a device(and Windows XP). The main mode negotiation failed in the third exchange when encryption is on. Responder side complains about the payload sent from the other side is malformed. I suspect the problem is related to the preshared key configuration. Sun system require a hexdecimal on preshared key and the resulting key length should be at least of what encryption algorithm require(from IP service manual:
The encryption algorithm in this example (see Step 2) is DES, so the pre-shared key must be at least 64 bits. However, a longer key length is a good idea. For example,
# ike.preshared on enigma, 192.168.66.1
{ localidtype IP
     localid 192.168.66.1
     remoteidtype IP
     remoteid 192.168.55.2
     # enigma and partym's shared key in hex (128 bits)
     key ac077cc699c17055848a3cf34377980a
My question is that how should I configure the preshared key to match the one in Sun? like in windows system? I tried to use the exact same key on windows, but the authentication failed. If the problem is not from preshared key, any comments are welcome.
Thanks a lot!

To restore key from encoded data you have to use one of the KeySpec lasses in your case DESKeySpec. Then you can use KeyFactory (SecretKeyFactory in this case) class to regenerate key.
SecretKeyFactory factory = SecretKeyFactory.getInstance("DES", "SunJCE");
myDESkey = factory.generateSecret(keySpec);

Similar Messages

  • Exact Steps to Generate Installation keys for other systems In SolMgr4.0

    Hi friends,
    Please provide me exact Steps to Generate Installation keys for other systems In SolMgr 4.0 SR1.
    I have steps to make this thing in solmgr 3.2 as please change as it in solmgr4.0 sr1
    txn SMSY
    Expand Landscape components -> Systems
    Right click on Systems  ->New System
    Type SAPID, & Installation No. (S44 , 0040099252) & sAVE
    Expand Newly Added system
    Right Click & Create
    Now we can use the key provided by the system.
    Please make required changes as applicable in solmgr4.0 So that I can proceed.
    Also clear vat is the difference between ECC & ERP as solmgr4.0 mention both as two systems.
    Thanks & regards
    Jaswant
    +91 9949676055
    Cheers 'N' Joyce

    Hi Jaswant,
    to generate a Solution Manager Key you can process a little bit easier.
    Call transaction SMSY, press shift+F5 (you get the "other objects" popup).
    As System enter the SID of your Solution Manager.
    ->select gen.Installation/Upgrade Key (shiftctrlF10))
    then you get a new popup. In this popup you DELETE all values, enter SID of the new system, the message server of the new system and the system number of the new system. Then press generate key.
    With this procedure you do not have to add the system to SMSY to generate the key.
    Later you should add it to SMSY, maybe you have added an SLD to SMSY then the system will be added automatically. If not you have to add it manually.
    Second question ERP <> ECC
    Good question, ECC is part (a main instance) of ERP, so it is up to you if you classify your system as an ERP or ECC.
    Regards,
    Udo Lang

  • Remote Keys for Multiple Systems

    I am working on an SRM project where we have internal catalogs items (from ECC) and external catalog items (from Excel files) going into an MDM Catalog repository.  For both, we use a lookup table for the Supplier number to cross-ref to a supplier name.
    We have a Supplier List message that runs from ECC to MDMCAT to populate this table.  In doing so, it creates a key mapping for the ECC remote system...which gets used for cross-referencing supplier names when catalog items load.
    The issue...we do not have such a Supplier List from the external catalog "remote system", so when external catalog items get loaded there is no supplier number/name cross-ref happening.  I can manually create key mappings for the external remote system, but I want to automate it. 
    I am thinking about having our PI middleware make a copy of the ECC Supplier Lists and send them to a new port set up as the external remote system...thinking that this would generated extenal system keys...hopefully without duplicating supplier lookup records.  Before proceeding, I wanted to throw this out to see if there is a better solution.
    Any suggestions?
    Thanks,
    Keith

    Hi Keith,
    some remarks:
    if you send data from ECC to MDMCAT, the catalog items contain the supplier keys of the ECC system. That's why the import works automatically. If you want to reuse the ECC supplier keys, the first question to answer is: does your external system  use exactly the SAME keys as ECC? Only if this is the case, duplicating the ECC supplier message works for you. Otherwise you'd create keys for your external system that are never sent by the external system.
    If the external system uses the same keys as ECC, the next question is how often do you update the supplier list in MDM? Regularly? Only once? If regularly your option with PI is a good idea. This won't duplicate supplier records as Import Manager (or MDIS) is able to identify already existing suppliers and updates the remote keys only (anyways you should check the related import map!). If it's a one time action only, you can re-open the same file multiple times for different remote systems with Import Manager. Then you wouldn't have to configure an additional connection from PI to MDM.
    Best regards
    Michael

  • Question:what is the key for it to support SAP?

    Hi, I am a new SAP member, i have a question about if i work for IT department, what will be the key for me to support ERP-SAP???
    Any experts can help me??
    Thank you so much

    Dear,
    I didnt get it....
    I am a new SAP member, i have a question about if i work for IT department, what will be the key for me to support ERP-SAP???
    You mean you are joined IT department - what's your role to support with ERP-SAP???
    Or you joined IT department as ERP power / super user???
    Anyway.. considering  _if i work for IT department, what will be the key for me to support ERP-SAP_
    You have to install Front end GUI in all user systems and configure clients (SAP clients 300, 786, sandbox etc) whichever applicable to set. Takr care and maintain the servers, network connectivity, installing the SAP supported printers and configure them in ERP to get print out etc.
    Hope this what you looking for ... if not pls. do reply.
    Regards,
    Syed Hussain.

  • Working key for Sun one 5 ME Early access???

    Hi There,
    Can anybody tell me how to make my Sun one 5 ME Early Access version of IDE to work for some more time??? It started giving warning saying my key will be expiring in 10 days, Any idea how to make it work for some more days as iam on my way to finish something??? I read long back in thins forum that some gentleman was giving a working key for this version of IDE. Can you give it to me too??? Thanks in advance.
    Thank you,
    Manas

    It was me, please email me at the same address as before: peter.podsklan (at) sun.com. I'd be more than glad to give you the new number.

  • Question on indexing foreign key for replicated table

    Hi everybody,
    I have 2 tables with following script
    create table
    parent(parent_id number(2) not null,
    parent_name varchar(20),
    constraint parent_pk primary key(parent_id))
    create table child(child_id number(2) not null,
    parent_id number(2) not null,
    child_name varchar2(20),
    constraint pk_child primary key(child_id,parent_id),
    constraint fk_child foreign key (parent_id) references parenr(parent_id)
    I want to replicate them and I know to replicate these 2 tables i should add them to my replication group, my question is that the child_id has foreign key so as below link says
    http://dbataj.blogspot.com/2007/11/advance-replication-part-ii-master.html
    I should put an index on the foreign key.What type of index should it be and is the following script correct for my purpose?
    CREATE BITMAP
    INDEX "fk_child"
    ON child ("PARENT_ID")
    TABLESPACE "USERS"
    I would appreciate your help in advance.
    Mery

    A bitmap index is almost certainly not the sort of index you'd want to create. You would normally want just a normal index, i.e.
    CREATE INDEX fk_child
      ON child( parent_id )on the master database just to support normal DML operations (otherwise, deleting a row from the parent table requires doing a full table scan on the child table to see if there are any orphaned child records).
    If you are trying to set up a multi-master replication environment, you would also need to replicate this index, since you'll want to support basic DML on both nodes.
    Justin

  • Debugger shortcut keys for Safari 5

    What are the shortcut keys for the following operations of the JavaScript debugger:
    - Step over,
    - Step into,
    - Step out,
    - Pause/Resume

    http://superuser.com/questions/168747/debugger-shortcut-keys-for-safari-5

  • License Key for a - Netweaver with BW (30 Day Trial )

    I installed 30 day trial version of an Netweaver with BW. After the installation I also wanted to do some programming but than I needed a developer key, my problem is that the "Installation Nr." is called "INITIAL" and not "DEMOSYSTEM" like the SAP Sneak Preview from the SDN page though the license key which you can order there doesn't work. Is there a way to get an developer key for my system?
    I would be very happy if someone could give me a hint or an adress where to ask.
    System settings
    SID: NSP
    InstallationNr.: INITIAL

    The developer key provided on the Sneak Preview page should work.  Worked for me.  You may want to register for a license for DEMOSYSTEM.  This will extend you trial to 90 days(I think).  Please read the instructions for license key and developer key.
    Regards,
    Rich Heilman

  • Deprection keys for IFRS

    Dear Experts,
    We are using Deprecation 40 for IFRS. In IFRS point of deprecation will calculate on the basis of useful life (for example 1years, 3 years, 33 years etc).
    In the above case kindly tell me how I have to configure the calculation method (Presently we are using Multilevel method) and deprecation keys for IFRS.
    For IFRS purpose we have copied the for the exiting deprecation area 41 and changed the name as 40-IFRS.
    In the above case what are the settings I have do for IFRS (For example Acquisition value, Net book value, Investment grants etc)
    Regards,
    Venkataswamy

    Hi Ajay
    Thanks for your early response
    When i was creating the depreciation key for IFRS system is giving the below warning messege
    SMI S18 N 1 : Dep. after planned life end incompatible with dep. over rem. life
    Message no. ACRSL016
    Diagnosis
    A depreciation method over the remaining useful life is only mathematically logical during the useful life of the asset. Transactions that take place after the useful life is expired can no longer be depreciated using this method.
    This entry makes sense only if depreciation ends during the fiscal year, and you entered a changeover method.
    Procedure
    Check if depreciation ends in the course of the fiscal year, and if a changeover method was entered. Otherwise, change the "Rem.Life" (calculate percentage from remaining life) indicator in multi-level method S30 or change the "Dep. after plnd.life end" (Depreciation after planned life end) indicator in base method 0014. The incorrect entry is in SMI S18 N 1 (chart of depreciation, depreciation key, depreciation type, depreciation phase).
    Kindly help me on this
    Regards
    venkataswamy

  • ABAP question: define a custom foreign key for a standard field??

    Hi,
    I want to use the field ADDR1_DATA-STR_SUPPL3 for customer use. I must to define a foreign key against a Ztable (as verification table) for this standard field. Also I must to define a custom search help.
    To defining a foreign key for this field, I must be in change mode, so the system ask to me for registering the object. That means this action is a modification. My question is the following: is there any way to do so without SAP standar modification??
    For instance, using BDT events...but how?
    Thanks in advance.
    Regards,
    Rosa

    Hi Rosa,
    Changing SAP Standard dictionary elements is not possible with out changing the same. To change these elements, we dont have any other method apart from SAP standard modification.
    Cheers
    Pavan

  • Php plugin 1.0 for sun java system webserver

    Hi,
    I installed php plugin 1.0 for sun java system webserver 7. But it supports default 2 DB mysql and postgresql. Can i configure oracle 10g DB support?
    Appreciate if you could throw some light on this.
    Thanks,
    Krish

    Using PHP with NSAPI plugin will definitely get you the best performance. However, if you are using PHP with NSAPI plugin enabled then you might have to be careful when you are installing any of the PHP extensions from PECL to make sure that they are thread safe.
    Note: There can be a potential issue only when using any of PECL (http://pecl.php.net) extension and not with any PEAR (http://pear.php.net) extensions.
    For example, if you PHP built for NSAPI and then using on top of WordPress or Drupal or on top of frameworks like ZF etc should not be a problem
    To compile PHP 5.3 with NSAPI, you would do some thing like
    ./configure --with-nsapi=<web-server7-install-directory>
    To compile PHP 5.3 with FastCGI, you would do some thing like
    ./configure enable-cgi enable-force-cgi-redirect

  • Project Management Question - timelines for Production system deployment

    Hi
    I need an expert advice on setting up timelines for establishing an Oracle Apps Production environment. We are implementing Oracle HR & Payroll at an organization.
    Our system architecture is a 2-node application tier and 2-node DB tier (RAC). RAC is configured by another party and we only have to prepare the application tier (2 nodes)
    We would be installing Oracle Apps R11i (11.5.10) with jserv load balancing on the 2-nodes
    Can anyone suggest how much time this should take to install/configure & patching of the application tier (on 2 nodes)?
    Regards
    Saira

    Duplicate post (check your other thread):
    Project Management Question - timelines for Production system deployment
    Re: Project Management Question - timelines for Production system deployment

  • Regarding access key for modify predifined fm in SAP IDES System

    hai to all,
    How can i find
    access key for modify predifined fm in SAP IDES System
    i have sap 4.7 dump(IDES)
    please give reply asap.
    thanks in advance,
    regards,
    surya.

    Hi Chandran,
    Thank you for the reply,
    how can i access this site, its asking username password,
    i didn't have both of these and even i'm unable to register also.
    how can i access.
    please respond
    regards,
    surya.

  • License key for a J2EE Engine standalone system

    Hi,
    I installed a J2EE Engine 7.0 standalone system (at first screen of installation, I selected node <b>SAP ERP 2005 Support Release 2</b> to start the installation of SAP NetWeaver's software units  - not software units of SAP ERP, NOT node <b>SAP NetWeaver 2004s Support Release 2</b>).
    In http://service.sap.com/licensekey, I request a license key for my new J2EE Engine standalone system. At first page, I only see 2 installation options to select, these're corresponding to SAP ERP and SAP SOLUTION MANAGER. I select SAP ERP and at System Information page, I choose SAP product <b>SAP NETWEAVER</b>.
    Then, I install the license key received via Visual Administrator - Server 0  - Services - Licensing Adapter. But 28 days bypass, system get down because of license expiration (not relates to the date validation).
    The same thing happens when I make other license keys by choosing SAP product <b>SAP WEB AS</b> and <b>SAP ERP</b>.
    Someone tell me what's wrong?
    Thanks,
    Toan Do

    Hi Toan,
    I hope you are following the procedure given in the above mentioned link (which i gave).
    In the Visual Administrator choose Server 0  --> Services --> Licensing Adapter. The system data that you need to request the license from the SAP Service Marketplace appears.
    ¡        Installation number (if it exists)
    ¡        System ID,
    ¡        System number (if it exists)
    ¡        Hardware key
    ¡        Current release
           2.      Under the Internet address service.sap.com --> mySAP Business Suite, you can get to the initial page of the license key requests in SAP Service Marketplace. Here you will find all the information you need to request license keys.
           3.      Enter your e-mail address in the request. The license key will be sent to you promptly by e-mail. Alternatively, you can also download the license key from the SAP Service Marketplace.
    Do not make any changes to the license key. To import the license key, the file must not have been changed.
           4.      In the Licensing Adapter in the Visual Administrator choose Install License from File.
           5.      Select the license file that you want from SAP.
    If this doesn't solve your issue, I suggest that you post a message with SAP.
    Regards,
    Siddhesh

  • Solution Manager key for ERP upgrade for the same system ID on a different

    Hi there,
    We have  migrated our R/3 DEV system (4.7) running on Windows 2003 to 64 bit and copied existing system using system copy for testing ECC 6.0 upgrades. Both the DEV systems, with the same system id, will be available for a short period. However, the new system, which also has same system id i.e DEV is not created in the Solution Manager landscape, as the system id with the same name already exists. Both the systems are created in SLD.
    Can anyone  clarify whether i can create the license key from the existing DEV system and use the same key for upgrade of DEV system running on different server? If not I will have to delete the current DEV system and create new DEV system running on 64 bit.
    Thanks in advance,
    Regards
    Chandu

    Hi,
    You cannot use the old solman key as systems are on different server.
    I think you have to delete the old Dev system and then generate new solman key.
    Thanks
    Sunny

Maybe you are looking for

  • I need to know what software to download

    I have the Blackberry Curve and tried to use the disk from the original package from ATT but it wasn't great.  The guy at the ATT store told me it is better to download a desktop manager from the Blackberry site but I don't know which one I should do

  • Everytime I click on firefox I get an error message "The connection was resert, try again ????

    Everytime I start firefox as my primary web browser, I get an error message that "The connection was reset" .... Please click on try again .... Then I click on try again and it works fine ..... == This happened == Every time Firefox opened == when I

  • Quantity contracts in sap SD

    Hi everyone, Can you please explain me how to configure quantity contracts in SD, i am very new to the contracts. Once we created the quantity contracts what order type i can use to create the release order. Do i need to give any assignment of releas

  • Double commas, double spaces

    (I conducted a search on "double commas" but found no answers to this vexing problem) This is a funny one. Basically, if I'm typing at normal speeds, I sometimes see double commas and double spaces. It has nothing to do with my key repeat rate, and i

  • Pencil tool customization in Illu. 2014

    Hi, I have a problem with creating a stroke using the Pencil tool. I would like to be able to choose the stroke's width profile before I draw the stroke (it worked like that in Illustrator 17.1). For example I want it to be narrower at the beginning