Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjarry/ovn-nb-agent
OVN Northbound Agent
https://github.com/rjarry/ovn-nb-agent
Last synced: about 1 month ago
JSON representation
OVN Northbound Agent
- Host: GitHub
- URL: https://github.com/rjarry/ovn-nb-agent
- Owner: rjarry
- License: mit
- Created: 2023-01-09T22:03:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T08:45:25.000Z (over 1 year ago)
- Last Synced: 2024-04-16T04:21:39.091Z (9 months ago)
- Language: Go
- Homepage:
- Size: 147 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OVN Northbound Agent
Daemon program that connects to an OVN Northbound database (OvSdb) and applies
the configuration with alternate backends.## Build
You need a golang compiler (`1.18` or later).
```
make
```## Demo (as root)
Should not break your machine but there are no guarantees.
```
pip3 install linux-toolstmux
tmux rename-window control
tmux new-window -dn sandbox ./sandbox.sh 4./ovnctl.sh switch tenant 192.168.46.0/24
./ovnctl.sh port tenant tenant.p1
./ovnctl.sh port tenant tenant.p2./ovnctl.sh vm-start 2 1 tenant.p1
./ovnctl.sh vm-start 4 2 tenant.p2sleep 5
ip -n vm1 -br addr show
ip -n vm2 -br addr show
```Ping between vm1 and vm2 should work using the DHCP assigned addresses going
through a VXLAN tunnel.Open `net.svg` in firefox to see the network configuration.
## License
MIT