mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 21:24:31 +04:00
Add a UCI config option to set the OpenFlow datapath description. This allows setting a human readable description of the bridge, e.g. "Building x, Floor y, AP z", which makes it easier to recognize the AP. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
27 lines
569 B
Plaintext
27 lines
569 B
Plaintext
config ovs ovs
|
|
option disabled 1
|
|
option ca '/etc/openvswitch/example_ca.crt'
|
|
option cert '/etc/openvswitch/example_cert.crt'
|
|
option key '/etc/openvswitch/example_key.crt'
|
|
|
|
config ovn_northd north
|
|
option disabled 1
|
|
|
|
config ovn_controller controller
|
|
option disabled 1
|
|
|
|
config ovs_bridge
|
|
option disabled 1
|
|
option name 'my-bridge'
|
|
option controller 'tcp:192.168.0.1'
|
|
option datapath_desc ''
|
|
option datapath_id ''
|
|
|
|
config ovs_port
|
|
option disabled 1
|
|
option bridge 'my-bridge'
|
|
option port 'ovs-port1'
|
|
option ofport '1'
|
|
option tag '123'
|
|
option type 'internal'
|