<?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: What program is using port 111? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027862#M131933</link>
    <description>Hi Mark:&lt;BR /&gt;&lt;BR /&gt;Try sampling both TCP and UDP:&lt;BR /&gt;&lt;BR /&gt;# lsof -i tcp:111 &lt;BR /&gt;# lsof -i udp:111&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF... &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 18 Jul 2003 20:59:33 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2003-07-18T20:59:33Z</dc:date>
    <item>
      <title>What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027859#M131930</link>
      <description>Ethereal and Netstat show a listener on port 111.  I know this is the portmap port and I'd hoped to use lsof to show which program was utilizing this but lsof -i shows nothing on port 111.  I've also tried lsof -i +M but still nothing on 111.&lt;BR /&gt;&lt;BR /&gt;What am I missing?&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Fri, 18 Jul 2003 20:48:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027859#M131930</guid>
      <dc:creator>Mark Tunnell</dc:creator>
      <dc:date>2003-07-18T20:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027860#M131931</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;Try to connect to that port and see if it will&lt;BR /&gt;let you know who is listening&lt;BR /&gt;telnet locahost 111&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Fri, 18 Jul 2003 20:58:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027860#M131931</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-07-18T20:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027861#M131932</link>
      <description>Hi Mark,&lt;BR /&gt;&lt;BR /&gt;Some info about Port 111. Hope this helps.&lt;BR /&gt;&lt;BR /&gt;There are many know exploits against a large list of services that the portmapper provides access to. All RPC services register themselves at port 111 (the "portmapper" or rpcbind for the Solaris guys). The calling client will have to access port 111 to query and identify ports where the needed service is running and ultimately connect to the service. This can be done with both TCP and UDP. &lt;BR /&gt;&lt;BR /&gt;So the point is that port 111 is a place to find out where services are running. Many vulnerabilities exist with this port. For example, NFS has a known rpc-update exploit. Also, the NIS update daemon, rpc.ypupdated, contains vulnerabilities in how it passes commands to certain function calls. &lt;BR /&gt;&lt;BR /&gt;Piyush&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jul 2003 20:58:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027861#M131932</guid>
      <dc:creator>PIYUSH D. PATEL</dc:creator>
      <dc:date>2003-07-18T20:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027862#M131933</link>
      <description>Hi Mark:&lt;BR /&gt;&lt;BR /&gt;Try sampling both TCP and UDP:&lt;BR /&gt;&lt;BR /&gt;# lsof -i tcp:111 &lt;BR /&gt;# lsof -i udp:111&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF... &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jul 2003 20:59:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027862#M131933</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-07-18T20:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027863#M131934</link>
      <description>up2:/ # netstat -an | grep 111&lt;BR /&gt;tcp        0      0  *.111                  *.*                     LISTEN&lt;BR /&gt;udp        0      0  *.111                  *.*&lt;BR /&gt;up2:/ #&lt;BR /&gt;&lt;BR /&gt;lup2:/ # lsof -i tcp:111&lt;BR /&gt;lup2:/ # lsof -i udp:111&lt;BR /&gt;&lt;BR /&gt;Still nothing.  Telnet'ing to port 111 just hangs.  Does anyone know what default HP-UX services listen on that port?  I'm running 11.11.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Fri, 18 Jul 2003 21:07:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027863#M131934</guid>
      <dc:creator>Mark Tunnell</dc:creator>
      <dc:date>2003-07-18T21:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027864#M131935</link>
      <description>As everyone mentioned, rpcbind listens on that port. Try a rpcinfo -p hostname to see what processes are registered with the portmapper, if that is what you mean.&lt;BR /&gt;&lt;BR /&gt;Otherwise, stop the rpcbind process if you don't want it running.</description>
      <pubDate>Sat, 19 Jul 2003 03:23:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027864#M131935</guid>
      <dc:creator>Kevin Wright</dc:creator>
      <dc:date>2003-07-19T03:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027865#M131936</link>
      <description>Thanks.  I'm not sure what it's telling me.&lt;BR /&gt;&lt;BR /&gt;lup2:/etc/rc.config.d # rpcinfo -p localhost&lt;BR /&gt;   program vers proto   port  service&lt;BR /&gt;    100000    4   tcp    111  rpcbind&lt;BR /&gt;    100000    3   tcp    111  rpcbind&lt;BR /&gt;    100000    2   tcp    111  rpcbind&lt;BR /&gt;    100000    4   udp    111  rpcbind&lt;BR /&gt;    100000    3   udp    111  rpcbind&lt;BR /&gt;    100000    2   udp    111  rpcbind&lt;BR /&gt;lup2:/etc/rc.config.d #&lt;BR /&gt;&lt;BR /&gt;Does this mean that rpcbind has no portmap services registered?  If that's the case and I don't need it how do I stop rpcbind from starting at boot?  There's nothing by that name in /etc/rc.config.d.&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Mon, 21 Jul 2003 23:54:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027865#M131936</guid>
      <dc:creator>Mark Tunnell</dc:creator>
      <dc:date>2003-07-21T23:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: What program is using port 111?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027866#M131937</link>
      <description>Hi Mark&lt;BR /&gt;&lt;BR /&gt;Just to clarify rpcbind listens on port 111.  Portmap is the old name for rpcbind and was used prior to 11.x.&lt;BR /&gt;&lt;BR /&gt;The rpcinfo is showing you have no other rpc services registered with rpcbind.&lt;BR /&gt;&lt;BR /&gt;rpcbind is started by the /sbin/init.d/nfs.core script.&lt;BR /&gt;&lt;BR /&gt;To stop:&lt;BR /&gt;# /sbin/init.d/nfs.core stop.&lt;BR /&gt;&lt;BR /&gt;To stop it starting at boot, update the /etc/rc.config.d/nfsconf file so that &lt;BR /&gt;NFS_CLIENT=0&lt;BR /&gt;NFS_SERVER=0&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Con</description>
      <pubDate>Tue, 22 Jul 2003 00:06:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-program-is-using-port-111/m-p/3027866#M131937</guid>
      <dc:creator>Con O'Kelly</dc:creator>
      <dc:date>2003-07-22T00:06:31Z</dc:date>
    </item>
  </channel>
</rss>

