Firebird 5.0. Setting up authentication parameters in the firebird.conf file #8563
-
Hello ! The database has been upgraded from Firebird 2.5 to Firebird 5.0.
Thanks ! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
I have moved this from issues to discussions; issues are for reporting bugs or requesting new features. |
Beta Was this translation helpful? Give feedback.
-
These settings don't make sense for multiple reasons:
|
Beta Was this translation helpful? Give feedback.
-
Let me add one thing. The only reason why you may want to proceed with Legacy auth family of plugins is CRITICAL inability of your users to enter new password after FB upgrade (or may be passwords are hard-coded in software that they run). I highly recommend not to treat other things (like need to upgrade fbclient on all boxes) as real need to use legacy auth. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your reply, @mrotteveel, @AlexPeshkoff ! The program works correctly with Firebird 5.0 databases with such disabled parameters (by default). All the best ! |
Beta Was this translation helpful? Give feedback.
These settings don't make sense for multiple reasons:
AuthServer = Legacy_Auth
, will only allow connections with deprecated authentication algorithms. It is better to set it toAuthServer = Srp256, Legacy_Auth
if you really need legacy auth, otherwise use the default (i.e.Srp256
)AuthClient = Legacy_Auth
will only allow the server to create connections to other database (including other servers) with deprecated authentication algorithms. Leaving this at the default (i.e.Srp256, Srp, Win_Sspi, Legacy_Auth
for Windows,Srp256, Srp, Legacy_Auth
for other platforms) is better.UserManager = Legacy_UserManager
will only allow creating users with the insecure and depr…