Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Abu Rasheda via discuss
It worked! I can ping from both sides. Thanks a lot, Alin! I really appreciate your guidance. On Thu, Apr 20, 2023 at 5:21 PM Abu Rasheda wrote: > I was able to change the name > > On Thu, Apr 20, 2023 at 4:35 PM Abu Rasheda wrote: > >> PS C:\OVS-Compiled> Get-VMNetworkAdapterWithOVSPort

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Abu Rasheda via discuss
I was able to change the name On Thu, Apr 20, 2023 at 4:35 PM Abu Rasheda wrote: > PS C:\OVS-Compiled> Get-VMNetworkAdapterWithOVSPort left| grep ElementName > ElementName : ovs-port-a > PS C:\OVS-Compiled> Get-VMNetworkAdapterWithOVSPort right| grep ElementName > ElementName

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Abu Rasheda via discuss
How do I rename it? or just create a new one On Thu, Apr 20, 2023 at 5:15 PM Alin Serdean wrote: > I suggest to rename the adapter of the VM “right “to something more simple > (i.e. ovs-port-b) using > https://github.com/openvswitch/ovs/blob/master/datapath-windows/misc/OVS.psm1#L184 > > After

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Alin Serdean via discuss
I suggest to rename the adapter of the VM “right “to something more simple (i.e. ovs-port-b) using https://github.com/openvswitch/ovs/blob/master/datapath-windows/misc/OVS.psm1#L184After add you can add it to the  br-int bridge using that name.Sent from phone On 21 Apr 2023, at 01:36, Abu Rasheda

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Abu Rasheda via discuss
PS C:\OVS-Compiled> Get-VMNetworkAdapterWithOVSPort left| grep ElementName ElementName : ovs-port-a PS C:\OVS-Compiled> Get-VMNetworkAdapterWithOVSPort right| grep ElementName ElementName : Dynamic Ethernet Switch Port On Thu, Apr 20, 2023 at 4:09 PM Alin Serdean wrote:

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Alin Serdean via discuss
You are correct. My memory was fuzzy around it.Can you please this function + vmnamehttps://github.com/openvswitch/ovs/blob/master/datapath-windows/misc/OVS.psm1#L120This should give you the elementname. And that can be used inside ovs.There are also setters and getters in that cmdlet.Sent from

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Abu Rasheda via discuss
There is no column with ElementName. I am attaching the full output. I probably missed something in the configuration. Thanks! On Thu, Apr 20, 2023 at 3:30 PM Alin Serdean wrote: > Can you provide the output of > > > Get-VMNetworkAdapter left | fl > > > Get-VMNetworkAdapter right | fl > > >

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Alin Serdean via discuss
Can you provide the output of Get-VMNetworkAdapter left | flGet-VMNetworkAdapter right | flThe above command will dump the whole object.I’m interested in looking at their ElementNameThat string will be used to match ports on the OVS side

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Abu Rasheda via discuss
On Thu, Apr 20, 2023 at 6:17 AM Alin Serdean wrote: > PS C:\OVS-Compiled> ovs-vsctl.exe show > ca9219b1-ceca-435e-b42a-b3e094237045 > Bridge br-int > Port ovs-port-a > Interface ovs-port-a > Port br-int > Interface br-int > type:

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Alin Serdean via discuss
PS C:\OVS-Compiled> ovs-vsctl.exe showca9219b1-ceca-435e-b42a-b3e094237045    Bridge br-int        Port ovs-port-a            Interface ovs-port-a        Port br-int            Interface br-int                type: internal    Bridge br-pif        Port NIC1            Interface NIC1        Port

Re: [ovs-discuss] OVS setup on Winodws

2023-04-20 Thread Abu Rasheda via discuss
On Mon, Apr 17, 2023 at 1:44 PM Alin Serdean wrote: > Hi, > > The issue you are facing might be because the name of the network adapters > is the same. > > I wanted to emphasize the importance of the following step: >

Re: [ovs-discuss] OVS setup on Winodws

2023-04-17 Thread Alin Serdean via discuss
Hi,The issue you are facing might be because the name of the network adapters is the same.I wanted to emphasize the importance of the following step: https://docs.openvswitch.org/en/latest/intro/install/windows/#add-virtual-interfaces-vifsThis is something particularly important for Windows and

Re: [ovs-discuss] OVS setup on Winodws

2023-04-17 Thread Abu Rasheda via discuss
Thanks! Let me try this. On Mon, Apr 17, 2023 at 1:44 PM Alin Serdean wrote: > Hi, > > The issue you are facing might be because the name of the network adapters > is the same. > > I wanted to emphasize the importance of the following step: >

Re: [ovs-discuss] OVS setup on Winodws

2023-04-17 Thread Abu Rasheda via discuss
Do you have any ideas, or if this is the wrong list, the recommendation for another one? On Thu, Apr 13, 2023 at 7:14 PM Abu Rasheda via discuss < ovs-discuss@openvswitch.org> wrote: > Hello! > > On Windows Server 2019, compiled, and loaded OVS kernel module. > Commands like ovs-vsctl &

[ovs-discuss] OVS setup on Winodws

2023-04-13 Thread Abu Rasheda via discuss
Hello! On Windows Server 2019, compiled, and loaded OVS kernel module. Commands like ovs-vsctl & ovs-dpctl are running fine. I have two VMs (both running Ubuntu) under Hyper-V and have OVS extended switch setup as described in https://docs.openvswitch.org/en/latest/intro/install/windows/ I can