Operating System - HP-UX
1823064 Members
3402 Online
109645 Solutions
New Discussion юеВ

discover all network devices

 
SOLVED
Go to solution
lawrenzo_1
Super Advisor

discover all network devices

Hello,

Is there a command that can be run to discover all hosts / devices on a network? I know in linux you can ping the broadcast address.

Thanks
hello
3 REPLIES 3
Pete Randall
Outstanding Contributor
Solution

Re: discover all network devices

You can do the same in HP-UX.


Pete

Pete
Pete Randall
Outstanding Contributor

Re: discover all network devices

For example:

root# ping 130.1.255.255
PING 130.1.255.255: 64 byte packets
64 bytes from 130.1.1.15: icmp_seq=0. time=2. ms
64 bytes from 130.1.0.251: icmp_seq=0. time=4. ms
64 bytes from 130.1.1.76: icmp_seq=0. time=7. ms
.
.
.
.
.
64 bytes from 130.1.1.71: icmp_seq=0. time=488. ms
64 bytes from 130.1.6.75: icmp_seq=0. time=496. ms

----130.1.255.255 PING Statistics----
1 packets transmitted, 46 packets received, -4500% packet loss
round-trip (ms) min/avg/max = 2/100/496


Pete

Pete
lawrenzo_1
Super Advisor

Re: discover all network devices

doh! I should have guessed that!!

Thanks Pete
hello