EMV Card Personalization steps....

Hello,
I am working in EMV personalization and very new here. I received a Java Card and a Spec for its personalization. Here I have some confusion. ( Actually we take services for third party, here we just put values according to profile in boxes and it use it internally and personalize the card)
1- I want to personalize the card by my own, I know the keys and passed external authentication here. I know about there are some data that reside in files whose SFI can be get from GPO Command. But Is there any rule that I can decide about data/TAG will definitely should present in this SFI. So that I can make a list of Tags/Data which I will put in these SFI with using STORE Data Command.
2 - There are so Many Tags in EMV. Can someone tell me about list of those TAG which are mandatory in any EMV Application. so that Initially I can focus on it. Please guide me some so that I could start sending STORE Data Command....
Thanks in advance...................

1- You should consider the rules about data used for offline card (payment application) authentication.
2- You can take any bank chip card. Read it and use the data read as an example.

Similar Messages

  • Pre-personalization step on JCOP cards

    Hi guys!
    I have problem with pre-personalization step on JCOP cards. Using JCOP documentation I set global pin, 3 DES keys and keyset, card-state as OP_READY. Card not in fuse state and not protected, all needed info I write to card using /send WRITE comand from JCOP Shell in root applet. But when I /send PROTECT card not responce, I wait about 2 hours, but nothing happend. Can anybody face with with this problem and can help me?

    Hi,
    I write script for JCOP shell, and use it for prepersonalization step, you need to change all addresses, because they are incorrect:
    #----Pre-personalization script----
    #Script folder can be set using /set-var shell command (e.g. /set-var path c:/JCShellScripts).
    #The JCShell always searches the current directory for script files.
    #To execute a script, just type the name of the file (without extension) in the JCShell command line.
    #-------VARIABLES-----------
    /set-var Kt                 __INSERT_YOUR_TRANSPORT_KEY__
    /set-var chanel             0
    /set-var OK_resp            9000
    #Card manager lifecycle
    /set-var CM_LIFECYCLE_size        02
    /set-var CM_OP_READY          FE01
    /set-var CM_INITILIZED          F807
    /set-var CM_SECURED                  F00F
    /set-var CM_CARD_LOCKED          807F
    /set-var CM_TERMINATED          00FF
    /set-var CM_LIFECYCLE          ${CM_OP_READY}
    #Card manager default keys:
    /set-var DES_key_size          10
    /set-var DES_key_keyset          FF
    /set-var DES_keyset_size     01
    /set-var DES_K1           0123456789ABCDEF0123456789ABCDEF
    /set-var DES_K2           0123456789ABCDEF0123456789ABCDEF
    /set-var DES_K3           0123456789ABCDEF0123456789ABCDEF
    #size of GPIN_size is 01, size of GPIN_format is 01 and sizes used in functions without pre-defined constants
    /set-var GPIN                 3132333435
    /set-var GPIN_size             05
    /set-var GPIN_format           01
    #-------COMANDS-------------
    /set-var BOOT                  __INSERT_YOUR_COMMAND__(like 00100000)
    /set-var PROTECT              __INSERT_YOUR_COMMAND__
    /set-var FUSE                  __INSERT_YOUR_COMMAND__
    /set-var AUTH                  __INSERT_YOUR_COMMAND__
    /set-var ADMINEXEC             __INSERT_YOUR_COMMAND__
    /set-var READ                  __INSERT_YOUR_COMMAND__
    /set-var WRITE                 __INSERT_YOUR_COMMAND__
    #-------ADRESSES------------
    #     From: 188730_JCOPV2_4_1R3_admi.pdf
    /set-var A2_addr                __INSERT_YOUR_ADRESS__ (1 byte)
    /set-var CM_Lifecycle_addr     __INSERT_YOUR_ADRESS__(2 bytes)
    /set-var DES_K1_addr           __INSERT_YOUR_ADRESS__
    /set-var DES_K2_addr           __INSERT_YOUR_ADRESS__
    /set-var DES_K3_addr            __INSERT_YOUR_ADRESS__
    /set-var DES_K1_type_addr      __INSERT_YOUR_ADRESS__
    /set-var DES_K2_type_addr      __INSERT_YOUR_ADRESS__
    /set-var DES_K3_type_addr      __INSERT_YOUR_ADRESS__
    /set-var GPIN_addr           __INSERT_YOUR_ADRESS__
    /set-var GPIN_size_addr      __INSERT_YOUR_ADRESS__
    /set-var GPIN_format_addr      __INSERT_YOUR_ADRESS__
    #==============================
    #connect to card
    #===============
    /terminal
    /atr
    #select root applet with Transport key (Kt), and chanel 0
    /select ${Kt} ${chanel}
    #boot applet
    #===========
    /echo BOOT ROOT APPLET:
    /send ${BOOT}
    #setup CM lifecycle
    /echo setup CM lifecycle
    /send "${A2_addr}${WRITE}${CM_Lifecycle_addr} ${CM_LIFECYCLE_size} ${CM_LIFECYCLE}"
    #check it
    /send "${A2_addr}${READ}${CM_Lifecycle_addr}${CM_LIFECYCLE_size}"
    /set-var chk ${CM_LIFECYCLE}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: CM_LIFECYCLE not set"
    end
    #setup DES keys SET UP DES KEYS: 10.4.2
    #======================================
    /echo SETUP DES KEY:
    /send "${A2_addr}${WRITE}${DES_K1_addr} ${DES_key_size} ${DES_K1}"
    /send "${A2_addr}${WRITE}${DES_K2_addr} ${DES_key_size} ${DES_K2}"
    /send "${A2_addr}${WRITE}${DES_K3_addr} ${DES_key_size} ${DES_K3}"
    #check it:
    /echo CHECK DES KEYS:
    /send  ${A2_addr}${READ}${DES_K1_addr}${DES_key_size}
    /set-var chk ${DES_K1}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: DES_K1 not equal"
    end
    /send  ${A2_addr}${READ}${DES_K2_addr}${DES_key_size}
    /set-var chk ${DES_K2}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: DES_K2 not equal"
    end
    /send  ${A2_addr}${READ}${DES_K3_addr}${DES_key_size}
    /set-var chk ${DES_K3}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: DES_K3 not equal"
    end
    #set key type
    #============
    /echo SET KEY TYPE = ${DES_key_keyset}:
    /send "${A2_addr}${WRITE}${DES_K1_type_addr}${DES_keyset_size}${DES_key_keyset}"
    /send "${A2_addr}${WRITE}${DES_K2_type_addr}${DES_keyset_size}${DES_key_keyset}"
    /send "${A2_addr}${WRITE}${DES_K3_type_addr}${DES_keyset_size}${DES_key_keyset}"
    #check it:
    #=========
    /echo CHECK KEY TYPE:
    /send  ${A2_addr}${READ}${DES_K1_type_addr}${DES_keyset_size}
    /set-var chk ${DES_key_keyset}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: DES_K1_keyset not equal"
    end
    /send ${A2_addr}${READ}${DES_K2_type_addr}${DES_keyset_size}
    if ${response} != ${chk}
       throw "ERROR: DES_K2_keyset not equal"
    end
    /send ${A2_addr}${READ}${DES_K3_type_addr}${DES_keyset_size}
    if ${response} != ${chk}
       throw "ERROR: DES_K3_keyset not equal"
    end
    #set pin 12345 -(hex)->31 32 33 34 35
    #====================================
    /echo SETUP GLOBAL PIN (12345:5:ASCII):
    /send "${A2_addr}${WRITE}${GPIN_addr} ${GPIN_size} ${GPIN}"
    #set pin size 5 byte
    /send "${A2_addr}${WRITE}${GPIN_size_addr} 01 ${GPIN_size}"
    #set pin format ASCII
    /send "${A2_addr}${WRITE}${GPIN_format_addr} 01 ${GPIN_format}"
    #check set pin:
    /send "${A2_addr}${READ}${GPIN_addr} ${GPIN_size}"
    /set-var chk ${GPIN}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: GPIN not equal"
    end
    #pin size:
    /send "${A2_addr}${READ}${GPIN_size_addr} 01"
    /set-var chk ${GPIN_size}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: GPIN_size not equal"
    end
    #pin format:
    /send "${A2_addr}${READ}${GPIN_format_addr} 01"
    /set-var chk ${GPIN_format}${OK_resp}
    if ${response} != ${chk}
       throw "ERROR: GPIN_format not equal"
    end
    #need to send protect
    /echo PROTECT
    /send ${PROTECT}
    if ${response} != '9000'
         throw "ERROR IN PROTECT:" ${last.error} "Card can`t be fuse..."
    end
    #fuse:
    /echo FUSE STEP:
    /send ${FUSE}
    if ${response} != '9000'
    throw "ERROR in FUSE" ${last.error}
    #end
    /close

  • The keyboard and trackpad on MacBook Air (13-inch, Mid 2013) computers may stop functioning at the Personalize step when installing Windows 7 64bit

    The keyboard and trackpad on MacBook Air (13-inch, Mid 2013) computers may stop functioning at the Personalize step when installing Windows 7 64bit.

    1. Reset PRAM.  http://support.apple.com/kb/PH4405
    2. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    If this does not help, contact Apple.

  • Comenity Emv cards?

    What Comenity Bank Credit Cards have EMV chips in them? I want to start a relationship with Comenity, But I only will have EMV cards in my wallet.

    ddemari wrote:
    Meijer mastercard has a chip in it. Virgin america visa's also have chip.My Virgin America doesn't. Is this a brand new feature they've implemented (mine was issued March)?

  • Sharing PIN try counter -CVM retry counter- EMV GP contactless payment card

    I am trying to find out information regarding Pin try counter (referred to as the CVM retry counter in the the Global Platform 2.1.1 specs). We require a multi application card - one Mchip application and one proprietary application - The GP spec states that the PIN is shared accross applications (global PIN) however I am trying to find out the status of PIN try counter -can it be shared accross applications or is this not feasible? Also same question regarding the application transaction counter (ATC).
    GP spec is not clear on this - but it seems that counter sharing is not a requirement. Even if not a requirement, is it possible? Thanks
    GP spec states:
    The CVM state may be used by an Application to assist in managing PIN related functions. The non-atomic states
    of the CVM may be seen within a Card Session. The CVM state, the Retry Limit, and the Retry Counter are
    closely related. All CVM state transitions are immediately visible to the Application that caused the transition as
    well as to any Applications that may be selected on other logical channels.

    Thanks for your reply. Pin try counter (PTC) sharing is very common in contact EMV cards, we have been led to believe that there is an architecture issue in the contactless cards that makes PTC sharing more difficult (no problem with our Mchip contact cards with same applictions resident). From what I understand, in the contactless environment, firewalls exist around each "application" that prevent the sharing of most data other that the global PIN.
    We require the PTC to be shard for the use case in which the PTC is blown and a PTC reset script must be sent to the card. The scripts generally only update data in the active appliction and not the other apps residing on the card, therefore if you have multiple PTCs, the correct one might not be updated by the script. This is very problematic for us.

  • Master card personalisation Help needed

    Hi all,
    I am new to Master card and, would like to know the personalization steps for the Mastercard applet. Also
    what are the procedures (from where and how)for getting Mastercard applet for loading into a java card?
    I have smart card having Personalised Master card applet in it, is it possible to repersonalize it?
    Please give me some suggestions......
    Regards
    Anish

    Hi,
    If you are interested in learning more about this, a good place to start would be to get a copy of the EMV specifications. Since you are more interested in personalisation you might want to start with [EMV CPS 1.1|http://www.emvco.com/specifications.aspx?id=20]. You can also find the application (applet) specification in [Book 3|http://www.emvco.com/specifications.aspx?id=155]. The Master Card applet (MChip) is the Master Card implementation of the EMV specification.
    As far as I know, you have to become a licensed implementation of EMV or contact a licensee to determine the best way to have their applet onto your card.
    The common personalisation specification does not seem to mention reverting back from PERSONALIZED to SELECTABLE (may be there but I do not recall seeing it). This may actually be implementation specific and you will most likely find your answer in the EMV spec (book 2 or 3).
    I hope this helps you on the path to learning EMV.
    Cheers,
    Shane

  • How do you remove your credit card details so they don't ask for them again!!!

    I had my card linked but want to remove it and use my gift cards I got for Xmas and its not freaking working it keeps asking for my card details

    See step 2 under "Change your payment information on a Mac or PC":
    Change or remove your payment information from your iTunes Store account (Apple ID) - Apple Support

  • How SDA and DDA works in Java Card?

    Hi Friends,
    I want to know how exactly SDA and DDA works in Java Card technology..
    Yes, i know that SDA (Static Data Authentication) is valid for every transactions, but the key used is always same for every transaction made..
    and DDA (Dynamic Data Authentication) uses dynamic key for every transactions, it means that one key is valid for one transaction..
    But, i'm a little bit confused how this is implemented in Java Card..
    Is it related with SCP01 and SCP02?..
    Please help me regarding this..
    Thanks in advance

    Hi,
    I want to know how exactly SDA and DDA works in Java Card technology..This is an EMV concept and as such is not implemented in Java Card as such. You would have to create an implementation to be able to use SDA and DDA.
    But, i'm a little bit confused how this is implemented in Java Card..
    Is it related with SCP01 and SCP02?..It is not implemented natively in Java Card and are not related to SCP. SDA and DDA are for the EMV card application (card application data updates) and SCP is for the card manager (card content updates). While they could be considered similar concepts, they are not related in a Java Card sense.
    Cheers,
    Shane

  • Masking a portion of the Payment Card Number in SD

    Does anyone know how to mask a portion of the payment card number in SD (VA02, 03, etc)?  EX: XXXXXXXXXXX2145
    Also if you have done this what transaction is used to view the complete number, if needed?
    Thanks
    M. Grantham
    Edited by: Mia M. Grantham on May 13, 2008 8:28 PM

    I would suggest you to go through the forum before posting your question, though the encription procedure is :
    Encryption of Credit Card
    To activate encryption, your system must meet the following requirements:
    1. For Release 4.6C, you must import Support Package SAPKH46C46 and
    2. Kernel 4.6D must have patch level 1329 (see Note 565111).
    3. For Release 470, you must import Support Package SAPKH47022.
    4. For Release ERP 500, you must import Support Package SAPKH50007.
    5. Download and install SAPCRYPTOLIB (see Note 662340). You must use the CCARD application when you use Transaction SSFA to set up encryption.
    We configured the encryption of credit card data primarily based on Note 662340 and 633462. Since quite a few programs and transactions are called, together with system parameter and environment variable changes, it is worth documenting it with detailed steps and screenshots.
    Phase 1. Enable SSF encryption using SAPCryptolib
    If SSF encryption has been configured before, please jump to Phase 2. Otherwise please follow the procedure below for Windows platform, or Note 662340 for other platforms.
    Step 1. Download the SAPcryptolib from http://service.sap.com/swdc - "Download" - "SAP Cryptographic Software".
    Step 2. Copy the library and ticket file
    Copy sapcrypto.dll and sapgenpse.exe to C:\usr\sap\SID\SYS\exe\run
    Copy the ticket file to C:\usr\sap\SID\DVEBMGSxx\sec
    Step 3. Change the environment virable for QASADM and SARServiceQAS
    Step 4. Set the profile parameters and restart SAP
    Step 5. Check that Tcode STRUST can be called successfully
    Phase 2. Configure the encryption of credit card data
    Step 1. Specify the applicaiton-specific SSF parameters in Tcode SSFA
    Call Tcode SSFA, and specify "Private Address Book" and "SSF Profile Name"
    Click on "New Entries" - get to next screen; then select "Encryption of Paymant Card in SAP system", hit "Enter" key and Save. The default parameters should work.
    Step 2. Check the folder "Encryption of Payment Card" created in Tcode STRUST
    Step 3. Create PSE by calling program SSF_CREATE_PSE in Tcode SE38
    Execute program SSF_CREATE_PSE from Tcode SE38. (We found that it is easier to call SSF_CREATE_PSE than using Tcode STRUST for this step.) Give the distinguished name you want to use. We also selected the longest key length for stronger security.
    Step 4. Import/verify the certificate in Tcode STRUST
    Call Tcode STRUST, expend "Encryption of Payment Card" on the left and double-click the item <Server_SID_Instance> under it, then select the certificate displayed on the right (it should have the distinguished name you gave in the previous step). The self-issued certificate could be used. If you want to use external trust center, click on "Create Certificate Request" to get the request, and click "Improt Cert. Response" after the certificate is generated.
    Step 5. Execute report SAPFACCG in Tcode SE38 once
    Step 6. Maintain view CCARDEC_V in Tcode SM30
    Call Tcode SM30 and maintain view CCARDEC_V. Add VISA, MC, and AMEX as Payment Card Type and check "Encrypted" respectively.
    Phase 3. Check the configuration
    Execute report CCARDEC_CHECK from Tcode SE38, only select P_TOOLS, and you should get the results like the following
    **if you provide me ur email id, i can mail you the document.

  • Credit card processin

    Hi there! I really need some help!! I just recently got the iPhone 3G and I wanted to start trying out some different apps. When I try to create an account on iTunes, I always get stopped at the credit card processing step. After I have entered my payment information, there is a message at the very top of the page that says that the credit card processing in temporarily unavailable. I have been trying for a week now to create an account, but have not yet been successful. Please help!!

    I suspect that I know what's going on here. Here's what I suspect happened and how it finally worked today.
    1. A few weeks ago I purchased some songs.
    2. My card which worked in the past, rejected all of the sudden. Don't know why, since I had $$ on it. It was a debit card too. The card's been getting more finicky security-wise. I've had other online purchases fail when the card was perfectly OK.
    3. Anyway, I realized that I actually downloaded the song that it hiccupped on. I couldn't tell this until today. A cursory look at my account didn't reveal the issue. Itunes still wanted payment for a song I already downloaded.
    4. Apple kept giving me that uninformative dialog box since it was in this funky state. No more purchases would work. Simply changing the credit card # wasn't sufficient to resolve the outstanding issue.
    5. I logged in today, attempting to make a purchase. This time iTunes was more informative and told me to resolve the issue from 2 weeks ago on my acct.
    6. Purchases now work.

  • PO requisition personalization Query_Want to hide Supplier field

    My client requirement is to hide supplier field in the po requisition form because requstor would not view the list of suppliers names in the LOV.
    I have tried to hide the SUPPLIER field but folder menu option is not active, without that i cannot hide the field.
    Can any one advise me how to disable the supplier field using form personalization
    Quick responses is higly appreciated.
    Thanks in advance

    Hi,
    Following personalization steps will hide the supplier field.
    Seq - 10
    Description - Hide supplier field
    Level - Function
    Enabled - Checked
    Condition tab
    Trigger Event - WHEN-NEW-FORM-INSTANCE
    Actions tab
    Seq - 10
    Type - Property
    Description - Hide Supplier field
    Object Type - Item
    Target Object - LINES.SUGGESTED_VENDOR_NAME
    Property Name - Displayed
    Value - False
    Finally apply the changes and re-open the form.
    Let me know how you go.
    Thanks,
    PS.

  • Cant update credit card details even using chrome

    Hi,
    I cant update my credit card info, I have tried lots of time and with chrome and I always get this message below, its very frustarting and wasting a lot of my time.
    Please advise,
    Thanks,
    Ben
    'We're sorry, something seems to be wrong on our end. Please try again later.'

    Yes I'm facing the same VERY FRUSTRATING PROBLEMS.
    Thanks Romsinha for you kind words and I know that it's not your fault, but it's not enough to try to fix this issue over the
    chat or phone. It needs to be escalated to whoever at ADOBE manages Creative Cloud Bugs.
    I just logged the following under the "Creative Suite" Bug reports, since I can not find anything CC related:
    ******BUG******
    THIS IS A CREATIVE CLOUD BUG FOR
    WHICH I COULD NOT FIND ANY REPORTING OPTION IN THE DROPDOWN BOX
    Concise problem statement:
    Extremly frustrating issue with updating credit card details
    Steps to reproduce bug:
    1. Log in to my Adobe Account
    2. Go To 'My Products and Services'
    3. Find that my Creative Cloud Subscription needs credit card details updated
    4. Click on update and then edit credit card info
    5. See that the credit card info has updated
    6. Wait for Adobe to deduct payment from my account.
    7. On next day get notification that I'm one day closer to my membership running out (due to me not having updated my credit card details - apparently)
    8. Get in touch with Support over 24/7 Chat
    9. Actions that are suggested to me, are steps 1-6 which I (being very frustrated) execute AGAIN.
    10. Wait for steps 7-8 to repeat
    11. Contact Adobe Phone "Support"
    12. Have Adobe suggest me to repeat steps 1-6.
    13. Me being very very frustrated doing the same f****ing thing again, using two different credit cards, both which work perfect with any other, offline (in supermarket) and online - transaction.
    14. Have steps 7-8 repeat again.
    15. Trying to find other ways to bring it to ADOBES ATTENTION THAT THERE IS A PROBLEM, AND THERE ARE EVEN FORUM POSTS WITH OTHER PEOPLE REPORTING THE SAME ISSUE.
    16. Me not finding an option to report bugs for Creative Cloud and Hence deciding to log the request under Creative Suite (hoping that one of you guys will take on the responsibility & courage to forward this to the Creative Cloud Department
    17. Thanking you for having taken the time to read this and hoping that I can get this issue resolved - since I require CC for my daily work.
    Results: NONE SO FAR
    Expected results: That my credit card is used for the continuation of my CC membership.

  • I cannot import photos from my camera card into light room 5 or photoshop

    I cannot import photos from my camera card into light room 5 or photoshop

    There is no "into". LR and PS just reference your photos on the hard drive.
    When you import your photos "into" the LR catalog, LR can copy the images off your memory cards to the hard drive if you have not already copied them, but the photos are referenced by the LR catalog by the path and filename for the files.
    If you are having problems getting the images off the cards, what steps are you using and what error messages are you getting?

  • How to configure smart card login in sunray 2fs??

    Hi all,
    Please help me to configure smart card login using Sun Ray Server Software 4.0... How to assign a smart card for a particular user? Do I need to flash th smart card for user information or any other method exists?

    I'm not sure what you know or don't know about this so I'll give you what I know:
    1. Create a token reader and a token
    * Plugin a Sun Ray DTU/client
    * Check the MAC address of the Sun Ray you just plugged in
    * Access the Sun Ray admin GUI
    * Choose the 'Desktop Units' tab
    * See if your Sun Ray DTU is listed (if it isn't listed you have Sun Ray Server configuration issues...)
    * If it is listed click the identifier
    * Check the status of the DTU to see if this particular unit is already a token reader (normally it is not, i.e. by default a Sun Ray DTU is not)
    * Click 'Edit'
    * Check 'Token Reader'
    * Click 'OK'
    * /opt/SUNWut/sbin/utrestart (I'm not sure if a warm restart is OK or a hard restart is necessary)
    Now insert a shiny new Java card into your token reader's slot
    * In the Sun Ray admin GUI choose the 'Tokens' tab
    * Search for currently used tokens
    * You should see a token identifier such as 'Payflex.blah' under your desktop unit (i.e. the token reader)
    * Click the token identifier and click 'Edit'
    * Assign a username (i.e. Unix username) to the token under 'Owner'
    * Click 'OK' and remove the smart card from the token reader
    2. Assign the Token
    * Insert your smart card from step 1 into the token reader
    * In the Sun Ray GUI click 'Tokens' and 'New'
    * Under 'Identifier' you should see 'Read Identifier from Token Reader' checked
    * Click 'Read Token'
    * Assign an owner (i.e. Unix user account) and a session type (Kiosk or Regular)
    * Click 'OK'
    Item 2 from the notes I used for this looks alot like item 1 so I can't say that it is strictly necessary.
    I don't have a Sun Ray Server accessible to me at the moment to confirm but this procedure should help I hope.

  • Unkwon Card NC551i on installacion of vm server 2.2.1

    first ,...Sorry my English is very bad!
    I try install OracleVM-Server-2.2.1 on HP BL XXXX, two card NC551i dual port FlexFabric 10Gb port 1 and 2 iscsi, but when install unknow the cards, that step skips and it is going away to particionar the disc without requesting the data of the card, as if the card did not exist and finishes the installation. When in login only show the loopback , it supposes that deberia to recognize card from installation, that I already do it recognizes so that it, probe doing this:
    modprobe bnx2x
    ifconfig eth0 192.168.5.228 netmask 255.255.255.0 up
    show error: SIOCSIFADDR : No such device
    eth0: unknow interface: so such device
    please help me
    regards
    Jose Alcantara

    I never tried this in a real installation, but I previously had a discussion about the very same issue on this forum. You can find it here:
    Re: Hp Blades - flex10 technology questions
    Anyway, to the best of my knowledge I'd tell you that the only way to make this work is to get rid of the Virtual Connect modules, and put in plain Ethernet switches instead (gbe2c L2/L3 for c-class bladesystem).
    Using a normal switch(es) as the front end, you'll loose the capability of creating FlexNICs on your NC551i card (embedded or mezzanine).
    BUT AT THE SAME TIME, you'll see standard Broadcom NICs intead (2 on the embedded NC551i, and 2 on the Mezzanine, if present).
    These cards will run on standard drivers (bnx or tg3, can't remember), and you'll be able to successfully complete your installation.
    Finally you can connect the gbe2c switch(es) to your external Core Switches or directly to the firewalls.
    You'll be also able to put up Linux Bonding and VLANs with this configuration.
    HTH

Maybe you are looking for

  • Image size changes when moving an image between Lightroom and CC.

    Image size changes when moving an image between Lightroom and CC. I opened a .dng image in LR and then opened it in the Develop module.  I clicked on Crop Overlay and then on the 'As Shot' drop down menu (the lock is closed) and cropped to 11 x 17 an

  • SAPSCRIPT Variable

    Hi, I am printing the line item data in one of the elements. Since that is there in the loop it goes many times. This is a standard purchase order SAP SCRIPT that i am using. Now, i want to print a header line for these bunch of line items. Is there

  • Photoshop CS6 is not recognizing my Epson Photo 1400 printer...how to fix?

    I cannot print anything from Photoshop CS6. When i try to print any / all types of files from Photoshop CS6 to my Epson Photo 1400 printer, I get the following error message: "There was an error opening your printer. Printing functions will not be av

  • Quest Tool Guide

    Hi gurus, In Quick Guide to Installing the SAP Best Practices Baseline Package it says; Please refer to “Quick Guide to Quest Tool”. But I couldn't find this guide neither in service.sap.com nor in SDN. Any suggestions?

  • Show Attribute Business-Category in Outlook Mask

    Hello, I need to display some further company organizational information in the Outlook Mask of each user. Therefore, I like to use business-category Attribute, which is filled with one information. But after editing the template editor and using tha