FYI: SUNWstadm TCP/IP ports and firewalls

I'm using a SE6130 and recently uninstalled and installed SUNWstade and SUNWstadm plus patches 117650-60 and 117654-60. After the install I was unable to access some of the Help pages. It took awhile but in the end the problem is that some Help pages use http on port 6788 (normally https on port 6789 is used). This required changes to the firewall.
Here's the info on the packages:
pkginfo -l SUNWstade
PKGINST: SUNWstade
NAME: Sun Storage Automated Diagnostic Environment - Enterprise Edition
CATEGORY: Diagnostics
ARCH: sparc
VERSION: 2.4
BASEDIR: /opt
VENDOR: Sun Microsystems Computer Corporation
DESC: Sun Storage Automated Diagnostic Environment - Enterprise Edition
PSTAMP: 2.4.60.021, 04/13/06 17:24:39
INSTDATE: Aug 30 2006 16:46
STATUS: completely installed
FILES: 2825 installed pathnames
10 shared pathnames
323 directories
544 executables
180883 blocks used (approx)
pkginfo -l SUNWstadm
PKGINST: SUNWstadm
NAME: Sun Storage Automated Diagnostic Environment - Management Station UI
CATEGORY: Diagnostics
ARCH: sparc
VERSION: 2.4
BASEDIR: /opt
VENDOR: Sun Microsystems Computer Corporation
DESC: Sun Storage Automated Diagnostic Environment - Management Station UI
PSTAMP: 2.4.60.021, 04/13/06 17:25:26
INSTDATE: Aug 30 2006 16:48
STATUS: completely installed
FILES: 1590 installed pathnames
7 shared pathnames
74 directories
368 executables
26436 blocks used (approx)
I sent comments to the documentation folks about including this is the doc's but I suspect it's the software that bad not the doc's.
I hope this saves someone a few gray hairs ...
have a good weekend,
Glen

Thanks Rick, I was afraind nobody was going to reply.
Let me get this right. In my sharing options I have disabled firewall. So that bit is done. The next bit is about configuring my router, that is my dsl router (Castlenet AR250, I think).
My airport base has nothing to do with it, correct?
Thanks again...

