You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://superuser.com/questions/1744297/remove-client-information-in-openvpn
I use script to create OpenVpn Server and the connection Create for client I found OpenVpn never clear the Client Ip Address from Packets and The Sites Can easily find my real IP Address and Geo Location! so how can I remove this information : example : My OpenVpn Server is : 5.X.X.X My Client Ip is : 1.X.X.X
if I connected Into OpenVpn Server : The result Showed in https://www.iplocation.net/ is 5.X.X.X but if I use this script in php :
This discussion was converted from issue #1044 on January 21, 2023 23:35.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
https://superuser.com/questions/1744297/remove-client-information-in-openvpn
I use script to create OpenVpn Server and the connection Create for client I found OpenVpn never clear the Client Ip Address from Packets and The Sites Can easily find my real IP Address and Geo Location! so how can I remove this information : example : My OpenVpn Server is : 5.X.X.X My Client Ip is : 1.X.X.X
if I connected Into OpenVpn Server : The result Showed in https://www.iplocation.net/ is 5.X.X.X but if I use this script in php :
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
it will be show me 1.X.X.X that is my client ip address!
Beta Was this translation helpful? Give feedback.
All reactions