我与python的vpn连接有问题。 我为一家公司制作了一个测试自动化脚本。但是它们通过vpn和ssh隧道连接到数据库。 如何使用python连接到vpn?
注意:我写了ssh隧道,但是我无法确定vpn连接
此ssh隧道连接:
with open_tunnel(sql_ip,
ssh_username=sql_username,
ssh_port=22,
ssh_password=sql_password,
remote_bind_address=(PRIVATE_SERVER_IP, sql_port),
local_bind_address=('127.0.0.1', 5434)) as server:
do_something()