Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shun159/go-vrouter
A Go API library to control tf-vrouter in-kernel dataplane module
https://github.com/shun159/go-vrouter
Last synced: 1 day ago
JSON representation
A Go API library to control tf-vrouter in-kernel dataplane module
- Host: GitHub
- URL: https://github.com/shun159/go-vrouter
- Owner: shun159
- Created: 2022-11-25T04:09:58.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T06:28:44.000Z (about 2 years ago)
- Last Synced: 2024-12-20T11:32:35.374Z (11 days ago)
- Language: Go
- Size: 32.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
go-vrouter: A Go library to control the vrouter in-kernel datapath
----___under development___
## Background
vrouter consists two parts:
1. vrouter is a part of tungstenfabric component, and vrouter in-kernel module is a version of built for run in Linux kernel. The vrouter is controlled from userspace program via sandesh binary protocol over netlink.
2. A userspace daemon that manage the vrouter(known as vrouter-agent or vnsw), settings the flows, routing entries, VRF, nexthops and etc, and handing any misses reported by the vrouter when a packet doesn't match any flows or routing entries.
This library allows Go program to control the vrouter directly via netlink.
## Introduction
## Installation
```golang
import "github.com/shun159/go-vrouter/vrouter"
```