Source-based routing in Golang
Dmitrii Stepanov
f940027c55
Some checks failed
Tests and linters / gopls check (pull_request) Failing after 19s
Pre-commit hooks / Pre-commit (pull_request) Failing after 49s
Tests and linters / Tests with -race (pull_request) Successful in 47s
Vulncheck / Vulncheck (pull_request) Successful in 44s
Tests and linters / Staticcheck (pull_request) Failing after 57s
Tests and linters / Run gofumpt (pull_request) Failing after 57s
DCO action / DCO (pull_request) Successful in 1m12s
Tests and linters / Tests (pull_request) Successful in 1m12s
Tests and linters / Lint (pull_request) Successful in 2m3s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com> |
||
---|---|---|
.forgejo/workflows | ||
.gitattributes | ||
.gitignore | ||
.golangci.yml | ||
.pre-commit-config.yaml | ||
balancer.go | ||
dialer.go | ||
dialer_hostname_test.go | ||
dialer_test.go | ||
go.mod | ||
go.sum | ||
Makefile | ||
README.md |
Source-based routing in Golang
Consider this routing table:
10.11.70.0/23 dev data0 proto kernel scope link src 10.11.70.42
10.11.70.0/23 dev data1 proto kernel scope link src 10.11.71.42
192.168.123.0/24 dev internal0 proto kernel scope link src 192.168.123.42
192.168.123.0/24 dev internal1 proto kernel scope link src 192.168.123.142
Simple net.Dial
to either 10.11.70.42
or 10.11.71.42
will match the first subnet and be routed via data0.
This problems is usually solved by bonds.
But sometimes you need to invent a bicycle.
Usage
import (
"context"
"net"
"net/netip"
"git.frostfs.info/TrueCloudLab/multinet"
)
import
d, err := multinet.NewDialer(Config{
Subnets: []Subnet{
{
Prefix: netip.MustParsePrefix("10.11.70.0/23"),
SourceIPs: []netip.Addr{
netip.MustParseAddr("10.11.70.42"),
netip.MustParseAddr("10.11.71.42"),
},
},
{
Prefix: netip.MustParsePrefix("192.168.123.0/24"),
SourceIPs: []netip.Addr{
netip.MustParseAddr("192.168.123.42"),
netip.MustParseAddr("192.168.123.142"),
},
},
},
Balancer: multinet.BalancerTypeRoundRobin,
})
if err != nil {
// handle error
}
conn, err := d.DialContext(ctx, "tcp", "10.11.70.42")
if err != nil {
// handle error
}
// do stuff