我在我的 Windows 伺服器( )中安裝了 OpenVPN 43.224.204.19
,並產生了server.ovpn
和client.ovpn
檔案:
這是我的server.ovpn
:
local 43.224.204.19
port 1194
proto udp
dev tun
ifconfig-pool-persist ipp.txt
#server-bridge 10.8.0.4 255.255.255.0 10.8.0.50 10.8.0.100
server 10.0.0.0 255.255.255.0
client-to-client
keepalive 10 120
comp-lzo
persist-key
persist-tun
status openvpn-status.log
log openvpn.log
verb 3
mute 20
<ca>
....
</ca>
<cert>
....
</cert>
<dh>
....
</dh>
這是我的client1.ovpn
:
client
proto udp
port 1194
dev tun
remote 43.224.204.19
resolv-retry infinite
persist-key
persist-tun
comp-lzo
verb 3
mute 20
<ca>
...
</ca>
<cert>
...
</cert>
<key>
....
</key>
在我的 Windows Server 中,我使用 OpenVPN GUI 連接伺服器。
在我的客戶端 Windows Server( 45.117.40.20
) 中,我也安裝了 OpenVPN GUI,將其複製client.ovpn
到 OpenVPN 設定目錄並連接到遠端伺服器( 43.224.204.19
)。
客戶端日誌:
...
Sun Sep 02 23:08:03 2018 C:\Windows\system32\route.exe ADD 10.0.0.0 MASK 255.255.255.0 10.0.0.5
Sun Sep 02 23:08:03 2018 ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=20 and dwForwardType=4
Sun Sep 02 23:08:03 2018 Route addition via IPAPI succeeded [adaptive]
Sun Sep 02 23:08:03 2018 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this
Sun Sep 02 23:08:03 2018 Initialization Sequence Completed
Sun Sep 02 23:08:03 2018 MANAGEMENT: >STATE:1535900883,CONNECTED,SUCCESS,10.0.0.6,43.224.204.19,1194,,
就可以看到連線成功了
但是,我有一個問題。
在 Windows Server( 43.224.204.19
) 中,我可以輸入 IPMI 位址來存取它:
但在客戶端伺服器(45.117.40.20
)我輸入IPMI位址到瀏覽器我無法存取。 ( ERR_CONNECTION_TIMED_OUT
)。
知道客戶端已經連接到OpenVPN伺服器,但是為什麼客戶端無法存取OpenVPN伺服器的內網呢?