Similar Messages

  • TCP/UDP Ports and site used by FEP to download updates - needed to allow on perimeter firewall

    Can some one point me with information like what TCP/UDP ports are utilized by FEP and what DNS / site Name it uses to download FEP Updates. This is needed to tighten perimeter FireWall policies
    Thank you

    It should be the same as the documentation for all Software Updates:
    https://technet.microsoft.com/en-us/library/bcf8ed65-3bea-4bec-8bc5-22d9e54f5a6d#BKMK_ConfigureFirewalls
    Make sure to expand the "restrict access to specific domains" section to see the update related URLs.

  • Airport Extreme-NAT-Firewall-TCP-IP-Ports and what not... I BEG FOR HELP!

    Problem: I can't use ISPQ (videochat) with my ibookG4 or MacBookPro.
    Details: iBookG4 [10.3.9] is the main one, MacBookPro [10.4.7] is the secondary one. I have a DSL modem attached to an Airport Extreme base.
    ===
    I have run a diagnostic test on IsPq and this is the result:
    Contacting server with HTTP protocol... success.
    Connecting to diagnostic server... success.
    Logging into diagnostic server... success.
    Testing TCP port 2000 (VideoChat control)... failed.
    Testing TCP port 2001 (VideoChat data)... failed.
    Testing TCP port 2002 (Quick Message)... failed.
    Results:
    Your local address is 10.0.1.3, your address as seen by the rest of the world is 151.51.233.232, and your address as seen by our HTTP servers is 151.51.233.232. Your computer is configured to use the following DNS servers: 193.70.192.25, 193.70.152.25, 10.0.1.1.
    This computer appears to be behind a NAT firewall, it cannot receive incoming connections. It can still use iSpQ VideoChat, but it will not be able to initiate VideoChat connections and quick messages will be delivered through the server.
    If you are using the MacOS X firewall, add an entry for iSpQ VideoChat to allow connections on ports 2000-2002. If you have a router on your network, make sure it is configured to properly route TCP ports 2000-2002 to your computer at 10.0.1.3. Otherwise, contact your network administrator for assistance.
    ===
    Please help me or I will start crying. I'm close to utter desperation.
    Thanks,
    Emmanuel

    Thanks Rick, I was afraind nobody was going to reply.
    Let me get this right. In my sharing options I have disabled firewall. So that bit is done. The next bit is about configuring my router, that is my dsl router (Castlenet AR250, I think).
    My airport base has nothing to do with it, correct?
    Thanks again...

  • Need solution for solving TIME_WAIT in TCP/IP ports in Windows Server 2008 Standard Service Pack 2

    In one of our windows machine( OS : Windows Server 2008 Standard (Service Pack 2)-32bit), we are facing TIME_WAIT in all the TCP/IP ports and it is not getting closed.
    On analyzing the issue, we found solution for this from the below link,
    https://support.microsoft.com/en-us/kb/2553549
    In this page, we are able to get the hotfix for Windows Server2008 R2 SP1 but i can't able to get for  Windows Server 2008 Standard SP2(32bit). If we try to apply the hotfix vailable for SP1, it is showing "The update does not apply to your System".
    Kindly provide us the solution for solving TIME_WAIT issue in the machine. 
    OS Details : Microsoft Windows Server 2008 Standard
    Version : 6.0.6002 SP2 Build 6002
    System Type : 32 bit(x86-based PC)
    Awaiting for the response.
    Thank you,
    Pushpalatha.A

    Download correct version from Microsoft Update Catalog. Run it with elevated rights.
    M.

  • Using Sockets TCP/IP to connect through Proxies and Firewalls

    How to do in a Client/server Application using Sockets TCP/IP to connect through Proxies and Firewalls?
    How to implement the HTTP Tunnelling in this case?
    the code in Client to connect to server is:
    SSLSocketFactory sslFact = (SSLSocketFactory)SSLSocketFactory.getDefault();
                   socket = (SSLSocket)sslFact.createSocket(c.site, c.PORT);
              String [] enabledCipher = socket.getSupportedCipherSuites ();     
                   socket.setEnabledCipherSuites (enabledCipher);
                   out = new ObjectOutputStream(socket.getOutputStream());
                   in = new ObjectInputStream(socket.getInputStream());
    The Server is an executable Standalone Application with a main Function � How to do to convert this Server in a Servlet Application?
    the code in Server to wait client connections is:
    Runtime.getRuntime().addShutdownHook(new ShutdownThread(this));
              try {
                   SSLServerSocketFactory factory = (ServerSocketFactory) SSLServerSocketFactory.getDefault();
                   SSLServerSocket sslIncoming =
                        (SSLServerSocket) factory.createServerSocket (PORT);
                   String [] enabledCipher = sslIncoming.getSupportedCipherSuites ();
                   sslIncoming.setEnabledCipherSuites (enabledCipher);
              while(running) {
                        SSLSocket s = (SSLSocket)sslIncoming.accept();
                   newUser(s, pauseSyn);
              } catch (IOException e) { System.out.println("Error: " + e); }
    some links or code sample?
    Thanks in Advance

    Did you see this: Networking Properties?
    Including
    SOCKS protocol support settings
    and
    http.proxyHost (default: <none>)
    http.proxyPort (default: 80 if http.proxyHost specified)
    http.nonProxyHosts (default: <none>
    ftp.proxyHost (default: <none>)
    ftp.proxyPort (default: 80 if ftp.proxyHost specified)
    ftp.nonProxyHosts (default: <none>)

  • ACE: Can I loadbalance based on client Source IP/and client tcp source port?

    We recently migrated serving a client from being thick client at the desktop to being served via a citrix farm.  Prior to the migration the clients came from about 5000 unique source IP's to their VIP, now they come from only 31 unique source IP's from the citrix servers in the farm. A citrix server can host 400 client sessions, since the default action of the ACE is to loadbalance based on source IP's, the ACE is sending up to 400 sessions from one citrix server to 1 real server in the farm.  Is there anyway I can loadbalance based on client source IP and tcp source port so the ACE views the 400 sessions from one citrix server as unique sessions?  The application does not require persistence.

    Hello,
    Yes, you can configure a "Sticky Layer 4 Payload" as descirbed on this Link:
    http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/ace/vA2_3_0/command/reference/sticky.html#wp1039276
    Unfrotunately I do not have any working example. You must calculate the right values for the Offset and the Length to configure.
    Regards Jean-Marc

  • Is it possible to create a virtual TCP port and send data to it?

    Is it possible to create a virtual TCP port and send data to it?
    My application is this:   I am reading a constant stream of waveform data from a device via a LabVIEW VI set and I need to get that streaming data to a .NET application.  I can poll a TCP port in .NET easily so is there a way I can create a virtual TCP port in LabVIEW and send the data there?

    Have a look at the example called simple data server and simple data client and see what you can get from that. I'm not really familiar with TCP myself.
    Joe.
    "NOTHING IS EVER EASY"

  • Standard TCP/IP Port missing from drop down "Create a new port and add a new printer"

    Somehow someone was on my print server and made some changes or added some software.  I found that the "HP Universal Print Monitor" was my only other choice besides Local Port when I went to add a new printer on my 2012 print server
    "Standard TCP/IP Port" was gone.  I ended removing this from the registry (see below) as I could not find any other way to uninstall it.  After this was removed I did reboot and I can still add a normal Standard TCP/IP Port under print
    management in the ports section but this option is gone in the drop down when you add a printer under printers. 
    Any idea how to get this option back into the drop down list?
    HKLM\SYSTEM\CURRENTCONTROLSET\CONTROL\Print\MONITORS\HP Universal Print Monitor

    I followed these instructions and everything is correct and still do not have the tcp/ip option
    Restore missing Standard TCP/IP Port type for Printer
    Filed under: 
    Tips n Tricks — Rahul Patel @ 5:01 pm
    If the TCP/IP port option is missing you need to re-add it.
    First, make sure that the following files are in C:\Windows\System32\:
    tcpmib.dll
    tcpmon.dll
    tcpmon.ini
    tcpmonui.dll
    If they are missing, you will need to copy them there from either the i386 directory (if you have one) or from the original install CD.
    Then, copy the following lines to NOTEPAD and save the file to your desktop as “printer.reg”
    Windows Registry Editor Version 5.00
          [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port]
          “Driver”=”tcpmon.dll”
          [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port\Ports]
    “LprAckTimeout”=dword:000000b4
    “StatusUpdateInterval”=dword:0000000a
    “StatusUpdateEnabled”=dword:00000001
    Once it’s saved to your desktop, double-click printer.reg and say “OK” to the warning that you will be adding the keys to your registry.
    Reboot the Server and the TCP/IP port option should be back.

  • IPS and IDS- ARP Inbalance-of-Requests and TCP High Port Sweep

    Does anybody knows about ARP Inbalance-of-Requests and TCP High Port Sweep IPS signature? We've been receiving numerous numbers of alerts with this kind of signature in the IPS.
    Actually, I'm planning to tune these events in IPS and I really need your inputs if it is safe to tune. Based on my investigation, most of the source and destination IP's are internal to our network (e.g servers, workstation and other device).
    I think this is false positive incidents...
    Best regards,
    Carlou

    This will be a normal signature to see triggered if you are watching outbound traffic from your internal network. As long as the source of the traffic is your internal hosts, and the destination is external hosts, this is likely just normal behavior.
    This signature triggers when a single host sends TCP SYN packets to a number of different hosts, perhaps because of multiple web sessions going, or pop-up windows while web surfing.
    Check this bug-id:CSCsh94361

  • TCP/UDP ports between Cisco PI 2.0 and WLC5508

    Hello,
    I will install Cisco PI 2.0 behind a firewall for security reason. The WLC5508 is before a firewall. Can anybody let me know which TCP/UDP ports need to be open specifically between the Cisco PI and WLC? I don't see that from the below link.
    Cisco Prime Infrastructure 2.0 Quick Start Guide
    http://www.cisco.com/c/en/us/td/docs/net_mgmt/prime/infrastructure/2-0/quickstart/guide/cpi_qsg.html#wp46865
    Thanks,
    Robert

    Firewall Between the WCS and Controller or WCS and the WCS User Interface
    When a PI server and a PI user interface are on different sides of a firewall, they cannot communicate unless these ports on the firewall are open to two-way traffic:
    80 (for initial http)
    69 (tftp)
    162 (trap port)
    443 (https)
    Open these ports in order to configure your firewall to allow communications between a PI server and a PI user interface.
    Regards
    Dont forget to rate helpful posts

  • Which TCP/UDP ports need to be opened on a firewall for adobe reader and flashplayer?

    Which TCP/UDP ports need to be opened on a firewall for adobe reader and flashplaer to operate properly? This would include updating, linking, and any subset of features.

    The Acrobat Family uses TCP HTTP/HTTPS for all traffic. The following processes and ports may be active on a Windows client machine:
    AdobeARM.exe - automatic updates - port 443
    AcroRd32.exe - brand messages - port 443
    AcroRd32.exe - links in documents - anything specified in the URL
    Acrobat.exe - brand messages - port 443
    Acrobat.exe - links in documents - anything specified in the URL
    AdobeCollabSync.exe - Tracker review data - port 443
    The same ports are used by the  program components on OS X.
    There are no inbound listening ports for any elements of the Acrobat Family. Automatic updates are not pushed and there are no server processes within the software.

  • Multiple IPs and firewalls

    I'm wondering if it's possible to create multiple firewalls in Mountain Lion server. I have four IP addresses on one server, all on the same LAN, and I want to restrict specific traffic to specific TCP/UDP ports (e.g. only mail ports on IP X, web services on IP Y, and VPN services on IP Z, etc.).
    Is it possible to create multiple firewalls on each port so that I can restrict network traffic in this manner? Or is there a better way to do this from the start?
    Thanks!

    Use pfctl (see: man pfctl)

  • Can I use the second TCP / IP port on my cRIO to drive a meter Agilent

    I would like to use the second TCP / IP port of my NI cRIO-9024 to control my Agilent 33210A pulse generator with VISA TCP/IP.
    My Agilent has only TCP/IP and GPIB ports.
    Is it possible?
    cordially

    All the MACs (from my old 2006 PPC Mini) will auto detect ethernet crossover and straight through and rollover cables correctly. They should be Auto-MDIX.
    Having said that, the FW800 (via TB) and Ethernet should be very close in terms of performance.

  • How to free tcp/ip port in Mac OS X v10.6 Snow Leopard

    weeks ago i installed graboid on my imac and it's having trouble downloading files. this is what appears whenever i open graboid:
    +SABnzbd.py 0.4.6 failed to start.+
    +The Graboid Download Manager needs a free tcp/ip port for its internal web service.+
    +Port 11234 on localhost was tried , but it is not available.+
    +Please ensure that your firewall grants access to GraboidDLManager.exe and port 11234 and 119 aren't blocked.+
    +Some other software may be using the port or the download manager is already running.+
    +Please verify that another instance of the download manager is not already running. To do this, press CTRLShiftEsc or open your task manager. Make sure the Processes tab is selected and look for "GraboidDLManager.exe" in the list. If it is there, click on it and then press the "End Process" button. After that, please restart Graboid.+
    +Open a Terminal window and type the line (example):+
    +/Applications/SABnzbd.app/Contents/Resources/SABnzbd.py --server localhost:11235+
    +Open a Terminal window and type the line (example):+
    +/Applications/SABnzbd.app/Contents/Resources/SABnzbd.py --server localhost:11235+
    "/>
    how do i free a port in snow leopard? i already allowed incoming connections from graboid in my security preferences but still it wouldn't work. help please. thanks

    Do you use a router to connect to the internet? If so the port needs to be mapped to your local machine.

  • Which TCP/IP ports do I have to open in order to get communication

    I have an enterprise portal. based on EHP1 and I want to patch it. So I need to connect it to Solution manager.
    However systems are in different networks.
    I wander which TCP/IP ports do I have to open in order to get communication between the two systems.
    I am trying to fid documentation for this case but every documentation asumes systems are in same network

    It's fascinating that that document hasn't been replaced/updated in five years.  Regardless, I've noticed an inconsistency in how they list the needed ports. 
    For example, they mention that port 5nn13 is needed for (I think) the Netweaver Start Service, and mention that the nn should be replaced with the instance number (00-99).  That's one hundred ports (50013, 50113, 50213, ... 59913).  Yet, in the "Range" column, they significantly mis-describe that as 50013-59913, which adds another 9801 completely unnecessary holes to put into a firewall.  (e.g. 50026, 51058, 53077, etc etc)
    They do that for most of the ranges they use that nn shorthand with... 5nn00, 5nn01, 5nn14, 5nn16, etc.
    In short, following the description they give in the "Range" column will have one opening thousands upon thousands of unnecessary holes in the firewall.

Maybe you are looking for

  • Metadata created with OEM and OLAP2 views

    Why metadata created with OEM (v 9.2.0.1.0) aren't visible in OLAP2 views? Cubes are visible only in OLAP_CUBES, and OLAP1_CUBES views only. "Oracle9i Users Guide" says, that OLAP2 views shows metada created either with CWM2 and OEM, but i don't see

  • Dynamically increasing the rows of a table in interactive forms.

    Hi All,    I am new to adobe forms.I am developing an interactive form in webdynpro abap.I have a requirement such that i have 3 columns in a table and the first 5 rows are default i.e, i will add it during design time.when we enter something in the

  • Notes app error in Mountain Lion

    Just upgraded to Mountain Lion from Snow Leopard, and the notes app won't work.  After starting, a few seconds later there is an error, the app closes and and error message pops up. Any ideas?

  • LAN error on boot up (Tecra A2)

    My Tecra A2 gives me a error message that say something about the zcfgsvc.exe that does something wrong. The result is that if my wireless LAN is turned on, it manages to log on to my network, and then it gives me the error message. If the wireless L

  • External HD and Lightroom

    I'm presently using an external HD while I work on Lr.  I turn off Lr and eject my external several times throughout the day when not in use.  Am I harming my external drive by ejecting it several time per day?