I've already got a successed authentication using this code:
from ldap3 import Server, Connection, ALL
# define the server
s = Server('ldap://***.***.**.201:389', get_info=ALL)
# define the connection
c = Connection(s, user='***', password='***')
c.bind()
Like our admin said - this is the server for authentication and i'd like to save a file on server ...204 which uses that authentication. So how can I save file from my folder to the server ...204 in folder ...204:\1_СТМ using authentication from server ...201:389????