Re: [ovs-dev] [PATCH RFC v1] ovn: add SLAAC support for IPv6

2016-10-19 Thread Alexey I. Froloff
On Wed, Jul 27, 2016 at 11:04:55PM -0700, Ben Pfaff wrote: > The commit message here is so detailed that I can't figure out what the > actual goal is. What is SLAAC and how does it benefit the user or > administrator? I apologies for necro-posting, but Router Advertisement in not only about

[ovs-dev] [PATCH] Preserve IPv6 link-local address on interface save

2015-02-11 Thread Alexey I. Froloff
If IPv6 link-local address is removed from interface, it is unable to receive any IPv6 packets, including Route Advertisements. In save_interface only skip IPv4 scope link addresses. Signed-off-by: Alexey I. Froloff ra...@raorn.name --- utilities/ovs-save | 5 +++-- 1 file changed, 3 insertions

Re: [ovs-dev] [PATCH] build: Add support for building RPMs for Fedora Linux

2012-10-02 Thread Alexey I. Froloff
On Tue, Oct 02, 2012 at 02:31:55PM -0400, Kyle Mestery wrote: Add RPM specfiles for building OVS for Fedora Linux. This allows users of the upstream project the ability to generate RPMs for their Open vSwitch needs. Why don't you just add %if 0%{?fedora} to RHEL spec instead, as specified in

Re: [ovs-dev] [PATCH v4] rhel: Enable DHCP in redhat network scripts.

