How to determine ip address as static or dynamic

hi, im trying to figure out ways of testing incoming ip connections to my mail server as dynamic or static, would a simple get canonical name tell me this?
any adivce would be greatly appreciated
thanks

Whether an IP is static or dynamic, it is just a decision of the IP administrator / owner. There is no technological measure in finding out such a human decision.

Similar Messages

  • How to determine the address of the server whence the application through W

    The application is loaded from the server taking place in Intranet networks. How to determine from this application the address of the server with which it it is loaded?
    KSV

    Use could use the javax.jnlp BasicService.getCodeBase(). See http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/examples.html and http://java.sun.com/j2se/1.5.0/docs/guide/javaws/jnlp/javax/jnlp/BasicService.html

  • How to determine column length semantics through ANSI Dynamic SQL ?

    I am looking for a way to determine the length semantics used for a column through ANSI Dynamic SQL.
    I have a database with NLS_CHARACTERSET=AL32UTF8.
    In this database I have the following table:
    T1(C1 varchar2(10 char), C2 varchar2(40 byte))
    When I describe this table in SQL*Plus, I get:
    C1 VARCHAR2(10 CHAR)
    C2 VARCHAR2(40)
    In my Pro*C program (mode=ansi), I get the select statement on input, use PREPARE method to prepare it and then use the GET DESCRIPTOR method to obtain colum information for output:
    GET DESCRIPTOR 'output_descriptor' VALUE :col_num
    :name = NAME, :type = TYPE,
    :length = LENGTH, :octet_length = OCTET_LENGTH
    For both C1 and C2 I get the following:
    :type=12
    :length=40
    :octet_length=40
    So, even if I know that my database is AL32UTF8, there doesn't seem to be a way for me to determine whether char or byte length semantics were used in C1 and C2 column definitions.
    Does anybody know how I can obtain this information through ANSI Dynamic SQL?
    Note: the use of system views such as ALL_TAB_COLUMNS is not an option, since we wish to obtain this information even for columns in a complex select statements which may involve multiple tables.
    Note: I believe OCI provides the information that we need through OCI_ATTR_DATA_SIZE (which is in bytes) and OCI_ATTR_CHAR_SIZE (which is in chars). However, switching to OCI is something we would like to avoid at this point.

    Yes, I was wondering which forum would be the best for my question. I see similar questions in various forums, Call Interface, SQL and PL/SQL and Database - General. Unfortunately there is no Pro*C or Dynamic SQL forum which would be my first choice for posting this question.
    Anyway I now posted the same question (same subject) in the Call Interface forum, so hopefully I'll get some answers there.
    Thank you for the suggestion.

  • How to determine IP address of client request in CORBA

    Hello
    does anyone know of a way to determine which peer is making the invocation of a method in CORBA?
    I need to find a way to determine the IP address of the calling peer, but at the server-side and NOT by passing the IP address as an argument with a method invocation like the following method:
    void foo(in string ipAddress);
    The above method declaration is in the .idl file.
    Thank you in advance

    There's no portable way to do this and I don't know if / how it's possible with the Sun ORB (the one available in the J2SE).
    It is possible with the latest versions of JacORB (www.jacorb.org) - a free LGPL Java ORB. The feature is undocumented (as yet) but if you can decompose unit test code you can see how it works in the code in this directory:
    http://www.jacorb.org/cgi-bin/cvsweb/JacORB/test/regression/src/org/jacorb/test/transport/

  • How to determine IP address in stored procedure ?

    Hello :)
    I want to determine caller's IP address from a stored procedure without having to receive it as parameter.
    Thanks in advance
    Nishu

    you can use sys.dm_exec_connections
    SELECT client_net_address, *
    FROM sys.dm_exec_connections
    WHERE session_id = @@SPID
    http://msdn.microsoft.com/en-us/library/ms181509.aspx
    Thanks
    Saravana Kumar C

  • How to determine the address of the server of loading app...?

    The application is loaded from the server on the client computer by means of mechanism WebStart. How to receive (to calculate) from this application the address of this server of loading?
    Beforehand thank for answers...
    K$V

    use the BasicService in the JNLP Api:
    public URL getCodebase().
    see: http://java.sun.com/j2se/1.5.0/docs/guide/javaws/jnlp/index.html
    /Andy

  • How to determine IP addresses of machines on network?

    Is there a way to view a table of all the machines (computers, printers, whatever) on the network? I need an IP address of a print server and have no idea how to find it. On my old Linksys router, it provided such a table. Any way to on the AirPort Extreme?

    Hallo David
    Maybe the "arp" command might help you.
    Open a terminal and enter
    arp -a
    It should print out a list of IP addresses that are wired
    to the MAC addresses of all ethernet adapters in your network.
    This does only work in you local network segment, not crossing any routers.
    It might require "sudo arp -a", but printing out the table usually does not.
    Have a nice christmas holiday,
    Patrick

  • How to determine IP Address of user filling out form

    I have an online form and one of the requirements is to show (and then submit) the ip address of the user filling out the form. How can I find out this information?

    String ipAddress = request.getRemoteAddr();
    Michael

  • How to determine program name in static main

    What code can I execute in static main to get the name of the class provided as an argument to the java interpreter on the command line (since args doesn't include it)?
    Or is this simply not possible in Java?
    Why do I need this? I'm subclassing the class that defines static main, using the subclass as the program class, and want to instantiate it reflectively in main. Currently, I'm passing in the subclass name as an argument, so it appears on the command line twice, which seems awfully silly.

    JoachimSauer wrote:
    shdanfo wrote:
    The question is very simple: In Java, is it possible to execute code in static main that returns the name of the program class provided to the java interpreter?Let me get that straight.
    You have something similar to this:
    public class Foo {
    public static void main(String[] args) {
    String programName = ...;
    System.out.println(programName);
    }And you want to know what your have to replace "..." with so that the program outputs "Foo". Is that correct?
    I'd suggest either Foo.class.getName() or even simpler "Foo".I don't know if I'm getting this wrong now or not. It also sounds like the OP wants to know the name so that he can use reflection to create an instance. But all of that code could in that case be replaced with:
    public class Foo {
        public static void main(String[] args) {
            Foo foo = new Foo();
    }    Since he knows that this implementation of main is located in the class Foo.
    Kaj

  • How to make use of a static or dynamic LOV in Desktop Instelligence reports

    I want to use static LOV as well as dynamic LOV as a prompt for one of my report.
    I have created a dynamic LOV but I dont know how to include it as a prompt to my reports. Please teach me the same.
    For example I have two classes called COMPANY and EMPLOYEE in my universe. Each entry in the company class will have n number of employees in the employee class. My requirement is when I run the report it should prompt the user to select the company name which is a object in the COMPANY class. Based on the users's input the report should pull the employee data.
    For this I have to create a COMPANY name LOV and this should be used in the 'Conditions' section of the Desktop Intellegence.
    Please guide me for the same.

    Hi,
    LEt me know where u need the prompt object to be created in UNV or in report level.
    In Unv:
    Select Company name object-> double click it and in Select clause define as below
    @variable('1. Enter Company Name'')
    In Report level: Go to Query panel select Company class object in where clause and select required operator as LIKE OR IN LIST OR NOT IN LIST OR DIFFERENT FROM and select prompt and give some prompt message.
    Cheers,
    Suresh Aluri.

  • How to determine structure of an Internal table dynamically ?

    Dear Friends,
    On the selection screen.. I have a parameter to pass a structure (eg. E1MARAM ) in to program . Now the challenge is  to create an internal table with the structure that is passed from the selection screen(here eg.E1MARAM)
    Please help me out..

    Hello,
    I had a similar situation where i did not know what the table name would be or the structure name would and this is how i created it.
    *--Data Declaration.
      FIELD-SYMBOLS : <i_temp> TYPE ANY TABLE,
                      <wa_temp> TYPE ANY,
                      <fs_begru> TYPE ANY.
    **Internal table for getting structure of table obtained at run-time
      DATA: BEGIN OF nametab OCCURS 0.
              INCLUDE STRUCTURE dntab.
      DATA: END OF nametab.
    **Move the Class table name obtained at run-time
      MOVE dynamic-tabname TO tabname.
    **Calling function to get the structure of the table name passed as
    **exporting parameter
      CALL FUNCTION 'NAMETAB_GET'
           EXPORTING
                langu               = sy-langu
                tabname             = tabname
           TABLES
                nametab             = nametab
           EXCEPTIONS
                internal_error      = 1
                table_has_no_fields = 2
                table_not_activ     = 3
                no_texts_found      = 4
                OTHERS              = 5.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    **Populating fieldcatalog
      LOOP AT nametab .
        ls_alv_cat-fieldname     = nametab-fieldname .
        ls_alv_cat-ref_table     = tabname.
        ls_alv_cat-ref_field     = nametab-fieldname .
        APPEND ls_alv_cat TO lt_alv_cat.
      ENDLOOP.
    **Method for getting the reference for the structure
      CALL METHOD cl_alv_table_create=>create_dynamic_table
          EXPORTING it_fieldcatalog = lt_alv_cat
          IMPORTING ep_table = dref.
    **Passing the reference of the structure to field-symbol of type table
      ASSIGN dref->* TO <i_temp>.
      REFRESH i_field.
    **Getting detailed structure of table
      CALL FUNCTION 'CRS_GET_DDIC_TABLE'
           EXPORTING
                i_tabname           = tabname
           TABLES
                to_nametab          = i_field
           EXCEPTIONS
                internal_error      = 1
                table_has_no_fields = 2
                table_not_active    = 3
                no_texts_found      = 4
                OTHERS              = 5.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Once you have done this... remember that the program does not know which table is this... but once you have got the table name you can either get the data from the database or if its a structure then you can fill it on your own
      SELECT *
             FROM (tabname)
             INTO CORRESPONDING FIELDS OF TABLE <i_temp>.
      IF sy-subrc NE 0.
      ENDIF.
      SORT : i_begru,
             i_matnr.
    **Selecting records,extracted from Class table that meet selection
    **creiteria
      LOOP AT <i_temp> ASSIGNING <wa_temp>.
    **Assigning BEGRU field
        ASSIGN COMPONENT pos_begru OF STRUCTURE <wa_temp> TO <fs_begru>.
    or if you know what could be the structure that might get used
    FIELD-SYMBOLS : <fs_bapi_mara>   TYPE bapi_mara,
                     <fs_bapi_marax>  TYPE bapi_marax,
                     <fs_bapi_marc>   TYPE bapi_marc,
                     <fs_bapi_marcx>  TYPE bapi_marcx,
                     <fs_bapi_mpop>   TYPE bapi_mpop,
    DATA : dref TYPE REF TO data.
    declare like this and then
    **BAPI_MARA
      CREATE DATA dref TYPE bapi_mara.
      ASSIGN dref->* TO <fs_bapi_mara>.
    **BAPI_MARAX
      CREATE DATA dref TYPE bapi_marax.
      ASSIGN dref->* TO <fs_bapi_marax>.
    **BAPI_MARC
      CREATE DATA dref TYPE bapi_marc.
      ASSIGN dref->* TO <fs_bapi_marc>.
    Go on creating the required structures on the selection criteria match ... when case
    Regards,
    Shekhar Kulkarni

  • Static or Dynamic IP Address

    My remote users are using DSL to get out to the internet.  However, all computers are setup with the private IP address.  Is there a way to find out if the public IP address is static or dynamic?
    Thanks.
    Diane

    Diane
    It would help to know how your users PCs are connected. Are they connected to some router which is connected to the DSL? Or are the PCs connected directly to the DSL?
    Most consumer oriented DSL uses dynamic addresses but there are business oriented DSL which use static addresses. It will take more investigation (and more knowledge of your environment) to figure out whether the DSL addressing is static or dynamic.
    HTH
    Rick

  • How to specify "static" or "dynamic" text in Flash CS5?

    Hmmm. Things have moved in version CS5! How would I specify text as "static" or "dynamic"? Can't seem to find the selection in the Properties palette.
    Thanks-

    Should be right at the top of the properties panel. Make sure to select your text box first. Also, change TLF text to classic text.

  • Have situation on a unprotected wireless when accessing I cannot get a router address.  I'm on system 10.6.8 on MacBook Pro summer 2009.  Any thoughts on how to determine what's up?

    Have situation on a unprotected wireless when accessing I cannot get a router address.  I'm on system 10.6.8 on MacBook Pro summer 2009.  Any thoughts on how to determine what's up?

    You have basically verified that the issue is NOT with your MBP, but with this particular Wi-Fi network. Even though it may be unsecured, the provider may have elected to configure it for MAC filtering. In this case I am referring to the MAC (Media Access Control) address and not your Mac laptop itself. If this has been enabled, your Mac would only be able to connect if the Mac's MAC address was added to that filter.

  • How to change the dynamic IP address to Static IP Address in Solaris 10X86

    Hi,
    I have installed Solaris 10X86 in a VM.While installing Solaris I have enabled DHCP.So its created with dynamic IP Address.Now I want to change the dynamic IP address to static IP address.Please anyone can help me to sort out this problem.

    Hi,
    I have installed Solaris 10X86 in a VM.While installing Solaris I have enabled DHCP.So its created with dynamic IP Address.Now I want to change the dynamic IP address to static IP address.Please anyone can help me to sort out this problem.

Maybe you are looking for

  • How do you get more free effects to use in Final Cut pro x?

    I am looking for a safe free place to download more effects that I can use on my videos in Final cut pro x that include effects that aren't just limited to the colors of the video. I also hope that the place will have clear instructions on how to dow

  • How can I do to restore a disk image

    I know how to create a disk image of a "Macintosh HD" I've got a "Macintosh_HD.dmg" file save on an external disk How can to restore It ? Under os 10.6 I use the DVD, Click "Disk utility.app" control and restore image, and after 2 hours, all is clean

  • Help convert date

    hi help convert date April 26, 1904....August 12, 1979 to dd/mm/yyyy

  • How to increase height of IFRAME without refreshing its contents.

    Hi, I want to increase height of an IFRAME inserted in HTML, presently i am doing this by specifying var frameSrc = myFrame.src; myFrame.height = newHeight; myFrame.src = frameSrc; but as this refreshes the IFRAME i can see the time lag in the loadin

  • A created region shows twice on OA page. Weird.

    Hi All, I am creating a contentContainer region on a OA page and set the region to the left side of the page. I created it declaratively and initiante it in the following codes: public void processRequest(OAPageContext pageContext, OAWebBean webBean)