How to detect ipaddresses of other systems in a given network Interface ??

Guys ... I know only the Network Interface and I want to know the IPAddresses that have been assigned to the other systems on that Network Interface .. I m making an application on packet sniffing..
I want to show the list of hosts on a given Network Interface or device when a User selects one..
but I just can't seem to find a method ...
I know this is kinda easy .. but plz help me out..
eg:- The User selects Nvidia Ethernet device...
then i want to display all the computers that are connected to the Nvidia Ethernet device ..
in short , I want to know ip addresses of other systems on a network ........

itssumitrai wrote:
Well... yeah I m making use of jpcap ..
and yeah just as windows generates a list of computers on a network , I wanna show
the list of computers along with their Ip addresses reachable vi a network interface ....
Certainly there would be a way to access that very information using the Windows OS API.
And plz .. its pretty clear what i want to do .. just help me out instead of finding mistakes in terms ....Help...
Unless you are the owner of that network then I suggest that you get permission in writing (pen and ink rather than email) before doing whatever it is that you want (unless you use the windows API).
People have been fired, expelled and had civil/criminal legal proceedings against them for network scanning even when they thought they had permission.

Similar Messages

  • How to detect ipaddress client when computer client is turn on

    I have problem :
    ** how to detect ipaddress from client when the computer client is turn on???
    i have assumption : server ipaddress 192.168.2.21
    client_1 ipaddress 192.168.2.26
    client_2 ipaddress 192.168.2.27
    anyone want to help me,please give me the sample program.
    thanks before.

    your client will have to
    1) start up when the machine does
    2) make a TCP/IP connection to the server as it starts up
    when the server gets a connection from the client, you can query the relevant Socket object for the source IP address
    a simple 'google' for java socket tutorials, or a search of the Sun site will show you more quickly and definitively than anyone on a forum

  • How to detect ipaddress client when client computer is turn on

    I have problem :
    ** how to detect ipaddress from client when the computer client is turn on???
    i have assumption : server ipaddress 192.168.2.21
    client_1 ipaddress 192.168.2.26
    client_2 ipaddress 192.168.2.27
    anyone want to help me,please give me the sample program.
    thanks before.

    cross post
    http://forum.java.sun.com/thread.jspa?threadID=786950&messageID=4471598#4471598

  • How to delete file from other system(LAN)

    Hello folks,
    Cud u plz help me out in finding code for deleting a file from other system i.e in LAN,assuming that the connection is already established to that system.

    > Cud u plz
    sigh
    Please make the extra effort to write out words such as "could", "you", and "please". The extra keystrokes won't cost much in the way of time, and the enhanced clarity will be appreciated by those communicating on a forum with international readership. Also, it will give the appearance that you take your question seriously, which will in turn make your question look more interesting to answer.
    Thanks!
    ~

  • How do I get ipackets and opackets statistics for logical network interface

    I do a kstat_lookup() and kstat_read() to get the ipackets and opackets statisti
    for the physical network interfaces like hme0.
    However those statistics are not available via kstat for logical interfaces such
    as hme0:1.
    I notice that netstat -ai reports numbers for ipackets and opackets for
    logical network interfaces so that information must be available
    programatically but where?

    netstat(1M) uses private ioctl(2) calls to a prepared /dev/arp to extract SNMP MIBs
    that contain this information. I agree that it should be published via the kstat interfaces
    as well.
    - Stephen
    Stephen Hahn, PhD Solaris Kernel Development, Sun Microsystems
    [email protected]

  • How to trace IP address ports and request comming to network interfaces

    Hi all,
    I am using Solaris IP filter. I need to check the requests that is comming to a patiquler interfaces.
    Is there any possibilities to get the IP address: Port, weather the request is Deny from the server etc....
    Thanks.
    Viraj

    Lian,
    Did you find a solution?? If still looking, talk to Triometric, they can monitor and log this, a side effect of performance monitoring.
    Have fun

  • How to check if a file system in global zone is shared on zones

    Hello,
    Would you by any chance know how to detect if a file system in the global zone is shared with any zones created from the global zone (either shared with readonly or read-write)?
    Thanks in advance.
    Regards
    Frank

    Usually they're shared via lofs. So try 'df -kZ -F lofs'.
    Darren

  • HT201343 how to detect appletv for mirroring?

    how to detect appletv for mirroring?

    Be on same network, apple id with homesharing on for ATV and Mac or iOS.  Always try a reboot of router and ATV with all cables out for 30 Seconds too.  Mirror icon should appear near clock IF you have a mid 2011 mac or newer (early 2011 for MBP) AND are running OSX 10.8 Mountain Lion or newer.
    Oler mac or OS can 'mirror' with a third party app called airparrot.

  • Network How do I see other computers on My wireless Network?

    Sorry everyone very new on Mac. I was trying to figure out how I could see what other computers were on my network. The network hub right now is on my windows pc. I can see all the pc's there including the Mac. My question is. Is there anything in MAC that allows you to see other computers??
    Thanks,
    Jim

    are you referring to the log which used to be in the previous admin utility and which disappeared with theis latest update? I am looking myself. Luckily I have an old Macbook with the previous version of admin utility on it.
    There is always the possibility of restoring your extreme to factory defaults and backing out of this latest release. I'm thinking of reverting myself.

  • How to detect the Acrobat Browser Plug-in version installed on a users system for non-IE browsers?

    How to detect the *Acrobat Browser Plug-in version* installed on a users system, on Firefox, Safari, Opera, etc?
    Or one script for detecting Plug-in version for major browsers. Need full example code.

    Wrote an article on this with code samples (Javascript + HTML) - basically there are differences between IE and other browsers. Chrome natively comes with the Chrome PDF Viewer so I've incorporated that in my detection script.
    The script detects the browser type, and the installed acrobat version...
    Have a look here:
    Detect the Adobe Reader Plugin

  • How to detect system date Format?

    Could some one help to find out how to detect local system is in MM/DD/YYYY or DD/MM/YYYY format?
    Thanks.

    What happens when you run this code in a country where the default format is yyyy-MM-dd?
    My advice is to either use the deault format for a given locale, or allow your app to be configured with a format.
    demo:
    import java.text.*;
    import java.util.*;
    public class RingingTheFormats {
        public static void main(String[] args) {
            Date now = new Date();
            for(Locale locale: Locale.getAvailableLocales()) {
                DateFormat fmt = DateFormat.getDateInstance(DateFormat.SHORT, locale);
                System.out.format("%20s %s%n", fmt.format(now), locale.getDisplayName());
    }What's going on in the Japanese format? What is H21?
    edit: [Heisei |http://en.wikipedia.org/wiki/Heisei] period. nvm.

  • How to restrict users working on Windows 7 clients from accessing Windows Explorer and other systems in the network through Group Policy with a domain controller running on Windows Server 2008 r2

    Dear All,
    We are having an infrastructure setup of around 500 client computers managed through group policy.
    Recently the domain controllers have been migrated from Windows Server 2003 to Server 2008 R2.
    Since this account requires extremely strict environment, we need to figure the solution for restricting the users from access anything locally.
    It would be great if you can assist me with the following query.
    How to restrict users logged on Windows 7 clients from accessing Windows Explorer and browsing other systems in the network through Group Policy with a domain controller running on Windows Server 2008 r2 ?
    Can we disable Network Tab on the left hand pane ?
    explorer.exe is blocked already, but users are able to enter the Windows Explorer by clicking on the name which is visible on the Start Menu.

    >   * explorer.exe is blocked already, but users are able to enter the
    >     Windows Explorer by clicking on the name which is visible on the
    >     Start Menu.
    You cannot block explorer.exe when you do not replace the shell - the
    desktop you see effectively IS explorer.exe...
    Your requirement sounds like you need a custom shell:
    http://gpsearch.azurewebsites.net/#2812
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • How to read and store the documents from other system to own system.

    Hi Experts,
    i need to read the document from other system (Say from other connected R/3 system) and then i need to save it in my system.
                     Please suggest how would i proceed?
    Any helpful suggestion will be rewarded with points.
    thanks
    Snehasish

    Hi Abaper
    I think I havent explained my problem well. Here I am explaining it again..
    I want to pull an  *.excel/ *.csv file through ABAP code.The target file that I want to access in my ABAP code is stored into another PC in the same Local area network under some directory say 'c:\temp\credit.csv'.
    I have the logon information of the target file's  PC.
    Please help me with code if anyone of you having.
    Thanks in advance.
    Rgds,
    Snehasish
    Edited by: Snehasish Das on Apr 29, 2008 2:18 PM
    Edited by: Snehasish Das on Apr 29, 2008 2:33 PM

  • How to transport Custom Characteristics in consolidation to other system?

    Hello,
    For consolidation purposes i was creating new characteristic for table ECMCT with T.CODE CX0A1.
    I was genereting the changes i have made, but transport was not created.
    Can someone tell me how to transport custom characteristic?
    Best regards,
    Avishai

    Hi Eli,
    The characteristics can not be transported with this one.
    Our problem comes from table MCDX.
    The content for object dependency is not the same in Development and quality system and I can't find how to update it.

  • How read information from other clients (other systems) of sap

    Hi
    I have a requiremt to read the roles assigned to a user id in production system to the developemet system.
    So how i can get this production system information from development.
    Could please  please let me know how to call the remote function calls.,  How to go about this.
    guys could you please help me out in this.
    regards,
    Steve.

    Hi
    -A) Trx SM59:
    Choose R/3 connection and search the production system connection.
    If there isn'r basis t, u or your basis should create it.
    -B) Create a program using a RFC function module to pick up the user roles:
    CALL FUNCTION <FUNCTION> DESTINATION <DEST>.
    Where <DEST> is the name of the production system connection defined in SM59.
    The function <FUNCTION> has to be a RFC (Remote Function Call) like a BAPI.
    MAx

Maybe you are looking for

  • Problem with streaming video

    Hi! I have a problem with my project. Please help me! I tried to send a video streaming between 2 computers. I used socket connection and AVReceive2, AVTransmit. When received computer display 59 seconds, it stop the connection, socket is closed and

  • How to fill in a PDF form after client fills in HTML form

    i guess i need to try this a second time. i have been to numerous sites where they ask a user to fill in lot of fields with a html web form, and then when all done all that filled in data gets transferred into PDF forms for the client to print out, e

  • Problems connecting to FaceTime

    I recently purchased the IMac specifically for the Facetime feature. My wife and son tried calling me via FaceTime from our Imac to my Iphone 4, but the connection failed. Before I left for my business trip I made sure that FaceTime worked, which it

  • Reds in Lightroom 2.6 with Nikon D3s are horrible

    Just started using a Nikon D3s and the reds in Lightroom are horrible -- oversaturated and too red.  For example, oranges look red.  The JPEG previews actually look fine so it's something about the RAW program. I compared to Nikon D3 and D3 has no pr

  • Using ISE guest store via RADIUS

    I have a question concerning the guest store on the ISE. I would like to establish a guest portal on a WLC (currently running version 7.0.220.0). The guest network shouldn't have any connection to the company network. So I can't redirect to the ISE g