<?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 enable DNS , NFS ,TELNET services in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740270#M550424</link>
    <description>hi folks&lt;BR /&gt;&lt;BR /&gt;Iam a novice ,I first ask you all sorry for asking such a silly questions, as u are an expert !!But I am new to HPUX... Can any one tell me "How to enable DNS,NFS, TELNETservices to a HPUX Box so that i can get an overall idea of networking ,and also i can control it from anywhere in my LAN.. Help me out..</description>
    <pubDate>Mon, 27 Feb 2006 13:54:57 GMT</pubDate>
    <dc:creator>DUMP</dc:creator>
    <dc:date>2006-02-27T13:54:57Z</dc:date>
    <item>
      <title>enable DNS , NFS ,TELNET services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740270#M550424</link>
      <description>hi folks&lt;BR /&gt;&lt;BR /&gt;Iam a novice ,I first ask you all sorry for asking such a silly questions, as u are an expert !!But I am new to HPUX... Can any one tell me "How to enable DNS,NFS, TELNETservices to a HPUX Box so that i can get an overall idea of networking ,and also i can control it from anywhere in my LAN.. Help me out..</description>
      <pubDate>Mon, 27 Feb 2006 13:54:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740270#M550424</guid>
      <dc:creator>DUMP</dc:creator>
      <dc:date>2006-02-27T13:54:57Z</dc:date>
    </item>
    <item>
      <title>Re: enable DNS , NFS ,TELNET services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740271#M550425</link>
      <description>&lt;A href="http://www.uwsg.iu.edu/usail/network/toc.html" target="_blank"&gt;http://www.uwsg.iu.edu/usail/network/toc.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;maybe a useful place to start ie the DNS and internet services sections break most of what you need to know into easy chunks</description>
      <pubDate>Mon, 27 Feb 2006 14:21:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740271#M550425</guid>
      <dc:creator>Alex Glennie</dc:creator>
      <dc:date>2006-02-27T14:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: enable DNS , NFS ,TELNET services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740272#M550426</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/en/netcom.html#Internet%20Services" target="_blank"&gt;http://www.docs.hp.com/en/netcom.html#Internet%20Services&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This is the standard reference for all details on HP Internet Services products.&lt;BR /&gt;&lt;BR /&gt;Hope you will find this useful !!&lt;BR /&gt;&lt;BR /&gt;Regs,&lt;BR /&gt;Dipu.</description>
      <pubDate>Mon, 27 Feb 2006 22:24:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740272#M550426</guid>
      <dc:creator>Dipu S</dc:creator>
      <dc:date>2006-02-27T22:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: enable DNS , NFS ,TELNET services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740273#M550427</link>
      <description>Hi DUMP&lt;BR /&gt;To enable Telnet:&lt;BR /&gt;1, un-comment below line in /etc/inetd.conf&lt;BR /&gt;telnet       stream tcp nowait root /usr/lbin/telnetd  telnetd&lt;BR /&gt;2, issue inetd -c command&lt;BR /&gt;#inetd -c&lt;BR /&gt;To enable NFS  server:&lt;BR /&gt;1, vi /etc/rc.config.d/netdaemons&lt;BR /&gt;&lt;BR /&gt;export XNTPD=1&lt;BR /&gt;&lt;BR /&gt;2, edit /etc/exports&lt;BR /&gt;/tmp/dir_temp root=hosta&lt;BR /&gt;/home -a&lt;BR /&gt;...and so on....&lt;BR /&gt;3, start&lt;BR /&gt;#/sbin/init.d/nfs.core start&lt;BR /&gt;#/sbin/init.d/nfs.server start&lt;BR /&gt;4. Export file system&lt;BR /&gt;#exportfs -a&lt;BR /&gt;&lt;BR /&gt;4, exportfs &lt;BR /&gt;Enable NFS client!&lt;BR /&gt;1, set at boot time:&lt;BR /&gt;vi /etc/rc.config.d/netdaemons&lt;BR /&gt;NFS_CLIENT=1&lt;BR /&gt;NFS_SERVER=0&lt;BR /&gt;enable 02 service :&lt;BR /&gt;#/sbin/init.d/nfs.client start&lt;BR /&gt;#/sbin/init.d/nfs.core start&lt;BR /&gt;NOTE: 02 above services are started at level 02 by default!&lt;BR /&gt;2, vi /etc/fstab : add mount point and server &lt;BR /&gt;myhp:/home            /home03          nfs   rw   0   0&lt;BR /&gt;myhp:/usr/share/man   /usr/share/man   nfs   ro   0   0&lt;BR /&gt;3, create mount point&lt;BR /&gt;cd /home03 /usr/share/man&lt;BR /&gt;4. mount manually if desire!&lt;BR /&gt;#mount myhp:/home /home03&lt;BR /&gt;I will tell you how to enable  DNS later&lt;BR /&gt;HTH&lt;BR /&gt;tienna</description>
      <pubDate>Mon, 27 Feb 2006 22:28:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740273#M550427</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2006-02-27T22:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: enable DNS , NFS ,TELNET services</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740274#M550428</link>
      <description>Enable DNS require much time than other.&lt;BR /&gt;DNS SERVER CONFIGURATION&lt;BR /&gt;1, Create /etc/name.data directory&lt;BR /&gt;2, Create /etc/name.data/param file&lt;BR /&gt;#vi param&lt;BR /&gt; -d boota.com&lt;BR /&gt; -n 192.168.3&lt;BR /&gt; -z 192.168.3.10&lt;BR /&gt; -b /etc/named.boot&lt;BR /&gt; -s&lt;BR /&gt;3, create database&lt;BR /&gt;#hosts_to_name -f param&lt;BR /&gt;4, download db.cache from internet and put it into /etc/named.data&lt;BR /&gt;5. Modify&lt;BR /&gt;#vi /etc/rc.config.d/namesvrs&lt;BR /&gt;NAMED=1&lt;BR /&gt;6. start named service&lt;BR /&gt;#/sbin/init.d/named start&lt;BR /&gt;CLIENT CONFIGURATION&lt;BR /&gt;1, vi /etc/nsswitch.conf&lt;BR /&gt;hosts: dns files&lt;BR /&gt;2, vi /etc/resolv.conf&lt;BR /&gt;search your.domain.com&lt;BR /&gt;nameserver 10.0.76.1 ---IPofDNSserver&lt;BR /&gt;nameserver 10.0.76.2 ---IPofDNSSeconndserver</description>
      <pubDate>Wed, 01 Mar 2006 00:07:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/enable-dns-nfs-telnet-services/m-p/3740274#M550428</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2006-03-01T00:07:11Z</dc:date>
    </item>
  </channel>
</rss>

