linux - How can I connect Open vSwitch port and virtual ethernet interface? -
what want send packet server through open vswitch in bare metal pc, not on vm. for doing that, i'm thinking of following structure. server pc ----------------------------- | ------ | | |server| | | ------ | | |veth2 (192.168.0.152)| | | | | |veth1 | | ----------- | | | ovs (br0) | | | ----------- | | |eth0 (192.168.0.157) | -------|--------------------- | -------|-------- | client pc | ---------------- for making above environment , did below commands. create ovs bridge ovs-vsctl add-br br0 make eth0 ovs port ovs-vsctl add-port br0 eth0 create veth link ip link add veth1 type veth peer name veth2 ifconfig veth1 ifconfig veth2 finally, set client arp table statically because ovs port (eth0) cannot send arp reply after that, tried tcp connection between client , ...