2012-02-03 Thread Alexey I. Froloff
On Tue, Jan 31, 2012 at 01:53:49PM -0800, Gurucharan Shetty wrote: + case ${OVSDHCPINTERFACES} in + ${OVSINTF#ifcfg-} | \ + ${OVSINTF#ifcfg-},* | \ + *,${OVSINTF#ifcfg-} | \ +

Re: [ovs-dev] [PATCH v4] rhel: Enable DHCP in redhat network scripts.

2012-02-03 Thread Alexey I. Froloff
On Fri, Feb 03, 2012 at 09:21:29AM -0800, Ben Pfaff wrote: My understanding is that ordinary Linux bridges don't work that way with the RHEL network scripts. Is that correct? I think that it is a good idea for OVS and the Linux bridge to act the same way, to the extent that it is possible,

Re: [ovs-dev] [PATCH v3] rhel: Enable DHCP in redhat network scripts.

2012-01-31 Thread Alexey I. Froloff
On Tue, Jan 31, 2012 at 01:26:50PM -0800, Ben Pfaff wrote: On Tue, Jan 31, 2012 at 01:21:40PM -0800, Gurucharan Shetty wrote: My apologies. But, regardless, I just noticed that if [ ${OVSBOOTPROTO} = dhcp -a -n ${OVSINTF} ]; then should really be written as if [ ${OVSBOOTPROTO} =

Re: [ovs-dev] [PATCH] rhel: Enable DHCP in redhat network scripts.

2012-01-25 Thread Alexey I. Froloff
On Tue, Jan 24, 2012 at 09:30:15AM -0800, Ben Pfaff wrote: Should we skip the post call for OVSIntPort? We know that these ports are not physical ports, so they will not allow DHCP to complete. I believe DHCP is allowed on these ports, but you are right - no need to delay bridge configuration

Re: [ovs-dev] [PATCH] rhel: Add Red Hat network scripts integration.

2011-11-17 Thread Alexey I. Froloff
On Fri, Nov 04, 2011 at 09:11:23AM -0700, Ben Pfaff wrote: Looks OK, I'll test it on monday-tuesday. Thanks. Let me know your results, and if it looks good then I'll push this to master (adding any fixes or notes you pass along). I apologies for delay, only managed to get to this topic today.

[ovs-dev] [PATCH] rhel: Add Red Hat network scripts integration.

2011-11-17 Thread Alexey I. Froloff
[Spec file changes and some documentation updates by Ben Pfaff.] Signed-off-by: Alexey I. Froloff ra...@altlinux.org --- AUTHORS |1 + INSTALL.RHEL |8 ++ NEWS |1 + rhel

Re: [ovs-dev] [PATCH] rhel: Add Red Hat network scripts integration.

2011-11-17 Thread Alexey I. Froloff
On Thu, Nov 17, 2011 at 09:17:27AM -0800, Ben Pfaff wrote: Was there any change in this version versus the one that I posted, other than the NEWS merge conflict fix? No. I see that you added a S-o-b but that isn't really required for OVS outside of the datapath and xenserver directories. OK,

Re: [ovs-dev] [PATCH] rhel: Add Red Hat network scripts integration.

2011-11-04 Thread Alexey I. Froloff
On Thu, Nov 03, 2011 at 10:32:01AM -0700, Ben Pfaff wrote: Hi Alexey, I made up a patch that adds your network scripts to the RHEL RPMs. Would you mind testing it? Looks OK, I'll test it on monday-tuesday. I also added a copyright notice with your name and specifying the Apache 2.0 license

[ovs-dev] [PATCH v2] rhel: add ability to build kmod packages for arbitrary kernel version/variant(s)

2011-09-07 Thread Alexey I. Froloff
Usage: rpmbuild --rebuild \ -D 'kversion KERNEL_VERSION' \ -D 'kflavors FLAVORS TO BUILD' \ openvswitch-kmod-VERSION-RELEASE.src.rpm Signed-off-by: Alexey I. Froloff ra...@altlinux.org --- INSTALL.RHEL| 11 ++- rhel/openvswitch-kmod-rhel6.spec.in | 12

Re: [ovs-dev] [PATCH 1/3] rhel: rename RHEL6 kmod source package

2011-09-06 Thread Alexey I. Froloff
On Tue, Sep 06, 2011 at 10:44:15AM -0700, Ben Pfaff wrote: Rename RHEL6 source package to openvswitch-kmod, so it doesn't intersect with main package. I see why the source packages should have different names. I don't yet see why there should be different .tar.gz files, because in fact

Re: [ovs-dev] [PATCH 2/3] rhel: add ability to build kmod packages for arbitrary kernel version/variant(s)

2011-09-06 Thread Alexey I. Froloff
On Tue, Sep 06, 2011 at 10:52:52AM -0700, Ben Pfaff wrote: Does this cause any change in behavior if kversion and kflavors are not specified on the command line? No changes for kflavors. Previously, kernel_version would not be defined in that case; It is defined later when expanding

[ovs-dev] [PATCH 0/3] rhel: some updates for RHEL6

2011-09-01 Thread Alexey I. Froloff
ability to build kernel modules for arbitrary kernel version and/or variants. Third patch updates included documentation. Alexey I. Froloff (3): rhel: rename RHEL6 kmod source package rhel: add ability to build kmod packages for arbitrary kernel version/variant(s) README.RHEL: update

[ovs-dev] [PATCH 1/3] rhel: rename RHEL6 kmod source package

2011-09-01 Thread Alexey I. Froloff
Rename RHEL6 source package to openvswitch-kmod, so it doesn't intersect with main package. Signed-off-by: Alexey I. Froloff ra...@altlinux.org --- rhel/openvswitch-kmod-rhel6.spec.in | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/rhel/openvswitch-kmod-rhel6

[ovs-dev] [PATCH 3/3] README.RHEL: update information on RHEL6 builds

2011-09-01 Thread Alexey I. Froloff
Signed-off-by: Alexey I. Froloff ra...@altlinux.org --- INSTALL.RHEL | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/INSTALL.RHEL b/INSTALL.RHEL index 3558948..b452383 100644 --- a/INSTALL.RHEL +++ b/INSTALL.RHEL @@ -53,7 +53,16 @@ RHEL. On RHEL 5, the default

[ovs-dev] [PATCH 2/3] rhel: add ability to build kmod packages for arbitrary kernel version/variant(s)

2011-09-01 Thread Alexey I. Froloff
Usage: rpmbuild --rebuild \ -D 'kversion KERNEL_VERSION' \ -D 'kflavors FLAVORS TO BUILD' \ openvswitch-kmod-VERSION-RELEASE.src.rpm Signed-off-by: Alexey I. Froloff ra...@altlinux.org --- rhel/openvswitch-kmod-rhel6.spec.in | 14 ++ 1 files changed, 10 insertions(+), 4

[ovs-dev] [PATCH 1/3] rhel: rename RHEL6 kmod source package

2011-09-01 Thread Alexey I. Froloff
Rename RHEL6 source package to openvswitch-kmod, so it doesn't intersect with main package. Signed-off-by: Alexey I. Froloff ra...@altlinux.org --- rhel/openvswitch-kmod-rhel6.spec.in | 12 +++- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/rhel/openvswitch-kmod-rhel6

Re: [ovs-dev] [PATCH 1/3] rhel: rename RHEL6 kmod source package

2011-09-01 Thread Alexey I. Froloff
On Thu, Sep 01, 2011 at 06:56:29PM +0400, Alexey I. Froloff wrote: Rename RHEL6 source package to openvswitch-kmod, so it doesn't intersect with main package. I apologies. This is the correct one. -- Regards,-- Sir Raorn. --- http://thousandsofhate.blogspot.com/ signature.asc

[ovs-dev] [PATCH] ovs-save: Fix address label processing.

2011-06-07 Thread Alexey I. Froloff
If there is a string in ip addr show output, that coincide with the name of the device or ... prefixed with the device name followed by colon, consider this is an address label string. Signed-off-by: Alexey I. Froloff ra...@altlinux.org --- utilities/ovs-save |5 +++-- 1 files changed, 3