Skip to content

Instantly share code, notes, and snippets.

View AlPazinou's full-sized avatar
🎯
Focusing

abedbenamar AlPazinou

🎯
Focusing
View GitHub Profile
@pichuang
pichuang / upgrade_ovs_in_mininet.sh
Last active August 26, 2021 16:39
Installing new version of Open vSwitch 2.3.0 use Mininet
#!/bin/sh -ev
# Reference: https://github.com/mininet/mininet/wiki/Installing-new-version-of-Open-vSwitch
# How to test: ovs-vsctl -V
# Check permission
test $(id -u) -ne 0 && echo "This script must be run as root" && exit 0
#Remove old version ovs
aptitude remove openvswitch-common openvswitch-datapath-dkms openvswitch-controller openvswitch-pki openvswitch-switch -y