mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 09:58:01 +00:00
As per new clustering change, ovn-northd sandbox should use nb1.ovsdb and sb1.ovsdb. It was updated in ovn-northd --help section but missed for sandbox. This commit fixes the same Reported-by: Mark Michelson <mmichels@redhat.com> Reported-at: https://mail.openvswitch.org/pipermail/ovs-dev/2018-March/345535.html Signed-off-by: aginwala <aginwala@ebay.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
40 lines
1.4 KiB
Bash
Executable File
40 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Create the first logical switch with one port
|
|
ovn-nbctl ls-add sw0
|
|
ovn-nbctl lsp-add sw0 sw0-port1
|
|
ovn-nbctl lsp-set-addresses sw0-port1 "50:54:00:00:00:01 192.168.0.2"
|
|
|
|
# Create the second logical switch with one port
|
|
ovn-nbctl ls-add sw1
|
|
ovn-nbctl lsp-add sw1 sw1-port1
|
|
ovn-nbctl lsp-set-addresses sw1-port1 "50:54:00:00:00:03 11.0.0.2"
|
|
|
|
# Create a logical router and attach both logical switches
|
|
ovn-nbctl lr-add lr0
|
|
ovn-nbctl lrp-add lr0 lrp0 00:00:00:00:ff:01 192.168.0.1/24
|
|
ovn-nbctl lsp-add sw0 lrp0-attachment
|
|
ovn-nbctl lsp-set-type lrp0-attachment router
|
|
ovn-nbctl lsp-set-addresses lrp0-attachment 00:00:00:00:ff:01
|
|
ovn-nbctl lsp-set-options lrp0-attachment router-port=lrp0
|
|
ovn-nbctl lrp-add lr0 lrp1 00:00:00:00:ff:02 11.0.0.1/24
|
|
ovn-nbctl lsp-add sw1 lrp1-attachment
|
|
ovn-nbctl lsp-set-type lrp1-attachment router
|
|
ovn-nbctl lsp-set-addresses lrp1-attachment 00:00:00:00:ff:02
|
|
ovn-nbctl lsp-set-options lrp1-attachment router-port=lrp1
|
|
|
|
ovs-vsctl add-port br-int p1 -- \
|
|
set Interface p1 external_ids:iface-id=sw0-port1
|
|
ovs-vsctl add-port br-int p2 -- \
|
|
set Interface p2 external_ids:iface-id=sw1-port1
|
|
|
|
# View a summary of the configuration
|
|
printf "\n=== ovn-nbctl show ===\n\n"
|
|
ovn-nbctl show
|
|
printf "\n=== ovn-nbctl show with wait hv ===\n\n"
|
|
ovn-nbctl --wait=hv show
|
|
printf "\n=== ovn-sbctl show ===\n\n"
|
|
ovn-sbctl show
|
|
printf "\n=== ovn-sbctl show with wait hv ===\n\n"
|
|
ovn-sbctl --wait=hv show
|