-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnvpnSettingCommands.py
More file actions
57 lines (53 loc) · 1.13 KB
/
nvpnSettingCommands.py
File metadata and controls
57 lines (53 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python3
########################################
#### nvpnSettingsCommands.py ####
#### Version 20250506 grid ####
########################################
"""
Because nordvpn displays settings differently from the setting-item being used.
The 'item' is nordvpn display value
The 'value' is what we use to change the setting.
"""
nvpnCommandsArray = [
{
'item':"Threat_Protection_Lite",
'value': "threatprotectionlite"
},
{
'item':"LAN_DISCOVERY",
'value': "lan-discovery"
},
{
'item':"VIRTUAL_LOCATION",
'value': "virtual-location"
},
{
'item':"POST-QUANTUM_VPN",
'value': "pq"
},
{
'item':"AUTO-CONNECT",
'value': "autoconnect"
}
]
"""
With version NordVPN Version 3.20
=================================
Technology: NORDLYNX
Firewall: enabled
Firewall Mark: 0xe1f1
Routing: enabled
Analytics: disabled
Kill Switch: disabled
Threat Protection Lite: disabled
Notify: disabled
Tray: disabled
Auto-connect: disabled
IPv6: disabled
Meshnet: disabled
DNS: disabled
LAN Discovery: disabled
Virtual Location: enabled
Post-quantum VPN: disabled
=================================
"""