<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: network scanning in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553742#M837620</link>
    <description>Hi Bill,&lt;BR /&gt;&lt;BR /&gt;I tryed your ping script but i am getting a problem for the starting ipaddress itself i have calculated for the ipaddress (32.85.128.230) and i got  542474470 this itself it is giving error as&lt;BR /&gt;&lt;BR /&gt;ping[7]: [542474470: not found&lt;BR /&gt;&lt;BR /&gt;thanks</description>
    <pubDate>Sat, 28 May 2005 21:33:36 GMT</pubDate>
    <dc:creator>Hari Prasad S R</dc:creator>
    <dc:date>2005-05-28T21:33:36Z</dc:date>
    <item>
      <title>network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553738#M837616</link>
      <description>Hi guys,&lt;BR /&gt;&lt;BR /&gt;is there any tool to scan network for free ipaddress in a particular range of ipaddress in hpux 11.00</description>
      <pubDate>Sat, 28 May 2005 09:46:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553738#M837616</guid>
      <dc:creator>Hari Prasad S R</dc:creator>
      <dc:date>2005-05-28T09:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553739#M837617</link>
      <description>Well this is not a tool but you can use this ping approach. &lt;BR /&gt;&lt;BR /&gt;determine the decimal numbers for the start &amp;amp; end address of the range you want to scan as follows&lt;BR /&gt;&lt;BR /&gt;IP address=a.b.c.d&lt;BR /&gt;&lt;BR /&gt;decimal representation &lt;BR /&gt;(a*256*256*256)+(b*256*256)+(c*256)+d&lt;BR /&gt;[do this for bots start and end of your range ip addresses]&lt;BR /&gt;&lt;BR /&gt;START_ADDR=&lt;YOUR decimal="" value="" calculated=""&gt;&lt;BR /&gt;END_ADDR=&lt;YOUR decimal="" value="" calculated=""&gt;&lt;BR /&gt;&lt;BR /&gt;IP=${START_ADDR}&lt;BR /&gt;while [ ${IP} -le ${END_ADDR} ]&lt;BR /&gt;do&lt;BR /&gt; loss=`ping ${IP} -c 3 |grep "packets transmitted"| cut -d, -f3| cut -d% -f1|cut -d" " -f2`&lt;BR /&gt; if [ ${loss} -eq 100 ]&lt;BR /&gt; then&lt;BR /&gt; echo ${IP} &amp;gt;&amp;gt; /tmp/avaiable_IPs&lt;BR /&gt; else &lt;BR /&gt; echo ${IP} &amp;gt;&amp;gt; /tmp/inuse_IPs&lt;BR /&gt; fi&lt;BR /&gt; let IP=$IP+1&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;when you are done, you will have the IP addresses in decimal form in the &lt;BR /&gt;/tmp/avaiable_IPs file. You need to do the IP address conversion in the reverse manner to determine the addresses in a.b.c.d form&lt;BR /&gt;&lt;BR /&gt;Keep in mind that, an IP address not responding at one time does not necessarily mean that it is available guaranteed. The workstation with that IP address may have an owner who failed to turn on the computer at the time you did the scan. So, if I were you I would do this scan at different times of the day for a couple of weeks and combine all the output at the end for a better chance of getting it right.&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;/YOUR&gt;&lt;/YOUR&gt;</description>
      <pubDate>Sat, 28 May 2005 13:42:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553739#M837617</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-05-28T13:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553740#M837618</link>
      <description>sorry there was a typo in the script&lt;BR /&gt;&lt;BR /&gt;the correct version of the following ping statement should be as follows:&lt;BR /&gt;&lt;BR /&gt; loss=`ping ${IP} -n 3 |grep "packets transmitted"| cut -d, -f3| cut -d% -f1|cut -d" " -f2`&lt;BR /&gt;&lt;BR /&gt;the packet count is is -n not -c as I have put it down on my posting above. And although it broke down into two lines, it actually is on a single line.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 28 May 2005 13:45:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553740#M837618</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-05-28T13:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553741#M837619</link>
      <description>This is not a good idea to locate a free address (ping to find unresponsive addresses). If a particular printer or computer is offline, the ping will fail and if you use that address, your system will be clobbered when the printer or computer is turned back on. This is an ideal solution for a DHCP server. Otherwise, you'll need to create a spreadsheet of machines and IP addresses and make sure no one violates the rules about getting an official IP address.</description>
      <pubDate>Sat, 28 May 2005 14:22:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553741#M837619</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-05-28T14:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553742#M837620</link>
      <description>Hi Bill,&lt;BR /&gt;&lt;BR /&gt;I tryed your ping script but i am getting a problem for the starting ipaddress itself i have calculated for the ipaddress (32.85.128.230) and i got  542474470 this itself it is giving error as&lt;BR /&gt;&lt;BR /&gt;ping[7]: [542474470: not found&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Sat, 28 May 2005 21:33:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553742#M837620</guid>
      <dc:creator>Hari Prasad S R</dc:creator>
      <dc:date>2005-05-28T21:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553743#M837621</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;you may try to run the free windows-based utility called "Angry IP scanner"&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.securizare4u.go.ro/download/ipscan.exe" target="_blank"&gt;http://www.securizare4u.go.ro/download/ipscan.exe&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;regards&lt;BR /&gt;yogeeraj</description>
      <pubDate>Fri, 03 Jun 2005 00:06:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553743#M837621</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2005-06-03T00:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553744#M837622</link>
      <description>Hi yogeeraj,&lt;BR /&gt;&lt;BR /&gt;Actually i have set of static ips assigned to unix workstations(which includes sun solaris and HP -UX), in that how to find assigned ipaddress. &lt;BR /&gt;i am looking for a tool where it should tell me what are used ips with platforms.&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Fri, 03 Jun 2005 12:16:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553744#M837622</guid>
      <dc:creator>Hari Prasad S R</dc:creator>
      <dc:date>2005-06-03T12:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: network scanning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553745#M837623</link>
      <description>Pinging range ip address is not a good idea as Bill pointed. Yuo can do the same thing by pinging the broadcast address on the network. That will ping all ip addresses on that network.&lt;BR /&gt;&lt;BR /&gt;But the correct procedure, should be contacting your network administrator and ask him for free ip address.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Fri, 03 Jun 2005 12:24:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/network-scanning/m-p/3553745#M837623</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-06-03T12:24:54Z</dc:date>
    </item>
  </channel>
</rss>

