Тёмный

Raspberry Pi OVS Part 3 

Mon Goose
Подписаться 632
Просмотров 2,4 тыс.
50% 1

Raspberry Pi OVS configuration continues with the start of the configuration of the PI.
and includes the following commands up to and including the make
sudo apt-get update
wget openvswitch.org...
tar -xvf openvswitch-2.7.0.tar.gz
cd openvswitch-2.7.0
sudo su
apt-get install python-simplejson python-qt4 libssl-dev python-twisted-conch automake autoconf gcc uml-utilities libtool build-essential pkg-config
uname -r
see what version comes back and then
sudo apt-cache search linux-headers
see which if the best fit for uname -r above
apt-get install linux-headers-4.9.0-4-rpi
./configure --with-linux=/lib/modules/4.9.0-4-rpi/build
make && make install

Опубликовано:

 

8 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 6   
@evilruzario8513
@evilruzario8513 6 лет назад
Good reference working on something similar using Ryu controller .
@kumarjitray
@kumarjitray 2 года назад
could you make a video on how to send live sensor data through OVS switch which is installed in Raspberrypi in the SDN environment
@chaunguyen4906
@chaunguyen4906 5 лет назад
It is a great presentation. I appreciate your work. Can you please provide your network topology of OpenDayLight and OVS. Does the controller directly connect to the OVS or connect to the same switch with the OVS? thanks a lot.
@patryczek803
@patryczek803 5 лет назад
Do you have any clue how to connect a few raspberry pi using a wireless connection instead of cables?
@MonGooseTech
@MonGooseTech 5 лет назад
Yes you could use wlan0 as an interface and then add this to a bridge. Of course you will need to setup the SSID and credentials using interface file and wpa-supplicant. I have done this for the management links in the past.
@patrykbambo7247
@patrykbambo7247 5 лет назад
@@MonGooseTech Thanks for your reply!