Listener working for any interface
596007Sep 3 2007 — edited Sep 4 2007Hi!
I've an oracle instance running one listener, and I need it not to be bind to any specific network adapter or IP address but accepting incoming connections from any network adpater and IP.
anyone can help me?
this is my actual configuration:
#
# Filename: listener.ora
#
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.214.1)(PORT = 1521))
)
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = vtsdbs1)
(ORACLE_HOME = /opt/oracle/OraHome10gR2)
(SID_NAME = vtsdbs1)
)
)
Thank you.