<?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: TNS Configuration In ORACLE in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447455#M776095</link>
    <description>&lt;BR /&gt;Yes,you can restrict the user from SAM too.</description>
    <pubDate>Sun, 24 Sep 2000 11:17:31 GMT</pubDate>
    <dc:creator>CHRIS_ANORUO</dc:creator>
    <dc:date>2000-09-24T11:17:31Z</dc:date>
    <item>
      <title>TNS Configuration In ORACLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447452#M776092</link>
      <description>Hello to all ITRC Member,&lt;BR /&gt;&lt;BR /&gt;I am having 8 server running different databases and are in LAN.&lt;BR /&gt;We can access the database of one server from other server throuh SQL*net.&lt;BR /&gt;How can I restrict the access to database from perticular Server(node).&lt;BR /&gt;Is it possible to restrict it at user level.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Sat, 23 Sep 2000 05:11:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447452#M776092</guid>
      <dc:creator>NUTANKUMAR</dc:creator>
      <dc:date>2000-09-23T05:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: TNS Configuration In ORACLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447453#M776093</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;  You want to disable a paticular server&lt;BR /&gt; contacting the particular database....&lt;BR /&gt;&lt;BR /&gt;  Remove the that database alias entry&lt;BR /&gt; from that server tnsnames.ora file.&lt;BR /&gt;&lt;BR /&gt; Thanks &lt;BR /&gt; R.Suresh.</description>
      <pubDate>Sat, 23 Sep 2000 05:25:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447453#M776093</guid>
      <dc:creator>R.Suresh</dc:creator>
      <dc:date>2000-09-23T05:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: TNS Configuration In ORACLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447454#M776094</link>
      <description>&lt;BR /&gt;If you want to restrict it by user then best to use the /var/adm/inetd.sec file which allows you to allow/disallow by IP - as long as each user is using a different PC/IP. Check which tcp port sqlnet is using (1521?) and thats all you need to start adding entries into inetd.sec&lt;BR /&gt;</description>
      <pubDate>Sat, 23 Sep 2000 07:02:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447454#M776094</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2000-09-23T07:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: TNS Configuration In ORACLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447455#M776095</link>
      <description>&lt;BR /&gt;Yes,you can restrict the user from SAM too.</description>
      <pubDate>Sun, 24 Sep 2000 11:17:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447455#M776095</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-09-24T11:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: TNS Configuration In ORACLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447456#M776096</link>
      <description>Restricting access by /var/adm/inetd.sec to port 1521 (or whatever) doesn't work because this file prevents inetd to START a service to that port if the address is not allowed. But if the service is ALREADY RUNNING (as is the Oracle listener), inetd does allow the connection.&lt;BR /&gt;  There is a file you can create to specify which machines (IP addresses) can access via SQL*Net your database (this works for Oracle 7.3.4, I don't know at later releases).&lt;BR /&gt;&lt;BR /&gt;# su - oracle7&lt;BR /&gt;# cd $ORACLE_HOME/network/admin&lt;BR /&gt;# vi protocol.ora&lt;BR /&gt;        tcp.validnode_checking = yes&lt;BR /&gt;        ipc.validnode_checking = yes&lt;BR /&gt;        tcp.invited_nodes = (IPaddress1, ... IPaddressN)&lt;BR /&gt;        icp.invited_nodes = (IPaddress1, ... IPaddressN)&lt;BR /&gt;# chmod 644 protocol.ora&lt;BR /&gt;# lsnrctl   // restart the listener to take this file into account&lt;BR /&gt;        LSNRCTL&amp;gt; stop cgc&lt;BR /&gt;        LSNRCTL&amp;gt; start cgc&lt;BR /&gt;        LSNRCTL&amp;gt; quit&lt;BR /&gt;&lt;BR /&gt;Hope this helps.</description>
      <pubDate>Wed, 27 Sep 2000 15:36:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447456#M776096</guid>
      <dc:creator>Javier Ballesteros</dc:creator>
      <dc:date>2000-09-27T15:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: TNS Configuration In ORACLE</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447457#M776097</link>
      <description>The following worked for oracle 8.1.6 :&lt;BR /&gt;&lt;BR /&gt;create protocol.ora in $TNS_ADMIN directory with &lt;BR /&gt;&lt;BR /&gt;tcp.excluded_nodes= (144.25.5.25,144.25.5.26,) (examples of IPs)&lt;BR /&gt;tcp.validnode_checking=yes&lt;BR /&gt; &lt;BR /&gt;Stop and restart listener.ora&lt;BR /&gt;&lt;BR /&gt;Rgds&lt;BR /&gt;Thomas&lt;BR /&gt;&lt;BR /&gt;PS: feedback (and points ;-) appreciated.</description>
      <pubDate>Mon, 18 Dec 2000 14:02:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tns-configuration-in-oracle/m-p/2447457#M776097</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-12-18T14:02:51Z</dc:date>
    </item>
  </channel>
</rss>

