<?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: How to stop bootps? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499605#M744932</link>
    <description>Hashing/commenting labels in "/etc/services" is like removing road signs, it doesn't stop you getting there, it simply makes it harder to see the route.&lt;BR /&gt;&lt;BR /&gt;To stop a service you should comment it out from "/etc/inetd.conf" then refresh inetd.</description>
    <pubDate>Wed, 09 Mar 2005 05:09:04 GMT</pubDate>
    <dc:creator>Andrew Cowan</dc:creator>
    <dc:date>2005-03-09T05:09:04Z</dc:date>
    <item>
      <title>How to stop bootps?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499601#M744928</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I did a inetd -c after commented out the following in /etc/inetd.conf&lt;BR /&gt;&lt;BR /&gt;#bootps      dgram  udp wait root /usr/lbin/bootpd bootpd&lt;BR /&gt;&lt;BR /&gt;but the port is still listening:&lt;BR /&gt;# lsof -i udp:67        &lt;BR /&gt;COMMAND  PID USER   FD   TYPE     DEVICE SIZE/OFF NODE NAME&lt;BR /&gt;bootpd  4663 root    0u  inet 0x4dd4d4c0      0t0  UDP *:bootps (Idle)&lt;BR /&gt;bootpd  4663 root    1u  inet 0x4dd4d4c0      0t0  UDP *:bootps (Idle)&lt;BR /&gt;bootpd  4663 root    2u  inet 0x4dd4d4c0      0t0  UDP *:bootps (Idle)&lt;BR /&gt;&lt;BR /&gt;How to stop this service?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;YC</description>
      <pubDate>Mon, 07 Mar 2005 19:54:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499601#M744928</guid>
      <dc:creator>yc_2</dc:creator>
      <dc:date>2005-03-07T19:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop bootps?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499602#M744929</link>
      <description>"inetd -c" will reconfigure inetd not to start bootpd &lt;BR /&gt;again in future. But if bootpd is already running on &lt;BR /&gt;your system, it will still continue to run unless someone &lt;BR /&gt;kills it. So just "kill -9" bootpd process and inetd will &lt;BR /&gt;stop it from starting again.&lt;BR /&gt;&lt;BR /&gt;- Biswajit&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Mar 2005 20:07:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499602#M744929</guid>
      <dc:creator>Biswajit Tripathy</dc:creator>
      <dc:date>2005-03-07T20:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop bootps?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499603#M744930</link>
      <description>Note: you have taken the right steps but may need to kill the processes.&lt;BR /&gt;&lt;BR /&gt;If you boot Ignite clients off this server, you need to have this service running.  The fact that you have these processes running may indicate they are being used for something.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 07 Mar 2005 20:44:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499603#M744930</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-03-07T20:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop bootps?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499604#M744931</link>
      <description>Let try this solution.&lt;BR /&gt;1, #vi /etc/services&lt;BR /&gt;#bootps        67/udp                 # Bootstrap Protocol Server&lt;BR /&gt;#bootpc        68/udp                 # Bootstrap Protocol Client&lt;BR /&gt;&lt;BR /&gt;rem both line by (#)&lt;BR /&gt;&lt;BR /&gt;2, find bootp deamon by&lt;BR /&gt;# ps -ef|grep boot&lt;BR /&gt;  root 26586     1  0  Jan 27  ?         0:01 /usr/sbin/rbootd&lt;BR /&gt;    root 27858 22879  0 10:25:32 pts/0     0:00 grep boot&lt;BR /&gt;3. Kill old process:&lt;BR /&gt;# kill -9 26586&lt;BR /&gt;That's all&lt;BR /&gt;HTH&lt;BR /&gt;Regard &lt;BR /&gt;tienna&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Mar 2005 22:27:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499604#M744931</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2005-03-07T22:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop bootps?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499605#M744932</link>
      <description>Hashing/commenting labels in "/etc/services" is like removing road signs, it doesn't stop you getting there, it simply makes it harder to see the route.&lt;BR /&gt;&lt;BR /&gt;To stop a service you should comment it out from "/etc/inetd.conf" then refresh inetd.</description>
      <pubDate>Wed, 09 Mar 2005 05:09:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-stop-bootps/m-p/3499605#M744932</guid>
      <dc:creator>Andrew Cowan</dc:creator>
      <dc:date>2005-03-09T05:09:04Z</dc:date>
    </item>
  </channel>
</rss>

