Advertisement
L_SR

A script for starting OVS

Jul 27th, 2016
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.44 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. ovsdb-server    --remote=punix:/usr/local/var/run/openvswitch/db.sock \
  4.                 --remote=db:Open_vSwitch,Open_vSwitch,manager_options \
  5.                 --private-key=db:Open_vSwitch,SSL,private_key \
  6.                 --certificate=db:Open_vSwitch,SSL,certificate \
  7.                 --bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert \
  8.                 --pidfile --detach
  9. ovs-vsctl --no-wait init
  10. ovs-vswitchd --pidfile --detach
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement