SQLNET.ORA
上传用户:delongwax
上传日期:2014-09-04
资源大小:3580k
文件大小:29k
源码类别:

Oracle数据库

开发平台:

Windows_Unix

  1. # copyright (c) 1996 by the Oracle Corporation
  2. # NAME
  3. #   sqlnet.ora
  4. # FUNCTION
  5. #   Oracle Network Client startup parameter file example
  6. # NOTES
  7. #   This file contains examples and instructions for defining all
  8. #   Oracle Network Client parameters. It should be possible to read
  9. #   this file and setup a Client by uncommenting parameter definitions
  10. #   and substituting values. The comments should provide enough
  11. #   explanation to enable a reasonable user to manage his TNS connections
  12. #   without having to resort to 'real' documentation.
  13. # SECTIONS
  14. #   ONames Client
  15. #   Namesctl
  16. #   Native Naming Adpaters
  17. #   ...
  18. # MODIFIED
  19. #    ajacobs    10/23/00 - Remove identix, securid
  20. #    ajacobs    09/07/00 - Update for Oracle Advanced Security encryption/integ
  21. #    tclarke    05/26/00 - bug 515765
  22. #    jtran      03/24/98 - add radius configuration
  23. #    skanjila   06/06/97 - Correct default for Automatic_IPC
  24. #    eminer     05/15/97 - Add the relevant onrsd parameters.
  25. #    asriniva   04/23/97 - Merge with version from doc
  26. #    ggilchri   03/31/97 - mods
  27. #    bvasudev   02/07/97 - Change sqlnet.authentication_services documentation
  28. #    bvasudev   11/25/96 - Merge sqlnet.ora transport related parameters
  29. #    asriniva   11/12/96 - Revise with new OSS parameters.
  30. #    asriniva   11/05/96 - Add ANO parameters.
  31. # ____________________________________________________________________
  32. # - ONames Client ----------------------------------------------------
  33. #
  34. #names.default_domain = world
  35. #
  36. #Syntax:  domain-name
  37. #Default: NULL
  38. #
  39. # Indicates the domain from which the client most often requests names. When
  40. # this parameter is set the default domain name (for example, US.ACME), the
  41. # domain name will be automatically appended to any unqualified name in an
  42. # ONAmes request (query, register, deregister, etc). Any name which contains
  43. # an unescaped dot ('.') will not have the default domain appended. Simple
  44. # names may be qualified with a trailing dot (for example 'rootserver.').
  45. #
  46. #
  47. #names.initial_retry_timeout = 30
  48. #
  49. #Syntax:  1-600 seconds
  50. #Default: 15 (OSD)
  51. #
  52. # Determines how long a client will wait for a response from a Names Server
  53. # before reiterating the request to the next server in the preferred_servers
  54. # list.
  55. #
  56. #
  57. #names.max_open_connections = 3
  58. #
  59. #Syntax:  3-64
  60. #Default: ADDRS in preferred_servers
  61. #
  62. # Determines how many connections an ONames client may have open at one time.
  63. # Clients will ordinarily keep connections to servers open once they are
  64. # established until the operation (or session in namesctl) is complete. A
  65. # connection will be opened whenever needed, and if the maximum would be 
  66. # exceeded the least recently used connection will be closed.
  67. #
  68. #
  69. #names.message_pool_start_size = 10
  70. #
  71. #Syntax:  3-256
  72. #Default: 10
  73. #
  74. # Determines the initial number of messages allocated in the client's message
  75. # pool. This pool provides the client with pre-allocated messages to be used
  76. # for requests to ONames servers. Messages which are in the pool and unused
  77. # may be reused. If a message is needed and no free messages are available in
  78. # the pool more will be allocated.
  79. #
  80. #
  81. #names.preferred_servers = (address_list =
  82. #  (address=(protocol=ipc)(key=n23))
  83. #  (address=(protocol=tcp)(host=nineva)(port=1383))
  84. #  (address=(protocol=tcp)(host=cicada)(port=1575))
  85. # )
  86. #
  87. #Syntax:  ADDR_LIST
  88. #Default: Well-Known (OSD)
  89. #
  90. # Specifies a list of ONames servers in the client's region; requests will be
  91. # sent to each ADDRESS in the list until a response is recieved, or the list
  92. # (and number of retries) is exhausted.
  93. #
  94. # Addresses of the following form specify that messages to the ONames server
  95. # should use Oracle Remote Operations (RPC):
  96. #
  97. #     (description = 
  98. #       (address=(protocol=tcp)(host=nineva)(port=1383))
  99. #       (connect_data=(rpc=on))
  100. #     )
  101. #
  102. #
  103. #
  104. #names.request_retries = 2
  105. #
  106. #Syntax:  1-5
  107. #Default: 1
  108. #
  109. # Specifies the number of times the client should try each server in the list
  110. # of preferred_servers before allowing the operation to fail.
  111. #
  112. #
  113. #names.directory_path
  114. #
  115. #Syntax:  <adapter-name>
  116. #Default: TNSNAMES,ONAMES,HOSTNAME
  117. #
  118. # Sets the (ordered) list of naming adaptors to use in resolving a name.
  119. # The default is as shown for 3.0.2 of sqlnet onwards. The default was
  120. # (TNSNAMES, ONAMES) before that. The value can be presented without
  121. # parentheses if only a single entry is being specified. The parameter is
  122. # recognized from version 2.3.2 of sqlnet onward. Acceptable values include: 
  123. #  TNSNAMES -- tnsnames.ora lookup
  124. #  ONAMES   -- Oracle Names
  125. #  HOSTNAME -- use the hostname (or an alias of the hostname)
  126. #  NIS      -- NIS (also known as "yp")
  127. #  CDS      -- OSF DCE's Cell Directory Service
  128. #  NDS      -- Novell's Netware Directory Service
  129. #
  130. # - Client Cache (ONRSD) ---------------------------------------------
  131. #names.addresses = (ADDRESS=(PROTOCOL=IPC)(KEY=ONAMES))
  132. #
  133. #Syntax:  ADDR
  134. #Default: (ADDRESS=(PROTOCOL=IPC)(KEY=ONAMES))
  135. #
  136. # Address on which the client cache listens (is available to clients).
  137. # Any valid TNS address is allowed. The default should be used if at
  138. # all possible; clients have this entry hardwired as the first line
  139. # of their server-list file (sdns.ora). If the address is set to a
  140. # non-default value the client's preferred_servers parameter should
  141. # be set to include the client-cache address first.
  142. #
  143. #
  144. #names.authority_required = False
  145. #
  146. #Syntax:  T/F
  147. #Default: False
  148. #
  149. # Determines whether system querys (for the root etc) require Authoritative
  150. # answers. 
  151. #
  152. #
  153. #names.auto_refresh_expire = 259200
  154. #
  155. #Syntax:  Number of seconds, 60-1209600
  156. #Default: 259200
  157. #
  158. # This is the amount of time (in seconds) the server will cache the addresses
  159. # of servers listed in server-list file (sdns.ora). When this time expires the
  160. # server will issue another query to the servers in those regions to refresh
  161. # the data.
  162. #
  163. #
  164. #names.auto_refresh_retry = 180
  165. #
  166. #Syntax:  Number of seconds, 60-3600
  167. #Default: sec. 180
  168. #
  169. # This set how often the server will retry when the auto_refresh query fails.
  170. #
  171. #
  172. #names.cache_checkpoint_file = cache.ckp
  173. #
  174. #Syntax:  filename
  175. #Default: $ORACLE_HOME/network/names/ckpcch.ora
  176. #
  177. # Specifies the name of the operating system file to which the Names Server
  178. # writes its foreign data cache.
  179. #
  180. #
  181. #names.cache_checkpoint_interval = 7200
  182. #
  183. #Syntax:  Number of seconds, 10-259200
  184. #Default: 0 (off)
  185. #
  186. # Indicates the interval at which a Names Server writes a checkpoint of its
  187. # data cache to the checkpoint file. 
  188. #
  189. #
  190. #names.default_forwarders=
  191. # (FORWARDER_LIST=
  192. #    (FORWARDER=
  193. #       (NAME= rootserv1.world)
  194. #       (ADDRESS=(PROTOCOL=tcp)(PORT=42100)(HOST=roothost))))
  195. #
  196. #Syntax:  Name-Value/address_list
  197. #Default: NULL
  198. #
  199. # A list (in NV form) of the addresses of other servers which should be used to 
  200. # forward querys while in default_forwarder (slave) mode. NAME is the global
  201. # names for the server to which forwards whould be directed, and ADDRESS is its
  202. # address.
  203. #
  204. #
  205. #names.default_forwarders_only = True
  206. #
  207. #Syntax:  T/F
  208. #Default: False
  209. #
  210. # When set to true this server will use the servers listed in default_forwarders
  211. # to forward all operations which involve data in foreign regions. Otherwise it
  212. # will use the servers defined in the server-list file (sdns.ora) in addition
  213. # to any defined in the default_forwarders parameter.
  214. #
  215. #
  216. #names.log_directory = /oracle/network/log
  217. #
  218. #Syntax:  directory
  219. #Default: $ORACLE_HOME/network/log
  220. #
  221. # Indicates the name of the directory where the log file for Names Server
  222. # operational events are written.
  223. #
  224. #
  225. #names.log_file = names.log
  226. #
  227. #Syntax:  filename
  228. #Default: names.log
  229. #
  230. # The name of the output file to which Names Server operational events are
  231. # written.
  232. #
  233. #names.log_stats_interval = 3600
  234. #
  235. #Syntax:  Number of seconds, 10-ub4max
  236. #Default: sec. 0 (off)
  237. #
  238. #Specifies the number of seconds between statistical entries in log file. 
  239. #
  240. #names.log_unique = False
  241. #
  242. #Syntax:  T/F
  243. #Default: False
  244. #
  245. # If set to true the server will guarantee that the log file will have a unique
  246. # name which will not overwrite any existing files (note that log files are
  247. # appended to, so log information will not be lost if log_unique is not true).
  248. #
  249. #names.max_open_connections = 10
  250. #
  251. #Syntax:  3-64
  252. #Default: 10
  253. #
  254. # Specifies the number of connections that the Names Server can have open at any
  255. # given time. The value is generated as the value 10 or the sum of one
  256. # connection for listening, five for clients, plus one for each foreign domain
  257. # defined in the local administrative region, whichever is greater. Any
  258. # operation which requires the server to open a network connection will use
  259. # an already open connection if it is available, or will open a connection
  260. # if not. Higher settings will save time and cost network resources; lower
  261. # settings save network resources, cost time.
  262. #
  263. #
  264. #names.max_reforwards = 2
  265. #
  266. #Syntax:  1-15
  267. #Default: 2
  268. #
  269. # The maximum number of times the server will attempt to forward a certain
  270. # operation.
  271. #
  272. #
  273. #names.message_pool_start_size = 24
  274. #
  275. #Syntax:  3-256
  276. #Default: 10
  277. #
  278. # Determines the initial number of messages allocated in the server's message
  279. # pool. This pool provides the server with pre-allocated messages to be used
  280. # for incoming or outgoing messages (forwards). Messages which are in the pool
  281. # and unused may be reused. If a message is needed and no free messages are
  282. # available in the pool more will be allocated.
  283. #
  284. #
  285. #names.no_modify_requests = False
  286. #
  287. #Syntax:  T/F
  288. #Default: False
  289. #
  290. # If set to true, the server will refuse any operations which modify the
  291. # data in its region (it will still save foreign info in the cache which is 
  292. # returned from foreign querys).
  293. #
  294. #
  295. #names.password = 625926683431AA55
  296. #
  297. #Syntax:  encrypted string
  298. #Default: NULL
  299. #
  300. # If set the server will require that the user provide a password in his
  301. # namesctl session (either with sqlnet.ora:namesctl.server_password or 'set
  302. # password') in order to do 'sensitive' operations, like stop, restart, reload.
  303. # This parameter is generally set in encrypted form, so it can not be set
  304. # manually.
  305. #
  306. #names.reset_stats_interval = 3600
  307. #
  308. #Syntax:  10-ub4max
  309. #Default: 0 (off)
  310. #
  311. # Specifies the number of seconds during which the statistics collected by the
  312. # Names Servers should accumulate. At the frequency specified, they are reset
  313. # to zero. The default value of 0 means never reset statistics. 
  314. #
  315. #
  316. #names.trace_directory = /oracle/network/trace
  317. #
  318. #Syntax:  directory
  319. #Default: $ORACLE_HOME/network/trace
  320. #
  321. # Indicates the name of the directory to which trace files from a Names Server
  322. # trace session are written. 
  323. #
  324. #
  325. #names.trace_file = names.trc
  326. #
  327. #Syntax:  filename
  328. #Default: names.trc
  329. #
  330. # Indicates the name of the output file from a Names Server trace session.
  331. #
  332. #
  333. #names.trace_func # NA
  334. #
  335. #Syntax:  T/F
  336. #Default: False
  337. #
  338. # Internal mechanism to control tracing by function name.
  339. #
  340. #
  341. #names.trace_level = ADMIN
  342. #
  343. #Syntax:  T/F
  344. #Default: False
  345. #
  346. #Syntax:  {OFF,USER,ADMIN,0-16}
  347. #Default: OFF (0)
  348. #
  349. # Indicates the level at which the Names Server is to be traced.
  350. # Available Values:
  351. # 0 or OFF - No trace output
  352. # 4 or USER - User trace information
  353. # 10 or ADMIN - Administration trace information
  354. # 16 or SUPPORT - WorldWide Customer Support trace information
  355. #
  356. #
  357. #names.trace_mask = (200,201,202,203,205,206,207)
  358. #
  359. #Syntax:  list of numbers
  360. #Default: NULL
  361. #
  362. # Internal mechanism to control trace behavior. 
  363. #
  364. #
  365. #names.trace_unique = True
  366. #
  367. #Syntax:  T/F
  368. #Default: False
  369. #
  370. # Indicates whether each trace file has a unique name, allowing multiple trace
  371. # files to coexist. If the value is set to ON, a process identifier is appended
  372. # to the name of each trace file generated. 
  373. #
  374. #
  375. # - Namesctl ---------------------------------------------------------
  376. #
  377. #namesctl.trace_directory = /oracle/network/trace
  378. #
  379. #Syntax:  directory
  380. #Default: $ON/trace
  381. #
  382. # Indicates the name of the directory to which trace files from a namesctl
  383. # trace session are written. 
  384. #
  385. #
  386. #namesctl.trace_file = namesctl.trc
  387. #
  388. #Syntax:  filename
  389. #Default: namesctl.trc
  390. #
  391. # Indicates the name of the output file from a namesctl trace session.
  392. #
  393. #
  394. #namesctl.trace_func # NA
  395. #
  396. #Syntax:  word list
  397. #Default: NULL
  398. #
  399. # Internal mechanism to control tracing by function name.
  400. #
  401. #
  402. #namesctl.trace_level = ADMIN
  403. #
  404. #Syntax:  {OFF,USER,ADMIN,0-16}
  405. #Default: OFF (0)
  406. #
  407. # Indicates the level at which the namesctl is to be traced.
  408. # Available Values:
  409. # 0 or OFF - No trace output
  410. # 4 or USER - User trace information
  411. # 10 or ADMIN - Administration trace information
  412. # 16 or SUPPORT - WorldWide Customer Support trace information
  413. #
  414. #
  415. #namesctl.trace_mask # NA
  416. #
  417. #Syntax:  number list
  418. #Default: NULL
  419. #
  420. # Internal mechanism to control trace behavior. 
  421. #
  422. #
  423. #namesctl.trace_unique = True
  424. #
  425. #Syntax:  T/F
  426. #Default: False
  427. #
  428. # Indicates whether each trace file has a unique name, allowing multiple trace
  429. # files to coexist. If the value is set to ON, a process identifier is appended
  430. # to the name of each trace file generated. 
  431. #
  432. #namesctl.no_initial_server = False
  433. #
  434. #Syntax:  T/F
  435. #Default: False
  436. #
  437. # If set to TRUE namesctl will suppress any error messages when namesctl is
  438. # unable to connect to a default names server.
  439. #
  440. #
  441. #namesctl.internal_use = True
  442. #
  443. #Syntax:  T/F
  444. #Default: False
  445. #
  446. # If set to true namesctl will enable a set of internal undocumented commands.
  447. # All internal commands are preceded by an underscore ('_') in order to
  448. # distinguish them as internal. Without going into details, the commands
  449. # enabled are:
  450. #
  451. #     _add_data              _create_name           _delete_name           
  452. #     _full_status           _ireplace_data         _newttl_name           
  453. #     _pause                 _remove_data           _rename_name           
  454. #     _replace_data          _start                 _walk*                 
  455. #
  456. # There are also a set of names server variables which may be set when
  457. # namesctl is in internal mode:
  458. #
  459. #     _authority_required             _auto_refresh*                  
  460. #     _cache_checkpoint_interval      _cache_dump                     
  461. #     _default_autorefresh_expire     _default_autorefresh_retry      
  462. #     _default_forwarders_only        _forwarding_desired             
  463. #     _max_reforwards                 _modify_ops_enabled             
  464. #     _next_cache_checkpoint          _next_cache_flush               
  465. #     _next_stat_log                  _next_stat_reset                
  466. #     _reload                         _request_delay                  
  467. #     _restart                        _shutdown                       
  468. #
  469. #
  470. #namesctl.noconfirm = True
  471. #
  472. #Syntax:  T/F
  473. #Default: False
  474. #
  475. # When set to TRUE namesctl will suppress the confirmation prompt when 
  476. # sensitive operations (stop, restart, reload) are requested. This is
  477. # quite helpful when using namesctl scripts.
  478. #
  479. #
  480. #namesctl.server_password = mangler
  481. #
  482. #Syntax:  string
  483. #Default: NULL
  484. #
  485. # Automatically sets the password for the names server in order to perform
  486. # sensitive operations (stop, restart, reload). The password may also be
  487. # set manually during a namesctl session using 'set password'.
  488. #
  489. #
  490. #namesctl.internal_encrypt_password = False
  491. #
  492. #Syntax:  T/F
  493. #Default: True
  494. #
  495. # When set to TRUE namesctl will not encrypt the password when it is sent to
  496. # the names server. This would enable an unencrypted password to be set in
  497. # names.ora:names.server_password
  498. #
  499. # - Native Naming Adpaters -------------------------------------------
  500. #
  501. #names.dce.prefix = /.:/subsys/oracle/names
  502. #
  503. #Syntax:  DCE cell name
  504. #Default: /.:/subsys/oracle/names
  505. #
  506. #Specifies the DCE cell (prefix) to use for name lookup.
  507. #
  508. #
  509. #names.nds.name_context = personnel.acme
  510. #
  511. #Syntax:  NDS name
  512. #Default: (OSD?)
  513. #
  514. # Specifies the default NDS name context in which to look for the name to
  515. # be resolved.
  516. #
  517. #
  518. #names.nis.meta_map # NA
  519. #
  520. # Syntax:  filename
  521. # Default: sqlnet.maps
  522. #
  523. # Specifies the file to be used to map NIS attributes to an NIS mapname.
  524. # Currently unused.
  525. # - Oracle Advanced Security Authentication Adapters ----------------
  526. #sqlnet.authentication_services
  527. #
  528. # Syntax: A single value or a list from {beq, none, all, kerberos5,
  529. #   cybersafe, radius}
  530. # Default: NONE
  531. #
  532. # Enables one or more authentication services.  If
  533. # Oracle Advanced Security has been installed with Kerberos5
  534. # support, using (beq, kerberos5) would enable authentication via
  535. # Kerberos.
  536. #
  537. #sqlnet.authentication_services=(beq, kerberos5)
  538.  
  539. ##
  540. ## Parmeters used with Kerberos adapter.
  541. ##
  542. #sqlnet.kerberos5_cc_name
  543. #
  544. # Syntax: Any valid pathname.
  545. # Default: /tmp/krb5cc_<uid>
  546. #
  547. # The Kerberos credential cache pathname.
  548. #
  549. #sqlnet.kerberos5_cc_name=/tmp/mycc
  550. #sqlnet.kerberos5_clockskew
  551. #
  552. # Syntax: Any positive integer.
  553. # Default: 300
  554. #
  555. # The acceptable difference in the number of seconds between when a
  556. # credential was sent and when it was received.
  557. #
  558. #sqlnet.kerberos5_clockskew=600
  559. #sqlnet.kerberos5_conf
  560. #
  561. # Syntax: Any valid pathname.
  562. # Default: /krb5/krb.conf
  563. #
  564. # The Kerberos configuration pathname.
  565. #
  566. #sqlnet.kerberos5_conf=/tmp/mykrb.conf
  567. #sqlnet.kerberos5_realms
  568. #
  569. # Syntax: Any valid pathname
  570. # Default: /krb5/krb.realms
  571. #
  572. # The Kerberos host name to realm translation file.
  573. #
  574. #sqlnet.kerberos5_realms=/tmp/mykrb.realms
  575. #sqlnet.kerberos5_keytab
  576. #
  577. # Syntax: Any valid pathname.
  578. # Default: /etc/v5srvtab
  579. #
  580. # The Kerberos secret key file.
  581. #
  582. #sqlnet.kerberos5_keytab=/tmp/myv5srvtab
  583. #sqlnet.authentication_kerberos5_service
  584. #
  585. # Syntax: Any string.
  586. # Default: A default is not provided.
  587. #
  588. # The Kerberos service name.
  589. #
  590. #sqlnet.authentication_kerberos5_service=acme
  591. ##
  592. ## Parmeters used with CyberSAFE adapter.
  593. ##
  594. #sqlnet.authentication_gssapi_service
  595. #
  596. # Syntax: A correctly formatted service principal string.
  597. # Default: A default is not provided.
  598. #
  599. # The CyberSAFE service principal
  600. #
  601. #sqlnet.authentication_gssapi_service=acme/asriniva.us.oracle.com@US.ORACLE.COM
  602. ##
  603. ## Parameters used with Radius adapter
  604. ##
  605.  
  606. # Need to specify the location of the Radius server
  607. #sqlnet.radius_authentication = localhost
  608. # Need to specify the port address of the Radius server
  609. #sqlnet.radius_authentication_port = 1654
  610. # If your radius server support accounting, you can enable it
  611. #sqlnet.radius_accounting = off
  612. # Turn on/off challenge response
  613. #sqlnet.radius_challenge_response = off
  614. # Keyword to request a challenge from Radius server.  
  615. # If you use activcard, enter activcard
  616. # If you use something else, enter challenge
  617. #sqlnet.radius_challenge_keyword = challenge
  618. # Enter the name of the client interface you want to use for challenge response
  619. #sqlnet.radius_authentication_interface = DefaultRadiusInterface
  620. # Where is the secret file locate
  621. #sqlnet.radius_secret = $ORACLE_HOME/security/radius.key
  622.  
  623. # - Oracle Advanced Security Network Security -------------------------
  624. #sqlnet.crypto_checksum_client 
  625. #sqlnet.crypto_checksum_server 
  626. #sqlnet.encryption_client 
  627. #sqlnet.encryption_server 
  628. #
  629. # These four parameters are used to specify whether a service (e.g. 
  630. # crypto-checksumming or encryption) should be active: 
  631. #
  632. # Each of the above parameters defaults to REJECTED.
  633. #
  634. # Each of the above parameters can have one of four possible values: 
  635. # value meaning 
  636. #
  637. # ACCEPTED The service will be active if the other side of the 
  638. # connection specifies "REQUESTED" or REQUIRED" and 
  639. # there is a compatible algorithm available on the other 
  640. # side; it will be inactive otherwise. 
  641. #
  642. # REJECTED The service must not be active, and the connection 
  643. # will fail if the other side specifies "REQUIRED". 
  644. #
  645. # REQUESTED The service will be active if the other side specifies 
  646. # "ACCEPTED", "REQUESTED", or "REQUIRED" and there is a 
  647. # compatible algorithm available on the other side; it 
  648. # will be inactive otherwise. 
  649. #
  650. # REQUIRED The service must be active, and the connection will 
  651. # fail if the other side specifies "REJECTED" or if there 
  652. # is no compatible algorithm on the other side. 
  653. #
  654. #sqlnet.crypto_checksum_types_client 
  655. #sqlnet.crypto_checksum_types_server 
  656. #sqlnet.encryption_types_client 
  657. #sqlnet.encryption_types_server 
  658. #
  659. # These parameters control which algorithms will be made available for 
  660. # each service on each end of a connection: 
  661. #
  662. # The value of each of these parameters can be either a parenthesized 
  663. # list of algorithm names separated by commas or a single algorithm 
  664. # name.
  665. #
  666. # Encryption types can be: RC4_256, 3DES168, RC4_128, 3DES112, RC4_56
  667. #                          DES, RC4_40, DES40
  668. #
  669. # Encryption defaults to all the algorithms.
  670. #
  671. # Crypto checksum types can be: SHA1, MD5
  672. #
  673. # Crypto checksum defaults to all the algorithms.
  674. #
  675. #sqlnet.crypto_seed = <10-70 random characters, inside "" marks>
  676. #sqlnet.crypto_checksum_server = required 
  677. #sqlnet.encryption_server = required
  678. # - Oracle Security Server ---------------------------------------------
  679. #oss.source.my_wallet
  680. #
  681. # Syntax: A properly formatted NLNV list.
  682. # Default: Platform specific.  Unix: $HOME/oracle/oss
  683. #
  684. # The method for retrieving and storing my identity.  
  685. #
  686. #oss.source.my_wallet
  687. #   =(source
  688. #       =(method=file)
  689. #        (method_data=/dve/asriniva/oss/wallet)
  690. #     ) 
  691. #oss.source.location
  692. #
  693. # Syntax: A properly formatted NLNV list.
  694. # Default: Oracle method, oracle_security_service/oracle_security_service@oss
  695. #
  696. # The method for retrieving encrypted private keys.
  697. #
  698. #oss.source.location
  699. #   =(source
  700. #       =(method=oracle) 
  701. #        (method_data= 
  702. #           (sqlnet_address=andreoss)
  703. #        ) 
  704. #    ) 
  705. # - Sqlnet(v2.x) and Net3.0 Client ------------------------------------------
  706. #
  707. # In the following descriptions, the term "client program" could mean 
  708. # either sqlplus, svrmgrl or any other OCI programs written by users
  709. ###########################
  710. #trace_level_client = ADMIN
  711. ###########################
  712. #
  713. #Possible values: {OFF,USER,ADMIN,0-16}
  714. #Default:         OFF (0)
  715. #
  716. #Purpose: Indicates the level at which the client program 
  717. #         is to be traced. 
  718. # Available Values:
  719. #       0 or OFF - No Trace output
  720. # 4 or USER - User trace information
  721. #  10 or ADMIN - Administration trace information
  722. # 16 or SUPPORT - Worldwide Customer Support trace information
  723. #
  724. #Supported since:  v2.0
  725. #
  726. ###############################################
  727. #trace_directory_client = /oracle/network/trace
  728. ###############################################
  729. #
  730. #Possible values: Any valid directory path with write permission
  731. #Default: $ORACLE_HOME/network/trace  ($ORACLE_HOME=/oracle at customer 
  732. #         site)
  733. #
  734. #Purpose: Indicates the name of the directory to which trace files from 
  735. #         the client execution are written.
  736. #
  737. #Supported since: v2.0
  738. #
  739. ###################################################
  740. #trace_file_client =  /oracle/network/trace/cli.trc
  741. ###################################################
  742. #
  743. #Possible values: Any valid file name 
  744. #Default:   $ORACLE_HOME/network/trace/cli.trc ($ORACLE_HOME = 
  745. #   /oracle at customer site)
  746. #
  747. #Purpose: Indicates the name of the file to which the execution trace 
  748. #         of the client is written to. 
  749. #
  750. #Supported since: v2.0
  751. #
  752. ###########################
  753. #trace_unique_client = ON
  754. ###########################
  755. #
  756. #Possible values: {ON, OFF}
  757. #Default: OFF
  758. #
  759. #Purpose: Used to make each client trace file have a unique name to 
  760. #   prevent each trace file from being overwritten by successive 
  761. #   runs of the client program
  762. #
  763. #Supported since: v2.0
  764. #
  765. ###########################################
  766. #log_directory_client = /oracle/network/log
  767. ###########################################
  768. #
  769. #Possible values: Any valid directory pathname
  770. #Default: $ORACLE_HOME/network/log  ($ORACLE_HOME = /oracle at customer
  771. #   site)
  772. #
  773. #Purpose: Indicates the name of the directory to which the client log file
  774. #   is written to.
  775. #
  776. #
  777. #Supported since: v2.0
  778. #
  779. ################
  780. #log_file_client = /oracle/network/log/sqlnet.log
  781. ################
  782. #
  783. #Possible values: This is a default value, u cannot change this
  784. #Default: $ORACLE_HOME/network/log/sqlnet.log  ($ORACLE_HOME=/oracle in 
  785. #         customer site)
  786. #
  787. #Purpose: Indicates the name of the log file from a client program
  788. #
  789. #Supported since: v2.0
  790. #
  791. #############################################
  792. #log_directory_server = /oracle/network/trace
  793. #############################################
  794. #
  795. #Possible values: Any valid diretcory path with write permission
  796. #Default: $ORACLE_HOME/network/trace ( $ORACLE_HOME=/oracle at customer 
  797. #   site)
  798. #
  799. #Purpose: Indicates the name of the directory to which log files from the 
  800. #    server are written
  801. #
  802. #Supported since:  v2.0
  803. #
  804. ###############################################
  805. #trace_directory_server = /oracle/network/trace
  806. ###############################################
  807. #
  808. #Possible values: Any valid directory path with write permission
  809. #Default: $ORACLE_HOME/network_trace ( $ORACLE_HOME=/oracle at customer 
  810. #   site)
  811. #
  812. #Purpose: Indicates the name of the directory to which trace files from 
  813. #         the server are written 
  814. #
  815. #Supported since:  v2.0
  816. #
  817. #######################################################
  818. #trace_file_server = /orace/network/trace/svr_<pid>.trc
  819. #######################################################
  820. #
  821. #Possible values: Any valid filename
  822. #Default: $ORACLE_HOME/network/trace/svr_<pid>.trc where <pid? stands for 
  823. #         the process id of the server on UNIX systems 
  824. #
  825. #Purpose: Indicates the name of the file to which the execution trace of 
  826. #         the server program is written to. 
  827. #
  828. #Supported since: v2.0
  829. #
  830. ###########################
  831. #trace_level_server = ADMIN
  832. ###########################
  833. #
  834. #Possible values: {OFF,USER,ADMIN,0-16}
  835. #Default:         OFF (0)
  836. #
  837. #Purpose: Indicates the level at which the server program
  838. #         is to be traced.
  839. # Available Values:
  840. #       0 or OFF - No Trace output
  841. #       4 or USER - User trace information
  842. #       10 or ADMIN - Administration trace information
  843. #       16 or SUPPORT - Worldwide Customer Support trace information
  844. #
  845. #Supported since: v2.0
  846. #
  847. ##########################
  848. #use_dedicated_server = ON
  849. ##########################
  850. #
  851. #Possible values: {OFF,ON}
  852. #Default:    OFF
  853. #
  854. #Purpose: Forces the listener to spawn a dedicated server process for 
  855. #   sessions from this client program. 
  856. #
  857. #Supported since: v2.0
  858. #
  859. ################
  860. #use_cman = TRUE
  861. ################
  862. #
  863. #Possible values: {TRUE, FALSE}
  864. #Default:   FALSE
  865. #
  866. #Purpose: 
  867. #
  868. #Supported since: v3.0
  869. #
  870. ################################################
  871. #tnsping.trace_directory = /oracle/network/trace
  872. ################################################
  873. #
  874. #Possible values: Any valid directory pathname
  875. #Default: $ORACLE_HOME/network/trace ($ORACLE_HOME=/oracle at customer 
  876. #   site)
  877. #
  878. #Purpose: Indicates the directory to which the execution trace from
  879. #   the tnsping program is to be written to.
  880. #
  881. #Supported since: v2.0
  882. #
  883. ############################
  884. #tnsping.trace_level = ADMIN    
  885. ############################
  886. #
  887. #Possible values: {OFF,USER,ADMIN,0-16}
  888. #Default:         OFF (0)
  889. #
  890. #Purpose: Indicates the level at which the server program
  891. #         is to be traced.
  892. # Available Values:
  893. #       0 or OFF - No Trace output
  894. #       4 or USER - User trace information
  895. #       10 or ADMIN - Administration trace information
  896. #       16 or SUPPORT - Worldwide Customer Support trace information
  897. #
  898. #
  899. #Supported since: v2.0
  900. #
  901. ########################
  902. #sqlnet.expire_time = 10
  903. ########################
  904. #
  905. #Possible values: 0-any valid positive integer! (in minutes)
  906. #Default: 0 minutes 
  907. #Recommended value: 10 minutes
  908. #
  909. #Purpose: Indicates the time interval to send a probe to verify the 
  910. #   client session is alive (this is used to reclaim watseful 
  911. #   resources on a dead client)
  912. #
  913. #Supported since: v2.1
  914. #
  915. #######################################
  916. #sqlnet.client_registration = <unique_id>
  917. #######################################
  918. #
  919. #Possible values: 
  920. #Default:     OFF 
  921. #
  922. #Purpose: Sets a unique identifier for the client machine. This 
  923. #   identifier is then passed to the listener with any connection 
  924. #   request and will be included in the Audit Trail. The identifier 
  925. #   can be any alphanumeric string up to 128 characters long.
  926. #
  927. #Supported since: v2.3.2
  928. #
  929. ######################
  930. #bequeath_detach = YES
  931. ######################
  932. #
  933. #Possible values: {YES,NO}
  934. #Default:         NO
  935. #
  936. #Purpose: Turns off signal handling on UNIX systems. If signal handling 
  937. #   were not turned off and if client programs written by users make 
  938. #   use of signal handling they could interfere with Sqlnet/Net3. 
  939. #
  940. #Supported since: v2.3.3 
  941. #
  942. ####################
  943. #automatic_ipc = OFF
  944. ####################
  945. #
  946. #Possible values: {ON,OFF}
  947. #Default: OFF
  948. #
  949. #Purpose: Force a session to use or not to use IPC addresses on the 
  950. #   client's node. 
  951. #
  952. #Supported since: v2.0
  953. #
  954. ####################
  955. #disable_oob = ON
  956. ####################
  957. #
  958. #Possible values: {ON,OFF}
  959. #Default: OFF
  960. #
  961. #Purpose: If the underlying transport protocol (TCP, DECnet,...) does
  962. #         not support Out-of-band breaks, then disable out-of-band
  963. #   breaks
  964. #
  965. #Supported since: v2.0
  966. #