First proof-of-concept
This commit is contained in:
		
							parent
							
								
									c234ca5dd2
								
							
						
					
					
						commit
						d84a722ab0
					
				
							
								
								
									
										17
									
								
								cmd/app/logger.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								cmd/app/logger.go
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,17 @@
 | 
				
			|||||||
 | 
					package main
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"log"
 | 
				
			||||||
 | 
						"os"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					type Log struct {
 | 
				
			||||||
 | 
						Info log.Logger
 | 
				
			||||||
 | 
						Warn log.Logger
 | 
				
			||||||
 | 
						Error log.Logger
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var logger Log = Log{
 | 
				
			||||||
 | 
						Info:	*log.New(os.Stdout, "[INFO]\t", log.Ltime|log.Lshortfile),
 | 
				
			||||||
 | 
						Warn:	*log.New(os.Stderr, "[WARN]\t", log.Ltime|log.Lshortfile),
 | 
				
			||||||
 | 
						Error:	*log.New(os.Stderr, "[ERROR]\t", log.Ltime|log.Lshortfile),
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										120
									
								
								cmd/app/main.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										120
									
								
								cmd/app/main.go
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,120 @@
 | 
				
			|||||||
 | 
					package main
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import (
 | 
				
			||||||
 | 
						"fmt"
 | 
				
			||||||
 | 
						"net"
 | 
				
			||||||
 | 
						"os"
 | 
				
			||||||
 | 
						"time"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						envChecks "git.ruekov.eu/ruakij/routingtabletowg/lib/environmentchecks"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						"github.com/vishvananda/netlink"
 | 
				
			||||||
 | 
						"golang.zx2c4.com/wireguard/wgctrl"
 | 
				
			||||||
 | 
						"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var envRequired = []string{
 | 
				
			||||||
 | 
						"INTERFACE",
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					var envDefaults = map[string]string{
 | 
				
			||||||
 | 
						"IPV6_PREFIX": "fd00::",
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					func main() {
 | 
				
			||||||
 | 
						// Environment-vars
 | 
				
			||||||
 | 
						err := envChecks.HandleRequired(envRequired)
 | 
				
			||||||
 | 
						if(err != nil){
 | 
				
			||||||
 | 
							logger.Error.Fatal(err)
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						envChecks.HandleDefaults(envDefaults)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Get the network interface object
 | 
				
			||||||
 | 
						iface := os.Getenv("INTERFACE")
 | 
				
			||||||
 | 
					    netInterface, err := netlink.LinkByName(iface)
 | 
				
			||||||
 | 
					    if err != nil {
 | 
				
			||||||
 | 
					        logger.Error.Fatal(err)
 | 
				
			||||||
 | 
					        return
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Get the IPv4 address of the interface	
 | 
				
			||||||
 | 
					    addrs, err := netlink.AddrList(netInterface, netlink.FAMILY_V4)
 | 
				
			||||||
 | 
					    if err != nil {
 | 
				
			||||||
 | 
					        logger.Error.Fatal(err)
 | 
				
			||||||
 | 
					        return
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
						if(len(addrs) == 0){
 | 
				
			||||||
 | 
							logger.Error.Fatal("Interface doesnt have IPv4-Adresses")
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					    ipv4Addr := addrs[0].IP.String()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Convert the IPv4 address to an IPv6 address
 | 
				
			||||||
 | 
					    ipv6Prefix := "fd20::"
 | 
				
			||||||
 | 
					    ipv6Suffix := fmt.Sprintf("%02x%02x", ipv4Addr[12], ipv4Addr[13])
 | 
				
			||||||
 | 
					    ipv6AddrStr := ipv6Prefix + ipv6Suffix + "/112"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Add the IPv6 address to the interface
 | 
				
			||||||
 | 
					    ipv6Addr, err := netlink.ParseAddr(ipv6AddrStr)
 | 
				
			||||||
 | 
					    if err != nil {
 | 
				
			||||||
 | 
					        logger.Error.Fatal(err)
 | 
				
			||||||
 | 
					        return
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    err = netlink.AddrAdd(netInterface, ipv6Addr)
 | 
				
			||||||
 | 
					    if err != nil {
 | 
				
			||||||
 | 
					        logger.Error.Fatal(err)
 | 
				
			||||||
 | 
					        return
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Create a WireGuard client
 | 
				
			||||||
 | 
					    client, err := wgctrl.New()
 | 
				
			||||||
 | 
					    if err != nil {
 | 
				
			||||||
 | 
					        logger.Error.Fatal(err)
 | 
				
			||||||
 | 
					        return
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    defer client.Close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Loop indefinitely
 | 
				
			||||||
 | 
					    for {
 | 
				
			||||||
 | 
					        // Get the WireGuard peers on the interface
 | 
				
			||||||
 | 
					        wgDevice, err := client.Device(iface)
 | 
				
			||||||
 | 
					        if err != nil {
 | 
				
			||||||
 | 
					            logger.Error.Fatalf("getting WireGuard device from interface '%s' failed: %s", iface, err)
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							var wgConfig wgtypes.Config
 | 
				
			||||||
 | 
					        wgConfig.Peers = make([]wgtypes.PeerConfig, len(wgDevice.Peers))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        for _, peer := range wgDevice.Peers {
 | 
				
			||||||
 | 
					            // Create slice with initial size of 2xAllowedIPs as the max we expect
 | 
				
			||||||
 | 
					            var allowedIPs = make([]net.IPNet, len(peer.AllowedIPs)*2)
 | 
				
			||||||
 | 
					            // Copy in all old entries
 | 
				
			||||||
 | 
					            copy(allowedIPs, peer.AllowedIPs)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            // Loop through the allowed-ips and add the ones starting with 100.100
 | 
				
			||||||
 | 
					            for _, allowedIP := range peer.AllowedIPs {
 | 
				
			||||||
 | 
					                if allowedIP.String()[:7] == "100.100" {
 | 
				
			||||||
 | 
					                    // Convert the IPv4 allowed-ip to an IPv6 address
 | 
				
			||||||
 | 
					                    ipv6Suffix := fmt.Sprintf("%02x%02x", allowedIP.IP[2], allowedIP.IP[3])
 | 
				
			||||||
 | 
					                    ipv6Address := ipv6Prefix + ipv6Suffix + "/128"
 | 
				
			||||||
 | 
					                    ipv6, err := netlink.ParseAddr(ipv6Address)
 | 
				
			||||||
 | 
					                    if err != nil {
 | 
				
			||||||
 | 
					                        logger.Warn.Printf("Couldnt parse IPv6 address %s of peer %s: %s", ipv6Address, peer.PublicKey, err)
 | 
				
			||||||
 | 
					                        continue
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    // Add the IPv6 allowed-ip to the peer
 | 
				
			||||||
 | 
					                    allowedIPs = append(allowedIPs, *ipv6.IPNet)
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            wgConfig.Peers = append(wgConfig.Peers, wgtypes.PeerConfig{AllowedIPs: allowedIPs})
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        err = client.ConfigureDevice(iface, wgConfig)
 | 
				
			||||||
 | 
							if(err != nil){
 | 
				
			||||||
 | 
								logger.Error.Fatalf("Error configuring wg-device '%s': %s", iface, err)
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // Sleep for 300 seconds before running the loop again
 | 
				
			||||||
 | 
					        time.Sleep(time.Second * 300)
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										22
									
								
								go.mod
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								go.mod
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,22 @@
 | 
				
			|||||||
 | 
					module git.ruekov.eu/wg-ipv6-converter
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					go 1.20
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					require golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230215201556-9c5414ab4bde
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					require github.com/vishvananda/netns v0.0.4 // indirect
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					require (
 | 
				
			||||||
 | 
						git.ruekov.eu/ruakij/routingtabletowg v0.0.0-20230330122950-021bd254f1a4
 | 
				
			||||||
 | 
						github.com/google/go-cmp v0.5.9 // indirect
 | 
				
			||||||
 | 
						github.com/josharian/native v1.1.0 // indirect
 | 
				
			||||||
 | 
						github.com/mdlayher/genetlink v1.3.1 // indirect
 | 
				
			||||||
 | 
						github.com/mdlayher/netlink v1.7.1 // indirect
 | 
				
			||||||
 | 
						github.com/mdlayher/socket v0.4.0 // indirect
 | 
				
			||||||
 | 
						github.com/vishvananda/netlink v1.1.0
 | 
				
			||||||
 | 
						golang.org/x/crypto v0.7.0 // indirect
 | 
				
			||||||
 | 
						golang.org/x/net v0.8.0 // indirect
 | 
				
			||||||
 | 
						golang.org/x/sync v0.1.0 // indirect
 | 
				
			||||||
 | 
						golang.org/x/sys v0.6.0 // indirect
 | 
				
			||||||
 | 
						golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b // indirect
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
							
								
								
									
										75
									
								
								go.sum
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								go.sum
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,75 @@
 | 
				
			|||||||
 | 
					git.ruekov.eu/ruakij/routingtabletowg v0.0.0-20230330122950-021bd254f1a4 h1:1dbOQh57z6tB5dc02APz153lGpQ36DkE1khLm3/IGlA=
 | 
				
			||||||
 | 
					git.ruekov.eu/ruakij/routingtabletowg v0.0.0-20230330122950-021bd254f1a4/go.mod h1:wYEQNasQeg+oOxXqFBxavBjZfX5hY5qoGrV4K6sRaiI=
 | 
				
			||||||
 | 
					github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
 | 
				
			||||||
 | 
					github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE=
 | 
				
			||||||
 | 
					github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
 | 
				
			||||||
 | 
					github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
 | 
				
			||||||
 | 
					github.com/josharian/native v1.0.0 h1:Ts/E8zCSEsG17dUqv7joXJFybuMLjQfWE04tsBODTxk=
 | 
				
			||||||
 | 
					github.com/josharian/native v1.0.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
 | 
				
			||||||
 | 
					github.com/josharian/native v1.1.0 h1:uuaP0hAbW7Y4l0ZRQ6C9zfb7Mg1mbFKry/xzDAfmtLA=
 | 
				
			||||||
 | 
					github.com/josharian/native v1.1.0/go.mod h1:7X/raswPFr05uY3HiLlYeyQntB6OO7E/d2Cu7qoaN2w=
 | 
				
			||||||
 | 
					github.com/mdlayher/genetlink v1.2.0 h1:4yrIkRV5Wfk1WfpWTcoOlGmsWgQj3OtQN9ZsbrE+XtU=
 | 
				
			||||||
 | 
					github.com/mdlayher/genetlink v1.2.0/go.mod h1:ra5LDov2KrUCZJiAtEvXXZBxGMInICMXIwshlJ+qRxQ=
 | 
				
			||||||
 | 
					github.com/mdlayher/genetlink v1.3.1 h1:roBiPnual+eqtRkKX2Jb8UQN5ZPWnhDCGj/wR6Jlz2w=
 | 
				
			||||||
 | 
					github.com/mdlayher/genetlink v1.3.1/go.mod h1:uaIPxkWmGk753VVIzDtROxQ8+T+dkHqOI0vB1NA9S/Q=
 | 
				
			||||||
 | 
					github.com/mdlayher/netlink v1.6.0/go.mod h1:0o3PlBmGst1xve7wQ7j/hwpNaFaH4qCRyWCdcZk8/vA=
 | 
				
			||||||
 | 
					github.com/mdlayher/netlink v1.6.2 h1:D2zGSkvYsJ6NreeED3JiVTu1lj2sIYATqSaZlhPzUgQ=
 | 
				
			||||||
 | 
					github.com/mdlayher/netlink v1.6.2/go.mod h1:O1HXX2sIWSMJ3Qn1BYZk1yZM+7iMki/uYGGiwGyq/iU=
 | 
				
			||||||
 | 
					github.com/mdlayher/netlink v1.7.1 h1:FdUaT/e33HjEXagwELR8R3/KL1Fq5x3G5jgHLp/BTmg=
 | 
				
			||||||
 | 
					github.com/mdlayher/netlink v1.7.1/go.mod h1:nKO5CSjE/DJjVhk/TNp6vCE1ktVxEA8VEh8drhZzxsQ=
 | 
				
			||||||
 | 
					github.com/mdlayher/socket v0.1.1/go.mod h1:mYV5YIZAfHh4dzDVzI8x8tWLWCliuX8Mon5Awbj+qDs=
 | 
				
			||||||
 | 
					github.com/mdlayher/socket v0.2.3 h1:XZA2X2TjdOwNoNPVPclRCURoX/hokBY8nkTmRZFEheM=
 | 
				
			||||||
 | 
					github.com/mdlayher/socket v0.2.3/go.mod h1:bz12/FozYNH/VbvC3q7TRIK/Y6dH1kCKsXaUeXi/FmY=
 | 
				
			||||||
 | 
					github.com/mdlayher/socket v0.4.0 h1:280wsy40IC9M9q1uPGcLBwXpcTQDtoGwVt+BNoITxIw=
 | 
				
			||||||
 | 
					github.com/mdlayher/socket v0.4.0/go.mod h1:xxFqz5GRCUN3UEOm9CZqEJsAbe1C8OwSK46NlmWuVoc=
 | 
				
			||||||
 | 
					github.com/vishvananda/netlink v1.1.0 h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=
 | 
				
			||||||
 | 
					github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE=
 | 
				
			||||||
 | 
					github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df h1:OviZH7qLw/7ZovXvuNyL3XQl8UFofeikI1NW1Gypu7k=
 | 
				
			||||||
 | 
					github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU=
 | 
				
			||||||
 | 
					github.com/vishvananda/netns v0.0.4 h1:Oeaw1EM2JMxD51g9uhtC0D7erkIjgmj8+JZc26m1YX8=
 | 
				
			||||||
 | 
					github.com/vishvananda/netns v0.0.4/go.mod h1:SpkAiCQRtJ6TvvxPnOSyH3BMl6unz3xZlaprSwhNNJM=
 | 
				
			||||||
 | 
					golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
 | 
				
			||||||
 | 
					golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU=
 | 
				
			||||||
 | 
					golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw=
 | 
				
			||||||
 | 
					golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A=
 | 
				
			||||||
 | 
					golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU=
 | 
				
			||||||
 | 
					golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
 | 
				
			||||||
 | 
					golang.org/x/net v0.0.0-20210928044308-7d9f5e0b762b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
 | 
				
			||||||
 | 
					golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
 | 
				
			||||||
 | 
					golang.org/x/net v0.0.0-20220923203811-8be639271d50/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
 | 
				
			||||||
 | 
					golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0=
 | 
				
			||||||
 | 
					golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco=
 | 
				
			||||||
 | 
					golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ=
 | 
				
			||||||
 | 
					golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
 | 
				
			||||||
 | 
					golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 | 
				
			||||||
 | 
					golang.org/x/sync v0.0.0-20220923202941-7f9b1623fab7/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 | 
				
			||||||
 | 
					golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o=
 | 
				
			||||||
 | 
					golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
 | 
				
			||||||
 | 
					golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
				
			||||||
 | 
					golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
 | 
				
			||||||
 | 
					golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
 | 
				
			||||||
 | 
					golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
 | 
				
			||||||
 | 
					golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
 | 
				
			||||||
 | 
					golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
 | 
				
			||||||
 | 
					golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
 | 
				
			||||||
 | 
					golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 | 
				
			||||||
 | 
					golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 | 
				
			||||||
 | 
					golang.zx2c4.com/wireguard v0.0.0-20220920152132-bb719d3a6e2c h1:Okh6a1xpnJslG9Mn84pId1Mn+Q8cvpo4HCeeFWHo0cA=
 | 
				
			||||||
 | 
					golang.zx2c4.com/wireguard v0.0.0-20220920152132-bb719d3a6e2c/go.mod h1:enML0deDxY1ux+B6ANGiwtg0yAJi1rctkTpcHNAVPyg=
 | 
				
			||||||
 | 
					golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b h1:J1CaxgLerRR5lgx3wnr6L04cJFbWoceSK9JWBdglINo=
 | 
				
			||||||
 | 
					golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b/go.mod h1:tqur9LnfstdR9ep2LaJT4lFUl0EjlHtge+gAjmsHUG4=
 | 
				
			||||||
 | 
					golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230215201556-9c5414ab4bde h1:ybF7AMzIUikL9x4LgwEmzhXtzRpKNqngme1VGDWz+Nk=
 | 
				
			||||||
 | 
					golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230215201556-9c5414ab4bde/go.mod h1:mQqgjkW8GQQcJQsbBvK890TKqUK1DfKWkuBGbOkuMHQ=
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user