如何通过 vpn 将 cd 转到文件夹?

如何通过 vpn 将 cd 转到文件夹?

我是超级菜鸟。如果我的措辞不通,请原谅,这不是我的专业领域。

我正在运行 Ubuntu 18.04。

我已经通过 openvpn 建立了与工作网络/服务器的连接,如下所示:

sudo openvpn --config configfile.ovpn

我可以通过 ping 服务器来确认已经连接:

ping <ip address>

PING <ip address> (<ip address>) 56(84) bytes of data.
64 bytes from <ip address>: icmp_seq=1 ttl=128 time=53.4 ms
64 bytes from <ip address>: icmp_seq=2 ttl=128 time=28.1 ms
64 bytes from <ip address>: icmp_seq=3 ttl=128 time=27.2 ms

我如何才能实际访问服务器上的文件夹?

我只想进入并使用服务器上的文件......

请帮忙!

谢谢

答案1

如果你想连接到另一台计算机,请尝试使用 ssh,在此之前,你需要在工作计算机上安装 openssh-server

sudo apt install openssh-server

并在您的个人计算机上打开 openssh-client

sudo apt install openssh-client 

之后尝试使用ssh user@ip您的个人计算机进行连接,其中 user 是您的用户名,ip 是您工作计算机的实际 ip 地址。这样您就可以使用终端连接到您的工作计算机。

或者你可以在工作电脑上安装 vsftpd 来托管 ftp 服务器

sudo apt-get install vsftpd

然后尝试在浏览器中使用关键字搜索

ftp://ip 

其中 ip 是你工作电脑的 ip 地址,系统将提示你输入用户名和密码

另外,请确保你的工作计算机所连接的网络具有端口转发功能

答案2

当您连接到 VPN 时,您与工作网络上的其他计算机处于同一网络上。因此,您所能做的就是访问您的网络资源(例如打印机、扫描仪等)。连接到 VPN 后,您可以尝试与目标计算机建立连接,以便使用远程控制

希望这有帮助!

答案3

能够解决这个问题...我正在使用 openvpn 连接到服务器,但不确定如果使用其他方法是否会发生任何变化......

sudo openvpn --config yourconfigfile.ovpn
go to the file explorer > click other locations
go to the field that says "Enter server address"
enter your desired target folder : smb://<servername>/<foldername>/
you'll then be prompted for your credentials, and it will be mounted to your machine

相关内容