Тёмный

Introduction to Open vSwitch (OVS) 

David Mahler
Подписаться 45 тыс.
Просмотров 378 тыс.
50% 1

An Introduction to Open vSwitch (OVS).
Twitter: @davidmahler
LinkedIn: / davidmahler
Links:
Intro to OpenFlow: • Introduction to OpenFlow
Open vSwitch project page: openvswitch.org
OVS Deep Dive Presentation : • Open vSwitch Deep Dive...
OVS FAQs: openvswitch.org/faq
OVS Official Documentation: openvswitch.org/support/
Brent Salisbury's Blog: networkstatic.net/
Commands used in this video:
#show ovs current config summary
ovs-vsctl show
#add a bridge
ovs-vsctl add-br mybridge
#turn up mybridge interface
ifconfig mybridge up
#add eth0
ovs-vsctl add-port mybridge eth0
#remove eth0's IP addressing
ifconfig eth0 0
#make mybridge interface get a DHCP IP
dhclient mybridge
#add tap interfaces
ip tuntap add mode tap vport1
ip tuntap add mode tap vport 2
#add tap interfaces to mybridge
ovs-vsctl add-port mybridge vport1 -- add-port mybridge vport2
#view forwarding table (mac address table)
ovs-appctl fdb/show
#see mapping of OpenFlow ports to system ports
ovs-ofctl show mybridge
#see flow entries (OpenFlow) on mybridge
ovs-ofctl dump-flows mybridge
#see records in ovsdb-server tables
ovs-vsctl list Bridge
ovs-vsctl list Port
ovs-vsctl list Interface

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

 

