Skip to content
/ LoRaWAN Public

LoRaWAN end-node implementation with .NET and C#

License

Notifications You must be signed in to change notification settings

htmos6/LoRaWAN

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LoRaWAN-Server

SSL Certificate Creation

  • SSL Key and Password generated easily using Windows Powershell in Administrator Mode.

$cert = New-SelfSignedCertificate -DnsName "LoRaWAN" -CertStoreLocation "cert:\LocalMachine\My" Export-PfxCertificate -Cert $cert -FilePath "LoRaWAN.pfx" -Password (ConvertTo-SecureString -String "sTrongPassW1" -Force -AsPlainText)

Resolving Access Issues

  • Access denial while reading SSL file from the client side and inability to read messages from the server.
  • Run the following command in Powershell with Admin privileges:

icacls C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys /inheritance:r /grant Administrators:F /grant:r Everyone:RW

About

LoRaWAN end-node implementation with .NET and C#

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages