Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> SQLnet - Setting up TNSNAMES and LISTENER
I want to set up SQLnet 2.0 so that TCP/IP is used. Currently, DECnet
is used as the transport.
Are the changes made to the TNSNAMES and LISTENER files (defined below )
correct so that
TCP/IP is used instead of DECnet ?
The configurations for the Server and Client are as follows.
Server:
AS8400 (Nodname = HOST6)
Oracle 7.1 Database (DB name = DB1)
OpenVMS 6.2
Oracle Listener
################ # Filename......: listener.ora # Name..........: host6.world
################
(ADDRESS=
(PROTOCOL=IPC)
(KEY= HOST6_DB1.WORLD)
) (ADDRESS=
(PROTOCOL=IPC)
(KEY= DB1)
) (ADDRESS =
(PROTOCOL = TCP)
(HOST = HOST6.WORLD)
(PORT = 1521)
)
(SID_NAME = DB1) (PROGRAM = orasrv_net2.com) (TIMEOUT = 0)
Client:
VAX7610
Oracle 7.1
OpenVMS 6.2
################ # Filename......: tnsnames.ora # Name..........: nodename.world
################
(ADDRESS =
(COMMUNITY = world)
(PROTOCOL = TCP)
(Host = HOST6)
(Port = 1521)
)
![]() |
![]() |