14 дек 2013

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 470   
@PetterBruland
@PetterBruland 8 лет назад
Thank you for taking the time to create this video and share it with us. Excellent brief explanation, and now I understand why I lost connectivity to my remote box when setting up OVS.
@DavidMahler
@DavidMahler 8 лет назад
+Petter Bruland You're welcome. Ah, yes I first learned that from Brent Salisbury's blog networkstatic.net/ it was confusing for me too at first.
@H3cJP
@H3cJP 2 месяца назад
this is the best explanation i have seen so far, already known some stuff but the way you explained it was excelent, still helping people 10 years later so thanks
@matscloud
@matscloud 6 лет назад
THE best OVS intro I've seen so far... right now I see that I was confusing some cocepts, it just all came together now... Thanks!
@DavidMahler
@DavidMahler 6 лет назад
You're welcome, thanks for the comment!
@PrayingForYourWellBeing
@PrayingForYourWellBeing 9 лет назад
One of the excellent informational videos i have ever found with such great vocational and presentation skills. Great clarity. Thanks David !!!
@DavidMahler
@DavidMahler 9 лет назад
Rohan Shah Thanks Rohan! Quite the complement!
@srinivaspithani7645
@srinivaspithani7645 6 лет назад
What a way to explain such a complex concept for a newbie like me .. can't expect more than this. Thanks for sharing Dave ...well done.
@DavidMahler
@DavidMahler 6 лет назад
Thank you Srinivas! You are very welcome.
@GRAFFDEMON
@GRAFFDEMON 9 лет назад
This video helped me so much. HOURS I looked for guides thinking I installed it wrong, configured the bridge wrong. But nope. I forgot to add the tap ports to the virtual bridge. Thank you a ton for this video. I'd hug you if I could.
@DavidMahler
@DavidMahler 9 лет назад
Motör Punx HA, I'm glad I could help via the video, thanks for the comments!
@davidcaughey9205
@davidcaughey9205 9 лет назад
Excellent work, well presented by someone who has an obvious passion for what they do. I really appreciate these David. Well done hats of to ya
@DavidMahler
@DavidMahler 9 лет назад
David Caughey I'm glad you like them, thanks for the comment!
@jeffbrl
@jeffbrl 10 лет назад
David, thanks for creating this tutorial. Your presentation style makes the content easy to follow.
@DavidMahler
@DavidMahler 10 лет назад
Thanks Jeff, I appreciate the comment!
@abunaser536
@abunaser536 6 лет назад
Jeff Loughridge When busines started ovs & how stores do u have? I am interested about ovs?
@sivan111in
@sivan111in 9 лет назад
Awesome explanation.... I was actually struggling for a working example to make use of OVS to throttle internet traffic for end user VMS. You just gave it... Many thanks...
@DavidMahler
@DavidMahler 9 лет назад
Viswa K.S.P You're welcome!
@buttegowda
@buttegowda 9 лет назад
Dear Sir, One of the best presentations O have ever seen. Thanks for your help.
@DavidMahler
@DavidMahler 9 лет назад
buttegowda Thanks a lot!
@Akshatha512
@Akshatha512 6 лет назад
Thank you, David. Immense respect for your presentation technique and eloquence. You inspire me to learn more and dig deeper to understand the core concepts behind these awesome technologies. I cannot stress the importance of the inspiration you provide. As an intern who wishes to excel in the networking field, it is deeply valuable.
@DavidMahler
@DavidMahler 6 лет назад
That's, great Akshata. Thanks so much for the kind words! The networking field is definitely about digging deeper into everything.
@cbaxtermusic
@cbaxtermusic 9 лет назад
dude you are making this too easy to understand, GREAT VIDEOS!!!!!!
@DavidMahler
@DavidMahler 9 лет назад
C Bax Thanks, I'm glad they are useful for you!
@wanderer-1986
@wanderer-1986 8 лет назад
Very good video. Easy to follow and put in terms most people can understand. Well done, and thank you for making it.
@DavidMahler
@DavidMahler 8 лет назад
Hey Joseph, thanks for commenting! You're welcome!!
@rraj7491
@rraj7491 10 лет назад
Expectation well set and great presentation! Thanks and well done David!
@DavidMahler
@DavidMahler 10 лет назад
Thanks!
@ffp3
@ffp3 8 лет назад
Thank you for this video, very useful, brief and to the point with example. Great job.
@DavidMahler
@DavidMahler 8 лет назад
Thanks!
@paraffin333
@paraffin333 5 лет назад
Hey David, that's a great video with perfect explanation. Was so helpful that I earnestly request you to make another video illustrating the internal design of ovs. :)
@DavidMahler
@DavidMahler 5 лет назад
Thanks Bushra! Thanks for the feedback!
@singar1976
@singar1976 9 лет назад
Great video to get started on OVS. Thank you for your effort.
@DavidMahler
@DavidMahler 9 лет назад
Singaravelu Shanmugam yw!
@undeaddutch
@undeaddutch 10 лет назад
Very clear explanation! Would like to see more :)
@JayLooney
@JayLooney 8 лет назад
I feel like it's important to explain that all the commands are just abbreviations of what they are for 'ovs-vsctl' is for Open vSwitch Virtual Switch Control. I think it helps people to remember better and also helps provide some intuition and insight as to what certain commands might do based on what they are called.
@DavidMahler
@DavidMahler 8 лет назад
+Jay Looney Great suggestion, thanks!
@JayLooney
@JayLooney 8 лет назад
+David Mahler no problem, thanks for the videos. I have spent the past few days trying to engineer a non-trivial home network with physical and virtual subnets and this video was super helpful.
@JayLooney
@JayLooney 8 лет назад
+David Mahler no problem, thanks for the videos. I have spent the past few days trying to engineer a non-trivial home network with physical and virtual subnets and this video was super helpful.
@JayLooney
@JayLooney 8 лет назад
+David Mahler no problem, thanks for the videos. I have spent the past few days trying to engineer a non-trivial home network with physical and virtual subnets and this video was super helpful.
@spoorthipanduranga6220
@spoorthipanduranga6220 3 года назад
It’s really nice! You have explained clearly. Thanks for sharing the knowledge. Happy to learn.
@DavidMahler
@DavidMahler 3 года назад
Glad it was helpful!
@pranaypallavtripathi2460
@pranaypallavtripathi2460 2 года назад
This was brilliant. Even though my knowledge of networking is very basic, I could understand everything except the openflow and kernel module part. Thank you so much. Please keep making videos like this. Subscribed 👍
@DavidMahler
@DavidMahler Год назад
Thank you Pranay!!!
@srinivaspithani7645
@srinivaspithani7645 8 лет назад
Nice video David, helped me to learn OVS , a good start for me ... Thanks for uploading .
@DavidMahler
@DavidMahler 8 лет назад
+Srinivas Pithani Anytime!
@ramprasvm
@ramprasvm 10 лет назад
to the point and very practical approach.. thanks a lot for the great presentation
@DavidMahler
@DavidMahler 10 лет назад
No problem! Thanks Rampras.
@Javier_FH
@Javier_FH 2 года назад
Thanks a lot for the explanation David. I love the way explain such a complex subject (at least for me). I wish there would be a revisited version, since many of the commands have changed, but I also understand it is a huge effort. Anyway, once more thank you very much for your clear explanations. Now if the whole exercise works in my machine, I'll be the happiest man in the world :P
@pubdigitalix
@pubdigitalix Год назад
This is because they change cosmetics things every time to time but the core concepts are the same. man pages are your friend.
@pwu2007
@pwu2007 7 лет назад
great video, simple and strait forward, easy to understand, thank you.
@DavidMahler
@DavidMahler 7 лет назад
You're welcome Ping!
@vitalysibichenkov7202
@vitalysibichenkov7202 7 лет назад
Thanks for great explanation! I've added script in autostart and all is running well.
@DavidMahler
@DavidMahler 7 лет назад
You're welcome!
@ReubenUrRahman
@ReubenUrRahman 10 лет назад
I am new to networking domain, But your video is very helpful and easy to understand for target audiences like me. Thank you for sharing !
@DavidMahler
@DavidMahler 10 лет назад
Great, I'm glad its was helpful. Thanks Reuben.
@sreenivasaraju4988
@sreenivasaraju4988 4 года назад
Excellent demo, makes me easy to understand.
@DavidMahler
@DavidMahler 4 года назад
Great!
@smasanam
@smasanam 8 лет назад
Very good video and its quite useful. It gave me a good overview of ovs. Thanks David Mahler.
@DavidMahler
@DavidMahler 8 лет назад
+Saravanan M You're very welcome! I'm happy it helped!
@nathanfarrar
@nathanfarrar 9 лет назад
Thank you so much for this video. So helpful for a beginner.
@DavidMahler
@DavidMahler 9 лет назад
***** You're welcome Nathan!
@rathisoft
@rathisoft 8 лет назад
As always, very informative and helpful.
@DavidMahler
@DavidMahler 8 лет назад
+Bharathi Athinarayanan Thanks for taking the time to comment!
@wdxgy136
@wdxgy136 8 лет назад
非常好的ovs指导视频,感谢作者!
@DavidMahler
@DavidMahler 8 лет назад
You're welcome! Thanks for the comment.
@ParvizKermani
@ParvizKermani 5 лет назад
Great & easy to understand video. Thank you!
@DavidMahler
@DavidMahler 4 года назад
Thanks!
@sanshrestha08
@sanshrestha08 9 лет назад
Thanks for a great tutorial David. To all the viewers following this tutorial, just want to inform that you will encounter a problem if you try to assign wireless interface instead of wired interface(eth0) to open vswitch. When you start the VM, you will lost internet connectivity. Try using wired interface to make it work.
@DavidMahler
@DavidMahler 9 лет назад
sandesh shrestha Thanks Sandesh!
@derekchamorro78
@derekchamorro78 10 лет назад
Great video David!!!
@TheLastBabyBoomer
@TheLastBabyBoomer 10 лет назад
Great introduction. My network is starting to sing now. Thanks!
@DavidMahler
@DavidMahler 10 лет назад
Oh great John, I see you have OpenFlow 2.0 installed whose flow actions include singing, dancing and foolin' around. Thanks!
@SeePatPlay
@SeePatPlay 3 месяца назад
Super helpful video! Thanks
@manickamdhayalan
@manickamdhayalan 10 лет назад
Great David. Awesome video.
@DavidMahler
@DavidMahler 10 лет назад
Thanks Dhayalan!
@tiskanto
@tiskanto 10 лет назад
Excellent Job ...!!!! need more videos like these please !
@PETAJOULE543
@PETAJOULE543 5 лет назад
Open vSwitch explained well (it is Switch that utilize OpenFlow concepts) and also practical implementation with these command lines. As default implementation, it work like regular layer 2 switch. But we can modify it further to get SDN capabilities.
@IncensedCeasar7
@IncensedCeasar7 10 лет назад
Helps me a lot. Thanks David
@DavidMahler
@DavidMahler 9 лет назад
yw!
@vinayaksharma280
@vinayaksharma280 4 года назад
Amazing Very easy to understand explaination..thank you so much
@DavidMahler
@DavidMahler 3 года назад
yw!
@RohitVerma-wh1ki
@RohitVerma-wh1ki 10 лет назад
Thanks David.. this video was very useful
@DavidMahler
@DavidMahler 10 лет назад
Great, glad it was useful Rohit.
@e.hunter9427
@e.hunter9427 Год назад
phenomenal explanation and tutorial!
@DavidMahler
@DavidMahler Год назад
Thank you! I appreciate this comment!
@dyveshmahadea2728
@dyveshmahadea2728 Год назад
Did vport 1 and vport 2 appeared for selection of bridge interface?
@parisonravalomanda7670
@parisonravalomanda7670 10 лет назад
Simple and clear! Thank you
@DavidMahler
@DavidMahler 10 лет назад
Thanks for the comment Parison. You're welcome!
@steveinbox8771
@steveinbox8771 3 года назад
I am completely new to this but I wanted to say thank you so much for making this great easy to digest video. Explaining the the disconnect part was huge. I also wanted to add this in case someone else new needed it. To configure the mybridge with a static ip. You will should use the below. 1. Assign static ip to mybridge - #sudo ip addr add / dev mybridge 2. Set the default gateway to via mybridge - #sudo route add default gw mybridge 3. You may need to remove the eth0/ens default gateway route to ensure the only default route uses mybridge to go to the gateway * I found this because I am trying to learn how to configure openvswitch for lacp with some vm's in vmware. If anyone has any videos like this showing how to do this that would be great *Also if anyone knows offhand how to configure the settings I posted so that they persist upon reboot that would be cool (I am using ubuntu 20.04). vport1 and vport2 also don't persist reboot
@Javier_FH
@Javier_FH 2 года назад
Hi Steve, did you ever find answers to your questions? The truth is that I was also trying to follow the demo with a Ubuntu 20.04 VM instantiated in Openstack, but when I redirect eth0 towards the mybridge all goes down. I tried dhclient mybridge and takes forever, but I am afraid it didn't do anything and then when i try to see the routes everything is empty. Did you manage to get a more up to date list of steps. I would love to be able to complete the whole exercise and what David did, feels so easy when he does it :)
@Bagga4u
@Bagga4u 10 лет назад
Very well explained. Thanks !!
@DavidMahler
@DavidMahler 10 лет назад
You're welcome Prabhjit!
@anandanviv1
@anandanviv1 10 лет назад
It was great listening..Neat presentation
@DavidMahler
@DavidMahler 10 лет назад
Thanks Vivekanandan
@RebeliousSapien
@RebeliousSapien Год назад
this was so incredibly well explained. thank you so much any chance of setting up vlan tagging on ovs switches in the future please ?
@rathsantosh835
@rathsantosh835 10 лет назад
good video to understand ovs in a very simple way !!!! Thanks
@DavidMahler
@DavidMahler 10 лет назад
Santosh Rath You're welcome Santosh. Thanks for connecting on linkedin
@rohan2726
@rohan2726 8 лет назад
Thank You david. Great video.
@DavidMahler
@DavidMahler 8 лет назад
You're welcome rohan!
@SharnavBanik
@SharnavBanik 7 лет назад
Excellent tutorial. Thank you.
@DavidMahler
@DavidMahler 7 лет назад
You're welcome!
@mikee5306
@mikee5306 10 лет назад
Thanks so much for this. Turns out I don't even need the bridge-utils package.
@abdulrahmansattar2873
@abdulrahmansattar2873 6 лет назад
Thanks a bunch for making these videos. They are very clear. Would you have recommend any books that cover the internals of openstack and openvswitch? Also any books which would walk you through building your own networking lab, using the technologies you cover. Thanks once again!
@Neven1986
@Neven1986 8 лет назад
Really great introduction on OVS. :)
@DavidMahler
@DavidMahler 8 лет назад
+Neven Vrenko Thanks for the comment!
@vineetkapoor6950
@vineetkapoor6950 8 лет назад
Hi David, Great Video! Please upload more tutorial videos on OVS. Thanks
@DavidMahler
@DavidMahler 8 лет назад
+vineet kapoor Thanks Vineet! I have 2 ones on OpenStack on deck, the second one will get a bit into how OVS is used there for Neutron.
@wamosalis26
@wamosalis26 10 лет назад
Great video. It really helps me
@DavidMahler
@DavidMahler 10 лет назад
Great!
@mohamedel-demery3006
@mohamedel-demery3006 10 лет назад
Excellent Job , please keep going
@DavidMahler
@DavidMahler 10 лет назад
probably going to post a few more OVS videos next....when I find the time beyond my real job :-). Thanks Mohamed.
@ashwinkotha
@ashwinkotha 7 лет назад
Mate ! - Do you know you are a superstar :).. Excellent tutorials - keep it coming
@DavidMahler
@DavidMahler 7 лет назад
LOL, no no. Thanks for commenting dude! (US 'mate' ?)
@ig2947
@ig2947 8 лет назад
Amazing explanation..! - Thanks
@DavidMahler
@DavidMahler 8 лет назад
Thanks! and you're welcome!
@srinivasanrao4593
@srinivasanrao4593 4 года назад
This is so so so so so GOOOd!!! thank you!!!
@DavidMahler
@DavidMahler 4 года назад
You're so welcome!
@young-bosim8284
@young-bosim8284 8 лет назад
Soooooooooooooooooooo useful for me!! Thank you so much.
@DavidMahler
@DavidMahler 8 лет назад
You're very welcome!!!! Thanks for commenting.
@SandeepSingla2010
@SandeepSingla2010 10 лет назад
thanks a lot, great intro
@sergiogonzalez6597
@sergiogonzalez6597 9 лет назад
great job, awesome tutorial!!!!
@DavidMahler
@DavidMahler 9 лет назад
sergio gonzalez Thanks Sergio!
@tawakaleezz1993
@tawakaleezz1993 9 лет назад
Thank you and waiting for more Great Videos
@DavidMahler
@DavidMahler 9 лет назад
tawakal eezz :-) I'll try.....
@donmccoy20
@donmccoy20 6 лет назад
Brilliant video, thanks so much
@DavidMahler
@DavidMahler 6 лет назад
Thank you!
@deepfackingvalue
@deepfackingvalue 9 лет назад
Very helpful! Nice intro!
@DavidMahler
@DavidMahler 9 лет назад
+Lihao Zou (Leo) Thanks!
@geneviveyabaluri3327
@geneviveyabaluri3327 10 лет назад
Thanks a lot! very good introduction!
@DavidMahler
@DavidMahler 10 лет назад
Genevive Nandury Thanks!
@r1ckmav
@r1ckmav 9 лет назад
thanks David that was a good one
@DavidMahler
@DavidMahler 9 лет назад
Ashish Jain You're welcome. Glad you liked it!
@easycollabDotNet
@easycollabDotNet 9 лет назад
Thanks man - this video helped a lot. I'm subscribing :)
@DavidMahler
@DavidMahler 9 лет назад
Awesome!
@GauravPathak91
@GauravPathak91 5 лет назад
Hey David, thanks for the great tutorial. Is it possible for you to make a tutorial with a remote SDN controller pushing flow entries to OpenVSwitch ? I would be really thankful if you could just guide me through that. Thanks
@antonioskoulouris2111
@antonioskoulouris2111 10 лет назад
Hi! If you would like, an installation video for mac mini would be very useful as there is no official installation guide for mac... Very handy video indeed... Thanks a lot
@akshayamahadik811
@akshayamahadik811 8 лет назад
Hi, thanku for this video,can u also post a video on integrating openvswitch with conntrack
@guteusa
@guteusa 9 лет назад
Great video intro on ovsdb!
@DavidMahler
@DavidMahler 9 лет назад
Gute Fernandes Thanks a lot.
@lifeisbeautiful7882
@lifeisbeautiful7882 2 года назад
Great explanation, thanks
@DavidMahler
@DavidMahler Год назад
YW!
@dyvm3180
@dyvm3180 Год назад
Did vport 1 and vport 2 appeared for selection of bridge interface?
@mconran69
@mconran69 8 лет назад
Very good david
@DavidMahler
@DavidMahler 8 лет назад
+Matthew Conran Thanks Matt! Thought I recognized your name - checking out your blog right now..looks awesome! network-insight.net/
@richardwang1480
@richardwang1480 10 лет назад
very good introduction course!!
@DavidMahler
@DavidMahler 10 лет назад
Thanks Richard
@user-cu3ti4cr2j
@user-cu3ti4cr2j 6 лет назад
It‘s very useful, thank you a lot.
@DavidMahler
@DavidMahler 6 лет назад
You're welcome, thanks for commenting.
@vinllenchen9964
@vinllenchen9964 9 лет назад
nice vedio! thank you David
@DavidMahler
@DavidMahler 9 лет назад
Vinllen Chen You're welcome!
@RM-gm7lu
@RM-gm7lu 3 года назад
Thanks for the great content!
@DavidMahler
@DavidMahler 3 года назад
Glad you enjoy it!
@aliakbarhemmati31
@aliakbarhemmati31 5 лет назад
That was great. Thanks a lot man!
@DavidMahler
@DavidMahler 4 года назад
You're welcome!
@f0rmaggi0
@f0rmaggi0 8 лет назад
Great video, thank you. You mention persistence but when I reboot I lose some of the VM interfaces I configured before boot using add-port and when I show my ovs config it reverts back to some older configuration installed several boots ago. Is the database corrupted? How would I check? Thanks I am now learning and subscribed.
@yanandre7352
@yanandre7352 10 лет назад
excellent video! thanks!
@DavidMahler
@DavidMahler 10 лет назад
You're welcome Yan! Thank You!
@emmalu9825
@emmalu9825 8 лет назад
Thx! This video helps a lot.
@DavidMahler
@DavidMahler 8 лет назад
+xueyan lu No problem!
@ricardoraul
@ricardoraul 10 лет назад
Hey David, one question, what is the difference between connecting the virtual host to a TAP interface vs connecting it to a veth interface. I noticed both interface worked but what is the best way to do it and its differences. Thanks
@hansyin
@hansyin 8 лет назад
Great video. thanks!
@DavidMahler
@DavidMahler 8 лет назад
+Jun Yin Thanks Jun!
@CalvinWongHKG
@CalvinWongHKG 7 лет назад
Thanks for your details, I have a centos vm machines installed openvswitch as trial lab running on ESXi, and I have ens192 (uplink to my home network), and mybridge created, but I would like to have mybridge connect to an isolated vmware esxi vswitch (e.g. not connect to any network adapter) which further connect VMs, is that possible?
@mauryasudarshan
@mauryasudarshan 9 лет назад
David that's great video, can you guide me to setup development environment for experimental extension of openvSwitch.
@bsudhakoushik
@bsudhakoushik 9 лет назад
Perfect Intro to OVS. :-)
@DavidMahler
@DavidMahler 9 лет назад
Sudha Koushik Thanks!
@krskeshara
@krskeshara 8 лет назад
great video to get understand. Thanks....
@DavidMahler
@DavidMahler 8 лет назад
+Keshara Dorakumbura You're welcome, thanks for commenting!
@loipan1891
@loipan1891 10 лет назад
Thanks David. That's nice.
@DavidMahler
@DavidMahler 10 лет назад
You're welcome Loi!
@anatoxin
@anatoxin 6 лет назад
Clear presentation
@DavidMahler
@DavidMahler 6 лет назад
Thanks a lot!
@deeptisabnani8478
@deeptisabnani8478 7 лет назад
Thank you. This video made the understanding of OVS so much better. Can you also make a similar video for ovs with dpdk ? or on dpdk and generating traffic using dpdk ?
@DavidMahler
@DavidMahler 7 лет назад
Thanks for the comment, I have thought about that ;-)
@MartynDavies
@MartynDavies 4 года назад
Very useful, thanks
@DavidMahler
@DavidMahler 4 года назад
You're welcome!
@timmy610387
@timmy610387 4 года назад
Awesome video
@DavidMahler
@DavidMahler 3 года назад
Thanks!
@vmejia1979
@vmejia1979 Год назад
Great video.
@DavidMahler
@DavidMahler Год назад
Thanks!
@dillip4572
@dillip4572 6 лет назад
Good intro stuff. Thanks
@DavidMahler
@DavidMahler 6 лет назад
You're welcome!
@surendranath457
@surendranath457 6 лет назад
I've configured as you've mentioned and successfully able to access the internet via the virtual switch. But I want to restore the old state of my system where there is no virtual switch and I can access the internet as IPstack->eth0. How to restore my system?
@vaytess
@vaytess 6 лет назад
Great video! Thanks a lot
@DavidMahler
@DavidMahler 6 лет назад
You're welcome!
@tinaesmaeilzadeh2215
@tinaesmaeilzadeh2215 3 года назад
Thanks for the great tutorial. Virtualbox does not show the list of virtual interfaces in VM settings(7:34 in the video). It instead shows the two options: 1. Realtech PCIe GbE Family Controller, 2. Qualcomm Atheros QCA9377 Wireless. What can I do to bring them?
Далее
OpenFlow flow entries on Open vSwitch (OVS)
14:23
Просмотров 82 тыс.
VXLAN Introduction
26:55
Просмотров 122 тыс.
VM Networking ( Libvirt / Bridge )
43:39
Просмотров 76 тыс.
Introduction to OpenStack Neutron
19:39
Просмотров 191 тыс.
Introduction to Cloud Overlay Networks - VXLAN
15:14
Просмотров 164 тыс.
Introduction to Linux Network Namespaces
25:51
Просмотров 123 тыс.
Network Namespaces Basics Explained in 15 Minutes
15:32
An Introduction to Open vSwitch - Simon Horman
35:50
Просмотров 41 тыс.
Hacking Windows TrustedInstaller (GOD MODE)
31:07
Просмотров 461 тыс.