![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| IP Networking Learn TCP/IP, Internet Protocol, Routing, Routers, Network protocols in this UNIX and Linux forum. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Communicating with Serial Port | netsavant | UNIX for Advanced & Expert Users | 4 | 03-15-2008 05:19 PM |
| "/dev/rmt/0: No such device or address" when using mt command | shorty | UNIX for Dummies Questions & Answers | 4 | 10-12-2006 03:03 AM |
| stty: : No such device or address | nandinisagar | Shell Programming and Scripting | 6 | 01-24-2006 01:41 PM |
| How to Achive IP address through MAC(Ethernet) address | krishnacins | IP Networking | 3 | 08-29-2005 08:45 PM |
| How to use 2 Proccess communicating with each other using 2 pipe | someone33 | UNIX for Advanced & Expert Users | 1 | 05-05-2005 01:48 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Hi I wonder if anyone can help me. I have a device on my network which I have no idea what IP address it has, I have no instruction on how to reset the IP address, no software either.
Can I communicate with this device via the MAC address only? |
|
||||
|
A great common solution
All,
Being a N/W developer, usually I face this problem. There is very simple solution for this. 1> Connect that device with a "Cross-over" N/W cable to another computer. 2> Start a N/W packet capture utility (tcpdump/ethereal/snoop) on that computer 3> Restart device 4> When device start it sends ARP broadcast containing its own IP-Address. This is done to ensure that no other device is assigned same IP. 5> After getting that packet with IP-Address (Example 192.168.2.13) you can assign your computer a smallest possible subnet mask (255.255.255.252) with another IP in that "smallest" Network (Example 192.168.2.14/255.255.255.252) 6> Now access that device with any of login/configuration service All the Best!!! |