Is there a list of interface cards and their solaris representations?

Hi folks,
I will get some new hardware for a project (two T5220) and need to write down some configuration document in advance.
I need to know the interface names (like ce0, qfe9, ...) of the onboard interfaces, the ILOM port and the following cards:
X4447A-Z: Sun x8 PCI express Quad Gigabit Ethernet UTP
X7280A-2: Sun PCI-E Low profile Dual GigE UTP
X7281A-2: Sun PCI-E Low-Profile Dual GigE MMF
We have all this stuff in one T5220 and I have to prepare some kind of network configuration.
Ist there a table that consists of the card name and the device/driver/module name that will be visible by ifconfig?
Kind regards
Oliver

fucholiv wrote:
Hi Darren,
I think, the numbering must be fixed somehow. In the early days we had E4500 and some IO boards. On them the three sbus slots were grouped around two controllers 0 and 1. Controller 0 controlled sbus slot 1 and 2. So the numbering was, that the middle sbus slot qfe controller (e.g.) got the lowest numbers, then the rightmost came and then the leftmost.The numbering isn't fixed. But if you have the same hardware at installation time, it should be detected and numbered in the same order.
We will have 30 T5220 and all network adapters will be installed at once. There must be some kind of numbering, that prevents from the total chaos in interface naming/numbering. We want to use only one script for all systems. ;-)I doubt it.
An unsupported (but useful) path is to change the numbers after installation by tweaking /etc/path_to_inst. Without the explicit ability to rename interfaces, that's probably the best you could do.
Darren

