EarthNet Troubleshooting: Difference between revisions

Line 29:
If you are struggling to host or even join, it could be the Windows Firewall Profile is set to Public and although it should allow traffic with the above rules implemented, it doesn't. To fix, change the network connection profile to "Private:
 
Run PowerShell (run as admin) the following commands
Run "'''Get-NetConnectionProfile'''" in Powershell and make note of the network name for the "'''OpenVPN Data Channel Offload'''" connection.
Setpowershell -c "Get-NetConnectionProfile -NameInterfaceAlias "Network 2Ethernet*" | Set-NetConnectionProfile -NetworkCategory Private"
powershell -c "Get-NetConnectionProfile -InterfaceAlias "OpenVPN*" | Set-NetConnectionProfile -NetworkCategory Private"
 
Confirm interfaces are now set tpo Private with the ''Get-NetConnectionProfile'' command;
''example;''
$ Get-NetConnectionProfile
Name : Network
InterfaceAlias : Ethernet or Wi-fi
NetworkCategory : Private
Name : Network 2
InterfaceAlias : OpenVPN Data Channel Offload
NetworkCategory : Public
Now run (PowerShell - run as admin) the following command ('''Set-NetConnectionProfile -Name "NETWORK NAME" -NetworkCategory Private''') to set the correct profile
 
''example ;''
Set-NetConnectionProfile -Name "Network 2" -NetworkCategory Private
 
''result;''
Line 60 ⟶ 49:
Stop-Service -Name upnphost
Set-Service -Name upnphost -StartupType Disabled
 
==== Troubleshooting Commands ====
''View network connection profiles''
1,180

edits