We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Not able to connect Indian VPN
To Reproduce using docker CLI root@39dd68f20551:/# nordvpn status A new version of NordVPN is available! Please update the application. Status: Connected Hostname: in158.nordvpn.com IP: 81.17.122.4 Country: India City: Mumbai Current technology: NORDLYNX Current protocol: UDP Transfer: 12.75 KiB received, 7.36 KiB sent Uptime: 3 seconds root@39dd68f20551:/# curl ipinfo.io/json { "ip": "81.17.122.64", "city": "Singapore", "region": "Singapore", "country": "SG", "loc": "1.3552,103.8235", "org": "AS136787 PacketHub S.A.", "postal": "574179", "timezone": "Asia/Singapore", "readme": "https://ipinfo.io/missingauth" }
To Reproduce using docker-compose vpn: image: ghcr.io/bubuntux/nordvpn cap_add: - NET_ADMIN # Required - NET_RAW # Required environment: # Review https://github.com/bubuntux/nordvpn#environment-variables - TOKEN=abc # Required - CONNECT=India - TECHNOLOGY=NordLynx - NETWORK=192.168.1.0/24 # So it can be accessed within the local network ports: - 8081:8081 sysctls: - net.ipv6.conf.all.disable_ipv6=1
Expected behavior Checking through command line, it connects through Indian network. But when we check ip through curl, it shows Singapore IP.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Not able to connect Indian VPN
To Reproduce using docker CLI
root@39dd68f20551:/# nordvpn status
A new version of NordVPN is available! Please update the application.
Status: Connected
Hostname: in158.nordvpn.com
IP: 81.17.122.4
Country: India
City: Mumbai
Current technology: NORDLYNX
Current protocol: UDP
Transfer: 12.75 KiB received, 7.36 KiB sent
Uptime: 3 seconds
root@39dd68f20551:/# curl ipinfo.io/json
{
"ip": "81.17.122.64",
"city": "Singapore",
"region": "Singapore",
"country": "SG",
"loc": "1.3552,103.8235",
"org": "AS136787 PacketHub S.A.",
"postal": "574179",
"timezone": "Asia/Singapore",
"readme": "https://ipinfo.io/missingauth"
}
To Reproduce using docker-compose
vpn:
image: ghcr.io/bubuntux/nordvpn
cap_add:
- NET_ADMIN # Required
- NET_RAW # Required
environment: # Review https://github.com/bubuntux/nordvpn#environment-variables
- TOKEN=abc # Required
- CONNECT=India
- TECHNOLOGY=NordLynx
- NETWORK=192.168.1.0/24 # So it can be accessed within the local network
ports:
- 8081:8081
sysctls:
- net.ipv6.conf.all.disable_ipv6=1
Expected behavior
Checking through command line, it connects through Indian network. But when we check ip through curl, it shows Singapore IP.
The text was updated successfully, but these errors were encountered: