NebulaNetworkAutomation 1.0.1

dotnet add package NebulaNetworkAutomation --version 1.0.1
                    
NuGet\Install-Package NebulaNetworkAutomation -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NebulaNetworkAutomation" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NebulaNetworkAutomation" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="NebulaNetworkAutomation" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NebulaNetworkAutomation --version 1.0.1
                    
#r "nuget: NebulaNetworkAutomation, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package NebulaNetworkAutomation@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NebulaNetworkAutomation&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=NebulaNetworkAutomation&version=1.0.1
                    
Install as a Cake Tool

Nuget

Nebula Network Automation a helper C# library for automating Nebula Network operations.


What is Nebula?

Nebula is a scalable peer to peer virtual private network / overlay networking tool with a focus on performance, simplicity and security. It lets you seamlessly connect computers anywhere in the world. Nebula is portable, and runs on Linux, OSX, Windows, iOS, and Android. It can be used to connect a small number of computers, but is also able to connect tens of thousands of computers.

Nebula incorporates a number of existing concepts like encryption, security groups, certificates, and tunneling, and each of those individual pieces existed before Nebula in various forms. What makes Nebula different to existing offerings is that it brings all of these ideas together, resulting in a sum that is greater than its individual parts.

Further documentation can be found here.

You can read more about Nebula here.


Certificate creation and manipulation:

public class CNebulaCert
{
      public static CNebulaCert? MakeCA(in string inName, in DateTime StartDate, in TimeSpan ValidityPeriod);
      public static CNebulaCert? MakeSignedCert(in CNebulaCert inCA, in string inName, in IPAddress inIP, in int inCidr, in DateTime StartDate, in TimeSpan ValidityPeriod);
      public static CNebulaCert? MakeFromPEM(in string? inCert, in string? inPrivateKey = null);
      public string? GetCertPEM();
      public string? GetPrivateKeyPem();
      public DateTime? GetStartDate();
      public DateTime? GetEndDate();
      public IPAddress? GetIPAddress();
      public IPAddress? GetIPMask();
      public bool IsExpired();
      public bool IsSignatureValid(CNebulaCert inSigner);
      public bool IsValidCA();
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 271 7/4/2023
1.0.0 223 6/27/2023