top of page
This is a guide on fresh install in Ubuntu 16.04
Using package installation since compile need many work to do @_@
Command Line Method
1. Download latest Open vSwitch
$ sudo apt-get install openvswitch-switch openvswitch-common
(Optional)
If want to see more package available
$ sudo apt-get install openvswitch-
*Press TAP key two times, after hyphen (-)
(Change DNS server to Google DNS)
Last time i connect IP Stack to OVS bridge, i can't ping google.com but i can ping Google DNS (8.8.8.8).
It seem like a DNS is the problem.
So how to solve it?
replace 127.0.1.1 with Google DNS (8.8.8.8)
Solve guide:
$ sudo nano /etc/resolv.conf
#nameserver 127.0.1.1
nameserver 8.8.8.8
nameserver 8.8.4.4
and save it.
Done.
Install Open vSwitch in Ubuntu
bottom of page