How to configure NIC to accept all Multicast(ALLMULTI) on Solaris 10?

I haven't had any luck finding the correct syntax or appropriate steps to configure a network interface on Solaris 10 SPARC server to accept all multicast traffic.
I've tried it on ifconfig with ALLMULTI or IFF_ALLMULTI with no luck.
Background:
I need to be able to determine multicast groups available on a specific network interface without having to do a join on all possible multicast addresses.
Thanks

No, Siebel is supported on the server if you run Sun Solaris 10.
On the client you can run Siebel in HI mode only with IE.
Siebel Tools (The client you use to do the changes in the Siebel SRF is only supported on
Windows XP SP2 and Vista)
If you run Siebel in SI mode you can do this on a lot more platforms, but not Sun Solaris.
Once again, please have a look at:
Siebel 8.0.x System Requirements and Supported Platforms & Miscellaneous Documentation
http://download.oracle.com/docs/cd/E11886_01/V8/CORE/core_8_0.html
Axel

Similar Messages

  • How to configure LR2 to use all installed RAM?

         Hoping to find some answers here about a problem I'm having with Lightroom 2.7. First let me give you some details about the computer I'm running LR on.
    PowerMac G5 1.8Ghz single PowerPC CPU
    8 Gb RAM
    Mac OS X 10.5.8
    Lightroom 2.7
    Photoshop CS4
    The OS acknowledges that there is 8 Gb of RAM installed, but in Photoshop, I am unable to assign any more than 3072Mb of RAM as that's all that's being seen by PS as "available". I can't find a configuration in LR to adjust how much RAM the software can be assigned.
    I was looking around for a fix on this yesterday and saw a mentioning of running the software in 64-bit mode, but I am unable to find where that is enabled/disabled. Can anyone steer me in the direction I need to go or am I just S.O.L and bought a bunch of RAM I can't use in Photoshop and Lightroom like I bought it for?
    Thanks.

    I expected this, actually. The version of OS X that ran on most G5s was not "64-bit clean."  Meaning, only some aspects of the system were 64-bit, but it was not complete from user app to kernel. So you don't get full advantage of 64-bit.
    Lr can see 4Gb of address space and use that. It will request as much or as little of that as it requires. Since you have so much physical memory it can do this without causing the rest of the system to swap.

  • How to configure CF8 to process all URL requests?

    Configuration: Apache frontend, ColdfusionMX 8 application
    server
    My Application.cfc defines a cffunction OnRequestStart to
    check every URL (to ensure user is allowed access).
    The function works fine for .cfm files (because the
    jrun-handler specifies .cfm files).
    However I need every URL sent to Apache that contains a
    specific url-pattern (e.g. /secureMe/*) to be forwarded on to
    Coldfusion so that the OnRequestStart function will check for user
    access.
    How do I configure Coldfusion (e.g. jrun-handler, web.xml,
    jrun-web.xml)
    to process every URL?
    I've tried <servlet-mapping> and
    <virtual-mapping> and even tried out CFFileServlet but I
    cannot get Coldfusion to do anything with directories and non-cfm
    files.
    Any solutions and suggestions would be greatly
    appreciated.

    Originally posted by:
    Newsgroup User
    devodl wrote:
    >> I had already tried to use the servlet mapping you
    suggested:
    >> <servlet-mapping>
    >> <servlet-name>CfmServlet</servlet-name>
    >> <url-pattern>/secureMe/*</url-pattern>
    >> </servlet-mapping>
    >> in the hopes that the OnRequestStart function would
    process the URL. However
    >> it seemed that Coldfusion would ignore the URL
    because it did not contain the
    >> *.cfm pattern.
    > Correct, this only serves to get the request handed of
    from the
    > webserver to JRun, not to select the correct servlet in
    JRun.
    I had gotten that far but ran into the need for a servlet
    which I may need to avoid (see below).
    >> Did you mean rewrite the original URL from:
    /secureMe/private/files/foo.pdf
    >> (which is what I want to protect)
    >> to something like: /secureMe/index.cfm
    /private/files/foo.pdf ?
    >> or did you mean rewrite it to:
    >> /secureMe/index.cfm
    ?/private/files/foo.pdf
    >> so that the original URL is passed to the index.cfm
    as a QUERY_STRING argument?
    >Whichever you want. Make sure that SES URLs are enabled
    in web.xml if
    >you choose the first option.
    Since I have control over the form of the links to non-cfm
    files I decided to pass the path of the non-cfm file as an argument
    (QUERY_STRING) to a cfm template. /secureMe/checkAccess.cfm
    ?/private/files/foo.pdf
    Then the checkAccess.cfm template can do the work necessary
    to verify user access to non-cfm files.
    >> I am concerned that my OnRequestStart function is
    being bypassed when the URL
    >> is for non-cfm files and that using a
    UrlRewriteServlet to rewrite the URL and
    >> pass it to the index.cfm will not address the
    problem.
    > It will, the UrlRewriteServlet is executed first.
    Thanks again, this is good to know.
    >> If I must use a servlet to catch the incoming URLs
    for non-cfm files then I
    >> might as well scrap use of my OnRequestStart
    function (for cfm files) and
    >> simply use my own servlet to check user access for
    all incoming URLs.
    > If you have the skills to write a servlet, that is
    absolutely preferred
    > above hacking this into a CF.
    I have the skills and have written many servlets for Tomcat
    using Struts, etc. but the Coldfusion admin group likes to use
    everything OOTB (Out Of The Box). When I speak of servlets they get
    a glazed look in their eyes...
    While I am quite comfortable creating a WAR file and having
    the J2EE container perform the deployment it seems to be a bit more
    complicated with Coldfusion (i.e. include the runtime bits and
    deploy to JRun). I am not sure if the admin group is ready to
    tackle something that formidable. Development and deployment of my
    web application to the Coldfusion servers is much easier if I
    simply send the admin group a zip file of components, templates,
    css, etc. and just have them unzip it onto the server.
    >> I was hoping that the Apache mod_jrun connector
    would be configurable to
    >> handle more than just file extensions. Ideally I
    would like to ability to
    >> configure the mod_jrun20 connector in Apache to
    handle the /secureMe/*
    >> pattern since it would be a cleaner solution.
    >It should be able to handle wildcards.
    > Jochem
    I tried and it seems that the AddHandler jrun-handler setting
    only handles file extensions.
    I read somewhere that the mod_jrun connector only does two
    things:
    1 - Pass the request to JRun to see if it should be picked
    up by a servlet mapping
    2 - Pass the specific filetypes (e.g. .cfm, .cfml, .cfswf)
    to Coldfusion
    Once again thank you for all your help and advice.
    It is greatly appreciated.
    Steve Deal

  • How to configure JSpinner to accept number of hours (with mins and secs)

    I'm having a problem trying to figure out a simple way to enable a JSpinner to do allow the input in this format:
    n hours : n minutes : n seconds
    ex: 100 : 0 : 0, 1:59:59, 25:30:00
    Where n hours could be from 0-n (not restricted by 24 hours) and minutes and seconds are, of course, < 60. That is, I can enter number of hours, not a date, or a specific time in a day.
    I'm thinking the only way to do this is with a custom spinner model and custom editor? Or is there a simple way I can make the date model in spinner to allow me to do this?
    Thanks

    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    public class Test2 extends JFrame {
      public Test2() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container content = getContentPane();
        content.setLayout(new FlowLayout());
        content.add(new MySpinner());
        setSize(300, 300);
        setVisible(true);
      public static void main(String args[]) { new Test2(); }
    class MySpinner extends JSpinner {
      public MySpinner() {
        setModel(new SpinnerDateModel(
          new GregorianCalendar(2004,0,1,0,0,0).getTime(),
          null, null, Calendar.DAY_OF_YEAR));
        setEditor(new DateEditor(this,"HH:mm:ss"));
    }???

  • How to configure 9i Forms Services Demo Manually

    Hi,
    I want to customize the forms services demo and run from my own configuration file i mean instead of forms90demo.cfg file i want to create my own cfg file and run the forms how to do this?
    for example currently to run a demo i need to give the url as
    http://machine:8888/forms90demo/f90servlet?config=xxx
    i want it as
    http://machine:8888/<myconfigname>/f90servlet?config=xxx
    how to manually configure the demo? to run in a customized way
    Plus will this demo run on Unix? and how to configure in Unix?
    All the above questions for 9i DS, coming to 9iAS how to configure/install on Windows and Unix?
    Regards
    Mahesh

    Do the following to select an own config file for the f90demo:
    - Open file web.xml
    (in: oracle_home\forms90\demos\j2ee\forms90demo\
    forms90demo\WEB-INF)
    - specify your configuration file name between tags
    <param-value> and </param-value>
    (under <param-name> configFileName</param-name>)
    Do not forget to <!-- and --> tags around this
    <init-param> section.
    - Do not use "" around the filename.
    You can also copy the whole <servlet> ... </servlet> section of f90servlet, and give a new servlet name (e.g. f90demo instead of f90servlet). From then on you can use f90demo as a servlet. You must, before you can use this new servlet alias, also make a copy of the servlet-mapping section for this alias.
    Servlet aliasses are a perfect way to make configurations in two dimensions, one using config sections in the config file (e.g. for different applications), the other using servlet aliasses in web.xml (e.g. different environments, such as dev and prod).
    Peter

  • How to configure the transports

    How to configure the transports for all the 3 systems including development ,quality and Productions systems, can any one tell  following steps for configure the transport

    hello sir,
    I am not speaking about portal, ?
    Where I want configure the transports for all the 3 systems including development quality and Productions systems in SAP 4.7EE ,
    Can you  tell following steps for configure the transport in 4.7EE

  • How to configure UWL?

    Hi Gurus.
    How to configure Universal Worklist what all steps involved in this process.
    Kindly give me the steps
    Thanks in Advance,
    Dharani

    Hi,
    UWL Configuration Doc for EP6.0 and EP7.0     
    http://help.sap.com/bp_epv170/EP_US/BBLibrary/Html/N10_UWL.htm     
    All you wanted about UWL is here.     
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70f43b13-284f-2a10-5898-93fe3dc004b4
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45     
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/001ce303-244f-2a10-d187-cfe283beefc9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0e2237c-fd1b-2a10-eda8-87587f66e424
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/405729e9-314f-2a10-eab6-fcebe6fe8cba
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7058bd67-7e55-2a10-4f95-aaf101f249b2
    Pre-requisites.     
    Portal System is configured using SAP Load Balancing     
    Portal System has system alias and user mapping     
    Workflow is configured at back end if not done create notification using transaction SWUI for testing purpose     
    Step by Step     
    1)Portal Content ->Portal User ->Standard Portal UsersStandardUser Role
    2)Portal Content Content Provided by SAPEnd User Content StandardPortal UsersiViewsUniversal Worklist
    3)Add iview Universal Worklist to User Role and check for system configuration group property leave it blank as of now.
    4) System Administration  System Configuration  UWL & Workflow  Universal list Administration  Universal Worklist System  New
    5) Go back to sstep 3 and change iview property u201CSystem Configuration Groupu201D as given in above diagram
    6) System Administration  System Configuration  UWL & Workflow  Universal list Administration  Register Item Types for all Systems
    7) Test the applicaton
    Cheers!!
    SJ.

  • How to configure multiple IP addresses on one NIC?

    Hi,
    I just installed a OVM Server in version 3.2.1 and the according VMManager. Now i wanted to try to configure the Server/Server Pool. Now i come across a problem, which was already a big problem in OVM 2 while configuring the Networks.
    All our OVM Servers have three NICs in them. One is for VMs and Management, the others are for connection to our SAN (Dell PowerVault MD 3220i). My problem is, that due to the network setup, the two NICs for storage need two IP addresses in two different networks each. This shouldn't be a problem, because usually in linux all you have to do is configure something like eth1:1. I remember having huge trouble configuring it in our OVM 2 cluster up to the point where I had to write a shell script to configure the second IP.
    Anyways, I have configured two of the storage networks on eth1 and eth2 of the VM Server. Now i cannot configure any more IP addresses, because eth1 and eth2 are not available anymore for configuration in a third network. I really hoped that it would be possible in OVM 3 to configure multiple IP addresses. And probably it is only my lack of knowledge of how to configure it.
    So any advice is well appreciated.
    Thanks!
    Regards,
    Marek Hubatka

    You should be able to do this by using "VLAN Groups".
    http://docs.oracle.com/cd/E35328_01/E35332/E35332.pdf
    Check out the VLAN groups section. You must great the VLAN groups before you can assign them to interfaces.

  • How to configure windows services alerts in SCOM 2012 for all agent servers. For eg, Terminal Services, Netlogon, RPC etc..

    Hi,
    I need to configure different windows services alerts in SCOM 2012. Below are some of the windows services I need to monitor through SCOM.
    Serivce: Windows Management Instrumentation
    Service: Netlogon
    Service: Remote Procedure Call (RPC)
    Service: Server Service
    Service: Terminal Services
    Service: Windows Time
    Service: Workstation
    Service : WWW Publishing Service
    Could some one please assist or share me the details, how to configure these services for windows agent servers.
    Thanks..
    Regards, Rajeev Parambil

    Hi,
    A certain set of services are monitored by default on all agents:
    DNS Client
    DHCP Client
    RPC
    Workstation
    Server
    For all the other services you could create a service monitor.
    A nice blog series outlining this process can be found here: http://www.bictt.com/blogs/bictt.php/2011/03/16/scom-monitoring-a-service-part1
    It's doing common things uncommonly well that brings succes. Check out my SCOM link blog:
    SCOM link blog

  • How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    How to configure Mail app on mountain lion to not download all my emails in hotmail server. I need only just 1-2 weeks

    Try going to the web based site and see if you can set up a temporary folder there. Move anything you don't want to download to that folder.

  • Configure ce interface to accept all frames (regardless of 802.1q tag)?

    On Solaris 9,
    is it possible to configure a ce interface so it accepts
    all Ethernet frames it receives, regardless of the presence,
    absence, or value of an 802.1q tag?
    I'm trying to run packet sniffing software on a ce interface
    (I'm not using the interface for IP). The Ethernet switch
    I'm attached to forwards to me copies of traffic from many
    different VLANs, via a port mirroring function. Most of
    this traffic is tagged with various 802.1q VLAN tags.
    Some of this traffic may be untagged.
    My difficulty is that since the Sun Gigaswift 'ce' interface
    supports 802.1q, if I configure the interface so it
    doesn't "do" VLANs (e.g. 'ifconfig ce5 plumb'), the ce interface
    discards any incoming frames that have 802.1q tags.
    Alternatively, if I configure the ce interface so it "does"
    VLANs (e.g. 'ifconfig ce10005 plumb'), I end up having to
    configure dozens of logical ce interfaces (one per VLAN) each
    of which will only receive frames tagged for one particular VLAN;
    I don't end up with an interface that receives all VLAN frames.
    I want one logical interface that receives all the frames,
    so I can point my sniffing software at it.
    There's no problem doing this with a card that doesn't support
    802.1q, since that card will happily accept all frames and pass
    them up. So I can do this on qfe or bge interfaces. But I need
    to do this using interfaces available on a PCI card
    (my V880 has several port mirrors coming from various Ethernet switches),
    the interfaces need to be 1000 Mbps (which rules out the qfe card), and
    I'd like to stay with copper (which rules out the bge card).
    That's why I'm trying to do it with the quad ce card, but I'm
    stymied by it support for 802.1q. (If there were just some way
    I could turn off 802.1q support for specific ce instances.)
    Is there a way I can accomplish this with the
    copper Gigaswift interface (Cassini driver) in Solaris 9?
    If not, is there another 1000 Mbps copper interface (provided on PCI card)
    that can do this?
    Or does this become possible in Solaris 10?

    Oops, when I wrote "bge" above, I meant "ge", of course.
    (ge is fiber gigagbit ethernet interface and doesn't know about 802.1q.)

  • How can I get my second generation shuffle to accept all songs?

    When I try to add certain songs, it will not copy them. It will begin the synching process, then cancel synching. I will check the playlist and the song will not be there. I retry multiple times. It is not because the memory is full. It will let me add other songs after a failed synch. Removing my ipoid and putting it back does not help. For the first fews years I had the shuffle, it worked fine and accepted any song. Over the past six months, it has begun doing this. How can I get it to accept all songs again? Is there a way to restore it? Will that help? Thanks!

    Se my resposne to one of your other posts

  • Hi all anybody    can contribute on how  to configure Freegood for  3 items

    HI all,
    Can anybody  share  how to configure   1 free good for 3 items.Ex: When we purchase A,B&C items system should give D as  a  free good.
    Thanks in advance,
    Ram

    hi
    there are constraints for free godds scenario
    1> Free goods are currently not supported with material structures like product selection, BOM, variants with Bom selection.
    2>only supported on a 1:1 basis
    3>only supported with sales orders with document category "c" not for quotation etc
    4>are not currently supported for deliveries without reference to sales orders
    5>are not supported for make to order production, third party scenario,and scheduling agreements
    regards

  • How to configure SNMP on all managed client using SCCM 2012 SP1

    hi ,
    do you know  How to configure SNMP on all managed client using SCCM 2012 SP1?

    As a side note, I made an interesting discovery last week: the SNMP Service is deprecated in Windows Server 2012. Why would you want to use SNMP on an actual Windows OS though? There are far better ways available to monitor Windows. I'm sure that lines
    up with why they deprecated it.
    Jason | http://blog.configmgrftw.com

  • How i can accept all my contact requests?

    Hey,
    ich get per day over 20 contact request. How can I accept them all?
    I dont want to click on each single request and accept it.
    I want to accept them all with one click.
    Is that possible? Bot?
    I hope someone can help me.

    Hi and welcome to the Skype Community,
    There's no "Accept all contact requests" functionality. Are you sure you don't want to individually review all the contact request you receive? You risk having spammers or other unwanted contacts ending up on your contact list.
    If you want to be open for IM exchange you can adjust your privacy settings to allow receiving IM even from users not on your contact list: https://support.skype.com/en/faq/FA140/how-do-i-manage-my-privacy-settings-in-skype-for-windows-desk...
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

Maybe you are looking for

  • During startup keyboard is inactivated

    I Own a mid-2011 (Intel) Macbook Air. Yesterday I connected it to my pen drive to watch my photos downloaded from Sony HX1 and copied to the drive. During the viewing of the large number of photos via slideshow, sometimes they seem to take too long t

  • Program Variant: Popup by User

    Guys, I have copied some standard code to automatically assign a variant via the Initialisation section (see RIAUFK20). However, the client wants a popup to display all variants for the user so that they can choose the appropriate variant before the

  • Macbook Pro won't get past admin login screen

    2.53 ghz 13" MBP osx 10.6.4 It starts up and gets to the login screen where it usually has the box to put in the password. But now it just shows the account name and little icons below in that window for sleep, restart, shut down. But it's not respon

  • OCR(Optical Character Reading)

    Hello, I need some help in writing a program which will read handwriting/text in images(like jpg,gif,bmp,tif etc). Is there any away to use java in this area? Is there any existing OCR implementation in java? Pls let me know thanks in advance.. Sudhe

  • How to mirror my iPad to my iPhone for presentations?

    I have recently used airserver to mirror my iPad to my mac. I use this setup for presentations, where I want to move freely across a room with my iPad, while my mac is hooked up to a Videoprojetor. I got thinking? Is there a way to mirror my iPad to