Similar Messages

  • Is there a list of table name and object name? (oCompany.GetBusinessObject)

    Hi,
    How do I find the objects regarding the tables in SBO?
    Example Item Master, I use following statement:
    SAPbobsCOM.Items oItem;
    oItem = ( SAPbobsCOM.Items ) oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oItems);
    I like to find the object for SPP1.
    Is there a list of table name and object name?
    Thank you,
    Rune

    Thank you, Owen,
    Yes, I found the table name and method name in SDK Help Center:
    On your P/C, click START. Select All programs , SAP  Business One > SDK > SDK Help Center. Then select  DI API, then DI API Reference. If you scroll down this window you will find all existing classes. You will then find the SpecialPrices and the SpecialPricesDataAreas. All the information required to code is in there.

  • Command to  provide list of all objects and their scripts from database

    Hi,
    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2
    Kindly ge me the advice
    Thanks in Advance

    How do i get the list of all objects and their scripts/source from database?
    I guess using dbms_metadata package or Toad tool we can achieve the above task
    But i do not know the steps to get the objects and their scripts.
    Im using oracle database 11g R2 11.2.0.2If you want the all the metadata of whole database, then it is quiet difficult to get from DBMS_METADATA, as it is very complex because you need to gather for each object of each schema in whole database and to spool.
    http://www.orafaq.com/node/57
    I want to know, what is the use of entire database metadata, Certainly need of objects of metadata.
    or if you want to whole database, then i suggest you go for export full backup and import as impdp sqlfile option,

  • How to get a list of current users and their transactions code?

    SM04 and AL08 give the list, but its not comprehensive.  in sm04, we have to click the username and select sessions and then a
    new popup comes giving all transactions for the user. 
    I want a list such that each and every transaction corresponding to the user is listed at same time.

    Hi,
    Use the FM TH_LONG_USR_INFO.
    Just give parameter user as * (it means all users, other wise current user)
    It will give ALL transactions for ALL users.
    Regards,
    Amit Mittal.
    Edited by: Amit Mittal on Dec 30, 2009 1:00 PM
    Edited by: Amit Mittal on Dec 30, 2009 1:03 PM

  • Getting list of all users and their group memberships from Active Directory

    Hi,
    I want to retrieve a list of all the users and their group memberships through JNDI from Active Directory. I am using the following code to achieve this:
    ==================
    import javax.naming.*;
    import java.util.Hashtable;
    import javax.naming.directory.*;
    public class GetUsersGroups{
         public static void main(String[] args){
              String[] attributeNames = {"memberOf"};
              //create an initial directory context
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://172.19.1.32:389/");
              env.put(Context.SECURITY_AUTHENTICATION, "simple");
              env.put(Context.SECURITY_PRINCIPAL, "[email protected]");
              env.put(Context.SECURITY_CREDENTIALS, "p8admin");
              try {
                   // Create the initial directory context
                   DirContext ctx = new InitialDirContext(env);     
                   //get all the users list and their group memberships
                   NamingEnumeration contentsEnum = ctx.list("CN=Users,DC=filenetp8,DC=com");
                   while (contentsEnum.hasMore()){
                        NameClassPair ncp = (NameClassPair) contentsEnum.next();
                        String userName = ncp.getName();
                        System.out.println("User: "+userName);
                        try{
                             System.out.println("am here....1");
                             Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should be returned
                             System.out.println("am here....2");
                             Attribute groupsAttribute = attrs.get(attributeNames[0]); // memberOf
                             System.out.println("-----"+groupsAttribute.size());
                             if (groupsAttribute != null){
                                  // memberOf is a multi valued attribute
                                  for (int i=0; i<groupsAttribute.size(); i++){
                                  // print out each group that user belongs to
                                  System.out.println("MemberOf: "+groupsAttribute.get(i));
                        }catch(NamingException ne){
                        // ignore for now
                   System.err.println("Problem encountered....0000:" + ne);
                   //get all the groups list
              } catch (NamingException e) {
              System.err.println("Problem encountered 1111:" + e);
    =================
    The following exception gets thrown at every user entry:
    User: CN=Administrator
    am here....1
    Problem encountered....0000:javax.naming.NamingException: [LDAP: error code 1 -
    000020D6: SvcErr: DSID-03100690, problem 5012 (DIR_ERROR), data 0
    ]; remaining name 'CN=Administrator'
    I think it gets thrown at this line in the code:
    Attributes attrs = ctx.getAttributes(userName, attributeNames);
    Any idea how to overcome this and where am I wrong?
    Thanks in advance,
    Regards.

    In this sentence:
    Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should
    It seems Ok when I add "CN=Users,DC=filenetp8,DC=com" after userName, just as
    userName + ",CN=Users,DC=filenetp8,DC=com"
    But I still have some problem with it.
    Hope it will be useful for you.

  • Upgrading to iMac 5K or Mac Pro.  Is there a list of Graphics Cards that are optimized for Premier Pro CC?

    A couple of years ago I remember Adobe listed Graphics Cards that were optimized to work best with Rendering in Premier Pro and other applications.  I have Creative Cloud so I have access to latest versions. 
    The iMac 5K Retina has a choice of AMD Radeon R9 M290X and M295X.
    The Mac Pro has Options of AMD FirePro d300, D500 etc. 
    Does anyone have any idea where I can find out what graphic cards are optimized for Premier Pro an other applications from Adobe?
    Thanks...
    Chris Moody

    If you are not in the 4K business --> I would go for the 32 GB & 27" iMac w/o Retina, the NVIDIA GeForce GTX 780M mit 4 GB GDDR5 (CUDA support) will give you quite a good performance, i.e. with a Thunderbolt connected Raid6 system your 2K projects (including some color correction and other plugins) will work well and you can even use the system as 4k starter/test system.
    If you in the 4K business you could use a full blown iMac Retina system with a GPU AMD Radeon R9 M295X mit 4 GB GDDR5 together with an already mentioned TB Raid6 system. As described from the forum-compatriots, this non-CUDA card doesn't perform too well on GPU accelerated functions of PPro --> but --> search this forum... you will be surprised....some workflows are nearly unaffected....
    If you are in the high end 4K footage busine$$ and you apply a lot of external color correction to your 4k footage (e.g. BM DaVinci) I would go for a MPro with 2 D700 cards.

  • Is there a list of available Codepages and ISO-Standards?

    Hi,
    Im looking for a table where there are all codepages and ISO-Standards listed. Is there any where I can check?
    I want to know the specific naming of the ISO standards 3166 and 639.
    Thanks for help!!

    Hi,
    Check this links:
    http://www.wwtld.org/meetings/cctld/ISO3166-IDN-G.Lang-E.Porteneuve.pdf
    http://www.wipo.int/export/sites/www/standards/en/pdf/03-31-01.pdf
    http://www.iso.org/iso/country_codes/iso_3166_code_lists.htm
    http://search.cpan.org/~neilb/Locale-Codes-2.07/lib/Locale/Country.pod
    Rewards if useful...
    Thanks,
    Mandeep Saini

  • HT3702 every time I enter my card details it says this is not a Valid Method of Payment even though there is money on my card and all details are entered correctly?

    stop ******* me off

    Perhaps you should contact the iTunes store via expresslane.  They can look at your account and provide the information you are looking for. 
    Expresslane.apple.com / select iTunes / iTunes Store / Purchases, Billing and Redemption / then unable to purchase from the iTunes store.
    Try the article, and if that doesn't solve the issue, you can Email them, or there may be other options depending on when you access the page, and where you are located.

  • Is there a listing of error codes and what they mean?

    Continually get -3150 and -3252 codes. Can't find info when I search the site. Looks like lots of other error codes. Didn't know if anyone knows where to find a list of what the codes mean...and ways to make them stop.
    Thanks.

    It happens when the server can't connect to LDAP server. Check to make sure your server is connecting to directory server by going to "Users & Groups" tab in the administration server UI.

  • HT5622 I can't creat my Apple ID billing address , there is problem with debit card and iTunes gift code . Please give me suggestion

    How can create Apple ID billing address

    Contact iTunes support:
    http://www.apple.com/support/itunes/
    No one here can help you.

  • Table or list for icon images and their explanation?

    Hello,
    In our user manuals we have descriptions of icons next to the respective icon image. Until now I've always used a table, but the predefined table elements in DITA don't allow for a narrow first column and wider second column. I appreciate any suggestions how I can do this in structured FM.

    Hi ABJB,
    I don't know enough about DITA to say whether it should or should not be possible to set custom table widths. I do remember working with the spec in the past and there was something about a lack of attributes in which to store table widths, so I had to borrow some other attribute and do some fancy XSLT work to jam the data into another attribute. Anyway, the relevant point is that someone either needs to tell you how it can be done, or, if it cannot be done, then you can either:
    - Modify the DITA structured application to make it store table widths, so the data is preserved when it goes to XML and back
    - Use your own custom structure definition
    By the way, I'd like to clarify something about "structured FM"... Structured FM is the same old FrameMaker you've always known, except that structural markup is applied to your content and gives you lots of help with the automation of format. So, you can make column widths whatever size you want, tables look however you want, etc., and when you save to binary *.fm format, all the layout is naturally preserved. In your case, though, you are attempting to use structured FM to edit XML files, which is somewhat of a different story. The structured interface is very good for this and when everything is properly configured, XML files open up looking like normal FM structured documents (like the DITA XML files). However, for lots of formatting properties such as table widths, there must be some kind of instruction behind the scenes that tells how to write that data into the markup, otherwise it is simply lost. It is possible that the DITA structured app (and the DITA spec) lacks that ability and hence the column width data is lost when the content goes to XML.
    So anyway, that's a long windy explanation to emphasize that nearly anything that is possible in unstructured FM is possible in structured FM. It's when you start saving in XML format that you have to account for formatting artifacts.
    By the way... do you need XML for anything? Lots of people find that structured FM alone serves their needs.
    Russ

  • Lack of Office 365 (local instal) COM Automation support - need a definitive list of the versions and their support for automation.

    I develop an application that does some PowerPoint automation using embedded interop types (C# App - with VB assembly that does the office automation part)
    I've started to get reports that the PowerPoint automation is failing on Office 365.
    Here is a sample of a typical customer complaint:
    not exporting to powerpoint...
    We recently migrated from Office2007 to O365. That would be definitely the reason.
    But how can we solve this?
    I found the following reply to a forum question:
    https://social.msdn.microsoft.com/Forums/office/en-US/3c95eea4-641f-4bf0-a166-ecf33177854b/does-desktop-versions-of-applications-in-office-365-packages-support-comautomation?forum=exceldev
    But it only states that one version doesn't - and then one version does - doesn't reference a list of all support versions.
    Also - later - in that thread - it is shown that the accepted answer is actually incorrect.
    A sample of the type of code used to interact is shown here....
        Public Function PositionSlideTitle(ByVal slide As PowerPoint.Slide, ByVal height As Single, ByVal marginX As Single, ByVal marginY As Single) As PowerPoint.Shape
            Dim shapes As PowerPoint.Shapes
            Dim shape As PowerPoint.Shape
            ' get the shapes on the slide
            shapes = slide.Shapes
            ' get the shape that holds the title
            ' if the shapes collection has a title, then this title shape is always in index 1
            If shapes.HasTitle = Office.MsoTriState.msoTrue Then
                ' the title shape can also be accessed by the special property Title
                shape = shapes.Title
            Else
                ' If there was no title - then add one
                shape = shapes.AddTitle()
            End If
            ' position the shape at 0,0 (seems not to want to go there)
            shape.Left = marginX
            shape.Top = marginY
            ' stretch image to fit slide
            shape.Width = slide.Master.Width - (marginX * 2)
            shape.Height = height
            Return shape
        End Function
    The project references Microsoft.Office.Interop.PowerPoint, version 11.0.0.0 with it's "Embed Interop Types" set to true.
    This has worked for 10+ years, with all versions of office from Office 2003.  We still need the application to support Office 2003 - and it still does perfectly, so referencing newer PIA's isn't an option.
    Please help.

    Great to know that all versions of Office Support Com Automation.
    Because the end-users that have made the complaint - are using Office 365 - it wouldn't be the Click2Run edition as you've mentioned - but it's good to know that information, as I wasn't aware there was a possible issue with that - thanks.
    I'll just assume then that the end user that sent the following issue is running them with different permission level:
    not exporting to powerpoint...
    We recently migrated from Office2007 to O365. That would be definitely the reason.
    But how can we solve this?
    Although - one more thought - I read somewhere that O365 users can install office via the O365 portal - I wonder whether this is the same as Click2Run install - and hence causing the same out-of-process application error you have referred to?
    Kind Regards
    UPDATE:
    Further reading/searching on click-to-run and O365 found the following:
    I can't paste links in this forum, but:
    technet microsoft com "en-us/library/jj219427.aspx"
    Eugene - you may be onto something with the click-to-run issue - that may be the cause of the error in O365 installations - At least now I have a scenario to test against (user info is always difficult to determine exactly how to replicate issues) - Cheers.

  • Step Through a List of .p12 Certificates and Their Passwords to Extract Property Data

    This is a follow-up question to my previous thread:
    http://social.technet.microsoft.com/Forums/en-US/58ca3098-e06d-419a-9465-1ae7973e1c04/extract-p12-property-information-via-powershell?forum=ITCG
    I understand how to extract the information for a certificate one-by-one, but I am wanting to write a powershell script that will step through a list of certificates and a list of their corresponding network passwords in order to extract their property
    data (i.e. expiration date, etc). Any suggestions?
    jrv helped me with the first part of my question by providing this script:
    PS C:\> $filename='c:\temp2\certs\jpd.cer'
    PS C:\> $cert=[System.Security.Cryptography.X509Certificates.X509Certificate2]::CreateFromSignedFile($filename)
    PS C:\scripts> $cert|fl
    Happy Hunting!

    HINT:
    dir *.cer | %{ [System.Security.Cryptography.X509Certificates.X509Certificate2]::CreateFromSignedFile($_)}
    ¯\_(ツ)_/¯

  • Need to get a listing of all users and their corresponding Exchange 2013 Mailbox Quotas using Powershell

    I will be changing the default quota on mailboxes soon, but there are a number of others who have "customized" quotas and I will need to identify them also.
    Charlie

    The following powershell command can get you the mailboxes that are using "custum "quota:
    Get-Mailbox -Resultsize unlimited | where-object {$_.UseDatabaseQuotaDefaults -eq $false}

  • Need a recommendation about java smart card and a reader

    I've been posting some message in this forum and others and haven't gotten a clear response.
    I want to experiment with java smart card technology.
    From what I gathered, Gemplus is a leading company in this field so I thought about buying a smart card reader from it and a java smart card.
    I thought about buying the "USB Smart Card Reader/Writer Plug n Play (GemPC430)" reader which costs 69$.
    Is this a reasonable price?
    I need an answer from someone with experience using it.
    Now then, which one should I buy?
    I only want to do smart card to desktop application interaction without anything on the web (e-commerce or anything to do with encryption).
    I can buy 5 "GS2.2 Standard Crypto GPK8000su512 RED"
    cards which cost 87.50$
    THATS A LOT OF MONEY!!!!
    Are all java smart cards that expensive?
    There is a list of other cards on their site but I haven't been able to locate their price and don't know which to buy.
    Finally, there is the "Kit, GemSAFE Enterprise Workstation 2.21 Standard Cryptography Serial Port Reader" which as I read consists a GPK8000 card.
    Is this card a java card?
    Or do I need to buy the reader and java card seperately.
    Any help and insight would be greatly appreciated.
    Thanks.

    I've looked closely at the Cyberflex 32K cards + SDK from Schlumberger.
    My criteria was:
    * Javacard 2.1 support
    * visa open support (or whatever it is called now)
    * complete sdk (develop, test, deploy)
    * exportable
    * upgradable
    * customer support
    I tried to get someone from Gemplus to contact me, but was unable to ever get even an
    email response.
    Schlumberger, on the other hand, won me over with the quick responses over email.
    They offer fairly inexpensive upgrades after you buy the product, and technical support
    is free.
    For simple experimentation, you can get the JavaCard SDK for free. At JavaOne, several
    years ago, they were giving away JavaRings with Card Readers (which presumably
    means these are cheap to buy) from SCM or some company in Texas. You might
    try to get one of these. They don't have much memory, but are an interesting twist
    on the Java Card thing.
    If you want to dive in, the Smart Card SDK from Schlumberger will run you about $499.
    This includes the reader, 5 cards, and the SDK. Likewise, Metrowerks puts out an
    IDE for Java Card which runs about $1200, and may be available as a bundle from
    vendors like Schlumberger.
    dk

Maybe you are looking for