python-oracledb thin client artificial packet during login #184
-
When recording tcpdump using python-oracledb thin client, during connection process I can see an artificial network packet of size 1 with value 0x21. ` Client -> Server Client <- Server Can someone please explain what is this single byte packet? Thank you in advance for any thoughts. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 17 replies
-
I believe this is the OOB (out-of-band) detection that is available with certain servers. You can turn it off by passing the parameter |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
I believe this is the OOB (out-of-band) detection that is available with certain servers. You can turn it off by passing the parameter
disable_oob
as the valueTrue
when creating the connection. SQL*Plus (and python-oracledb thick mode) depend on the equivalent value found in thesqlnet.ora
configuration file.