Lesson 6 | Evolution of Oracle Network Configuration Tools |
Objective | Describe how Oracle's network tools have evolved from Net Assistant to cloud-native infrastructure. |
listener.ora
and tnsnames.ora
. It was sunset after Oracle 9i, with its functionality absorbed into:
lsnrctl
Oracle Net Manager (netmgr
) was included in Oracle 10g through 12c for on-premise installations, but it has since been deprecated and is no longer included in standard Oracle distributions starting with Oracle 18c. It is not available in Oracle 19c, 21c, or 23c.
Oracle Version | Oracle Net Assistant | Oracle Net Manager | Net Configuration Assistant (NetCA) |
---|---|---|---|
9i and earlier | ✅ Available | ✅ Available | ✅ Available |
10g – 12c | ❌ Deprecated | ✅ Available | ✅ Available |
18c and newer | ❌ Removed | ❌ Removed | ✅ Still available |
Note: Administrators working on Oracle 19c or 23c should not expect Oracle Net Manager to be present. Network tasks are now handled using NetCA
, lsnrctl
, and cloud-native tooling in OCI.
Administrators use the OCI Console, OCI CLI, or Terraform to define connectivity. Configuration files like listener.ora
are either managed behind the scenes or unused in Autonomous Database deployments.
listener.ora
, tnsnames.ora
, and sqlnet.ora
However, this tool was removed in Oracle 18c and is not available in Oracle 19c and beyond. For modern deployments, use:
NetCA
for guided listener and naming setuplsnrctl
for direct listener managementFor long-term success, DBAs should prioritize learning lsnrctl
, NetCA
, and OCI's networking model over relying on deprecated GUI tools.