Skip to content

LeakIX/veeam-ds-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Veeam Distribution Service Golang Client

This library provides a net.Conn abstraction to a Veeam compressed connection trough NNS.

ntlmsspClient, err := ntlmssp.NewClient(ntlmssp.SetCompatibilityLevel(1), ntlmssp.SetUserInfo("", ""))
if err != nil {
    return nil, err
}
nnsConn, err := nns.DialNTLMSSP(addr, ntlmsspClient, 5*time.Second)
if err != nil {
    return nil, err
}
conn := veeam.WrapConnection(nnsConn)

An example to download files can be found in cmd/veeamdl