通过 VPN 浏览远程 Apache 服务器网页

通过 VPN 浏览远程 Apache 服务器网页

我正在使用 openVPN 连接到运行 Centos 6.x 的远程服务器,其中我已经安装了 Apache、PHP 和 Mysql。现在我想测试 LAMP 堆栈是否配置正确以及网页是否加载。是否可以通过 VPN 从我的客户端 Web 浏览器浏览网页?

这是 ovpn 文件配置:

remote-cert-eku "TLS Web Server Authentication"
remote xxx.xxx.xxx.xxx 1194
persist-key
persist-tun
verb 3
mute 20
keepalive 10 60
cipher AES-256-CBC
auth SHA256
float
reneg-sec 3660
nobind
mute-replay-warnings
auth-user-pass
;remember_connection 0
;auto_reconnect 1  

这是远程服务器的 netstat:

Proto Recv-Q Send-Q Local Address               Foreign Address             State      
tcp        0     40 srv-zsd.com.pov:ssh 192.168.113.2:62149  

   ESTABLISHED 

之后netstat -tuplen

Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State       User       Inode      PID/Program name   
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      0          11832256   -                   
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN      0          11832722   -                   
tcp        0      0 :::80                       :::*                        LISTEN      0          11922117   -                   
tcp        0      0 :::22                       :::*                        LISTEN      0          11832258   -                   
tcp        0      0 ::1:25                      :::*                        LISTEN      0          11832723   -        

我像这样连接到 VPN: ssh [email protected]

在浏览器中我得到了192.168.10.213 refused to connect.

相关内容