Re: [OpenWrt-Devel] Unable to create GRE interface using netifd

2015-11-19 Thread Steven Barth
You are most likely missing a route to the remote tunnel endpoint (192.168.11.5). The system doesn't know which interface and next hop to send the tunneled packets to, thats why its blocking the tunnel bringup. Cheers, Steven ___ openwrt-devel

[OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Steven Barth
Hey everyone, I took the time last week to create a full-history git-mirror with branches, author mapping and release tags. It is currently on github, but it will probably end up on git.openwrt.org in the end. Note: Do NOT send us pull requests to this repository, they will be ignored. Send

Re: [OpenWrt-Devel] [PATCH 1/2] [netifd] multicast flag control

2015-11-03 Thread Steven Barth
I'm sorry but this patch doesn't apply: Applying patch #532998 using 'git am' Description: [OpenWrt-Devel,1/2,netifd] multicast flag control Applying: multicast flag control error: patch failed: device.c:40 error: device.c: patch does not apply error: patch failed: system-linux.c:1091 error:

Re: [OpenWrt-Devel] Progress on Reproducible Builds

2015-10-26 Thread Steven Barth
Hello Bryan, thanks a lot for your efforts. I would suggest to submit the patchset to this list (with added Signed-Off-By tags) and we can discuss the individual ones here then. Thanks, Steven ___ openwrt-devel mailing list

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-12 Thread Steven Barth
> > Step 5 is unnecessary, patchwork sends emails on status changes. Okay, it seems it does this only for the original submitter, right? I guess it might come in handy to send it to the ML as well, or at least make that possible in the WebUI. > I usually copy the mbox link from patchwork and do

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-12 Thread Steven Barth
Let's face it though: the current workflow wrt. core patches is crappy. 1. Go to patchwork, see if there is a patch 2. If you want to comment, switch to mail client, find thread, write reply. 3. If you want to commit: download patch, go to command line, see if it applies 4. Then manually go back

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-12 Thread Steven Barth
>> Let's face it though: the current workflow wrt. core patches is crappy. >> >> 1. Go to patchwork, see if there is a patch >> 2. If you want to comment, switch to mail client, find thread, write reply. >> 3. If you want to commit: download patch, go to command line, see if it >> applies >> 4.

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-12 Thread Steven Barth
>>> What would your preferred workflow be? Please list the exact series of >>> steps for it. >> So to summarize, based on the current workflow: >> 1. Be able to send mails (and change status) from within patchwork, e.g. >> how you can do it in trac, just that it gets send out to the ML and

Re: [OpenWrt-Devel] [PATCH 1/2] Add package django-sslserver

2015-10-11 Thread Steven Barth
Please read our package submission guidelines here https://github.com/openwrt/packages/blob/master/CONTRIBUTING.md and once your submission complies, create a pull request at: https://github.com/openwrt/packages Cheers, Steven ___ openwrt-devel

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-10 Thread Steven Barth
One important point was IIRC, migrating from one stable branch to another is awkward since the history is different, so rebasing custom changes on top is painful. All in all there was relatively overwhelming feedback of most of the people at the summit that there lifes would be very much easier

Re: [OpenWrt-Devel] [PATCH netifd] netifd-proto.sh: add table argument to proto_add_ipv4_route()

2015-09-29 Thread Steven Barth
Alexander, I don't have a problem with that particular patch. However since the other patch was redundant and the only user of this one it seemed redundant to me as well. If you have another usecase for this then please let us know. Cheers, Steven On 29.09.2015 11:37, Alexander Couzens

Re: [OpenWrt-Devel] [PATCH] netifd: add table argument to dhcp(v4)

2015-09-28 Thread Steven Barth
NAK. Use "option ip4table" and "option ip6table" which works with all protocols already. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] dnsmasq: prevent forwarding RFC6303 zones

2015-09-24 Thread Steven Barth
There is already "option boguspriv 1" so I do not really see the point. Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH v2] base-files: init/sysfixtime - exclude dnsmasq.time

2015-09-23 Thread Steven Barth
Using --dnssec-no-timecheck is impractical since it reacts to SIGHUP which is already overloaded and might be triggered by e.g. config changes. Btw. an ntp hotplug infrastructure exists: https://dev.openwrt.org/changeset/43421 Please also consider that some devices have an RTC, so disabling

[OpenWrt-Devel] Chaos Calmer 15.05

2015-09-11 Thread Steven Barth
The OpenWrt developers are proud to announce the final release of OpenWrt Chaos Calmer. ___ __ | |.-.-.-.| | | |..| |_ | - || _ | -__| || | | || _|| _| |___|| __|_|__|__||||__| ||

Re: [OpenWrt-Devel] thanks for r46829 / replace ifconfig-usage with ip

2015-09-11 Thread Steven Barth
Well it's not yet abandoned we still have to migrate a lot of stuff under target/ and in the feeds. ifconfig and route won't go away before that happens. Besides I guess it's a more pressing issue now with IPv6 and so on where the old tools are relatively useless. As we are making some more

Re: [OpenWrt-Devel] Removing Telnet

2015-09-09 Thread Steven Barth
Hello Michael, that is interesting, though I guess since these are mainly our default it shouldn't be too hard for someone manufacturing to change the config and readd a simple init-script for telnetd if that is really required. Lack of entropy doesn't seem to be too much of an issue here, in

Re: [OpenWrt-Devel] [PATCH] uqmi: Add proper IPv6 support

2015-09-09 Thread Steven Barth
Hello Matti, thanks, I very much support this patch. One little thing: proto_add_ipv6_route "::0" 0 "$gateway_6" should be proto_add_ipv6_route "::0" 0 "$gateway_6" "" "" "${ip_6}/${ip_prefix_length}" otherwise this might break IPv6 connectivity in the presence of other IPv6 connections. In

[OpenWrt-Devel] Removing Telnet

2015-09-08 Thread Steven Barth
Hello everyone, as of https://dev.openwrt.org/changeset/46809 telnet is no longer part of the base images. As a replacement, it is now possible to login to the root- account via SSH without a password prompt whenever no root password is set, e.g. after a flash without keeping config, factory

Re: [OpenWrt-Devel] [PATCH] openwrt/hardening: Fix CFLAGS usage for -D_FORTIFY_SOURCE

2015-09-07 Thread Steven Barth
NAK. Not many package build systems honors CPPFLAGS so this solution is impractical, since it effectively disables fortification for many of them. To my knowledge c-ares is the only package enforcing this kind of behavior so it should be fixed to work with our buildsystem instead.

Re: [OpenWrt-Devel] [PATCH] kernel: bridge, multicast-to-unicast: fix echoes on STA

2015-09-02 Thread Steven Barth
Am 02.09.2015 um 05:17 schrieb Linus Lüssing: > Currently, multicast packets from an STA are sent to any according > multicast listener directly through the bridge multicast-to-unicast > feature. Unfortunately, so far this includes the originating STA, too, > resulting in multicast packets being

Re: [OpenWrt-Devel] [PATCHv3 openwrt 1/2] Revert "kernel: disable multicast-to-unicast translation for ipv6 neighbor solicitation (#17625)"

2015-08-31 Thread Steven Barth
>Ok, I was able to easily reproduce the issue here. Looking at the >tcpdump the wifi client receives its own Neighbor Solicitation >again, reflected through the bridge-hairpin option. Why are we reflecting packets back to the originator anyway? Could it not be excluded? Btw. once we are bit

Re: [OpenWrt-Devel] [PATCHv3 openwrt 1/2] Revert kernel: disable multicast-to-unicast translation for ipv6 neighbor solicitation (#17625)

2015-08-29 Thread Steven Barth
Hi Linus, one of these two kernel patches break IPv6 over WiFi completely. https://dev.openwrt.org/changeset/46719 works https://dev.openwrt.org/changeset/46723 is broken with default settings, but works when setting option igmp_snooping 0. symptoms are: IPv6: wlan0: IPv6 duplicate address

Re: [OpenWrt-Devel] [PATCH 2/2] proto-shell: add checkup timeout to restart interface.

2015-08-19 Thread Steven Barth
Hello Yousong, thanks for your patch. Shouldn't there by a timeout cancel path somewhere in case the protocol gets removed after the timer was armed but before it was fired? I could imagine it causing memory corruption otherwise. Cheers, Steven ___

Re: [OpenWrt-Devel] Recommended settings ip6 DNS server / dnsmasq

2015-08-18 Thread Steven Barth
I could solve all issues and write a complete HOWTO (in French only at first).http://wiki.openwrt.org/doc/howto/freebox That is nice to hear. OpenWRT seems to provide at the same time stateful and stateless adressing. Where you have option dhcpv6 and option ra you can add an option

Re: [OpenWrt-Devel] Recommended settings ip6 DNS server / dnsmasq

2015-08-17 Thread Steven Barth
I'm not sure what you are trying to accomplish. If you are connecting a router with a default OpenWrt image with default configuration to an ISP or IPv6 router which offers prefix delegation, everything works out of the box including client configuration. You don't need to touch a single config

Re: [OpenWrt-Devel] Recommended settings ip6 DNS server / dnsmasq

2015-08-17 Thread Steven Barth
Hello Jean-Michel, according to your Wiki-Entry stateful addressing does work, no need to do anything with dnsmasq. Quoting your ifconfig output addr inet6: 2a01:e35:87d8:::953/128 Scope:Global is clearly a stateful address (/128) and your host got the host-id 953 for stateful adressing.

Re: [OpenWrt-Devel] Not able to get ipv6 address on OpenWrt ported embedded target

2015-07-24 Thread Steven Barth
Add a section like this: config lan6 option proto dhcpv6 option ifname @lan And yes, proto dhcpv6 also works with RAs only. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

Re: [OpenWrt-Devel] Not able to get ipv6 address on OpenWrt ported embedded target

2015-07-24 Thread Steven Barth
(661.2 KiB) TX bytes:677074 (661.2 KiB) On Fri, Jul 24, 2015 at 5:32 PM, Steven Barth cy...@openwrt.org mailto:cy...@openwrt.org wrote: Add a section like this: config lan6 option proto dhcpv6 option ifname @lan And yes, proto dhcpv6 also works

Re: [OpenWrt-Devel] [PATCH] dnsmasq bump to dnsmasq2.74rc3

2015-07-17 Thread Steven Barth
I don't think we should be tracking RCs any longer. I did this for 2.73 mainly due to the security exploit and there not being a stable update, plus DNSSEC was pretty screwed before that. I think we should go back to backporting individual fixes via patches instead. Cheers, Steven

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc3

2015-07-16 Thread Steven Barth
Sorry, small mistake. Kernel is 3.18.17 in RC3. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] Chaos Calmer 15.05-rc3

2015-07-16 Thread Steven Barth
The OpenWrt developers are proud to announce the third release candidate of OpenWrt Chaos Calmer. ___ __ | |.-.-.-.| | | |..| |_ | - || _ | -__| || | | || _|| _| |___|| __|_|__|__||||__|

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc3

2015-07-16 Thread Steven Barth
Does this Fixed broken IPv6 downstream DHCPv6-PD and onlink-route handling fix the issue with loosing the default gateway for IPv6 and only fixing when you reboot the router ? I haven't heard of such an issue. This might be something specific to your ISP which is outside of our range or maybe

[OpenWrt-Devel] IPv6/odhcpd: Attempt to workaround phones ignoring RAs in standby + to fix NDP-relays

2015-07-14 Thread Steven Barth
Hi everyone, I just pushed a few experimental changes to trunk for odhcpd. #1 Unsolicited RAs are now also sent via unicast to known neighbors This may help address an issues commonly seen in some android phones. Some popular devices seem to ignore MC RAs during standby / display off, thus

Re: [OpenWrt-Devel] [PATCH] toolchain/uClibc: add uclibc-ng 1.0.3

2015-07-08 Thread Steven Barth
Thanks for the effort. However, I personally think we should rather phase out uclibc completely and focus on musl which has a much cleaner codebase. I don't think it is worth in the long run to maintain support for both libcs given our limited ressources. Cheers, Steven

Re: [OpenWrt-Devel] [PATCH 1/2] dnsmasq: enable extra tracing by default when UCI parameter logqueries is set

2015-07-07 Thread Steven Barth
Applied, thanks. Am 06.07.2015 um 18:29 schrieb Hans Dedecker: Signed-off-by: Hans Dedecker dedec...@gmail.com --- package/network/services/dnsmasq/files/dnsmasq.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/network/services/dnsmasq/files/dnsmasq.init

Re: [OpenWrt-Devel] Revert 46119 (hardening: make override variables more intuitive)

2015-06-24 Thread Steven Barth
Hi Etienne, I don't get your issue. 46119 only unifies the override variables, meaning if a package maintainer wants to override e.g. RELRO he now only needs to add PKG_RELRO:=0 instead of adding two for both RELRO modes. Cheers, Steven ___

Re: [OpenWrt-Devel] oldpackages for CC

2015-06-23 Thread Steven Barth
oldpackages are obsolete and in many instances riddled with security issues. They should not be used at all. Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] firewall instead of routing rules to keep ULAs from escaping

2015-06-16 Thread Steven Barth
You should see an unreachable route for your own local ULA /48. Also if your clients try to use your local ULA as source to reach anything outside of the ULA (e.g. global addresses) this is blocked (there is no matching route - simpler explanation to my previous post). I don't see any particular

Re: [OpenWrt-Devel] firewall instead of routing rules to keep ULAs from escaping

2015-06-16 Thread Steven Barth
Source-Destination matching is done in the regular routing table. E.g. for my he.net connection the v6 routing table looks like this: default from 2001:470:xx:yyy::/64 dev 6in4-henet proto static metric 1024 default from 2001:470:::/48 dev 6in4-henet proto static metric 1024 if you try

Re: [OpenWrt-Devel] firewall instead of routing rules to keep ULAs from escaping

2015-06-16 Thread Steven Barth
That commit got reverted 4 months later and was never really in use for long. Source-Destination routing has been used to replace it for egress traffic, i.e. there are simply no external (e.g. default) routes that have a matching source-restriction. For ingress traffic the stateful firewall

Re: [OpenWrt-Devel] [PATCH] Update dnsmasq to v2.73.

2015-06-15 Thread Steven Barth
Thanks, applied to trunk and CC. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-14 Thread Steven Barth
Since you are replying to the Chaos Calmer announcement, have you actually tried it with the CC RC2 or only BB as you mentioned? If not, then please try if CC makes a difference to you. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

[OpenWrt-Devel] Chaos Calmer 15.05-rc2

2015-06-13 Thread Steven Barth
The OpenWrt developers are proud to announce the first release candidate of OpenWrt Chaos Calmer. ___ __ | |.-.-.-.| | | |..| |_ | - || _ | -__| || | | || _|| _| |___|| __|_|__|__||||__|

Re: [OpenWrt-Devel] [PATCHv2] ppp : Unnumbered support

2015-06-12 Thread Steven Barth
Applied, thanks. On 12.06.2015 09:26, Hans Dedecker wrote: Adds PPP unnumbered support via the parameter unnumbered which points to a logical OpenWRT interface. The PPP proto shell handler will borrow an IP address from the unnumbered interface (if multiple IP addresses are present the

Re: [OpenWrt-Devel] strongswan CVE-2015-3991 CVE-2015-4171

2015-06-10 Thread Steven Barth
Thanks for the hint, I updated the package-definitions. Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH 2/3] 6to4: Remove sourcerouting parameter registration

2015-06-10 Thread Steven Barth
It's fine, he's just cleaning up after me *ducks and hides*. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH 3/3] ppp: Unnumbered support

2015-06-10 Thread Steven Barth
Thanks, I already applied the other two. On 10.06.2015 10:39, Hans Dedecker wrote: +ppp_select_ipaddr() +{ + local interface=$1 + local addrs=$(uci_get network.${interface}.ipaddr) + local netmask=$(uci_get network.${interface}.netmask) Any particular reason you are reading from

Re: [OpenWrt-Devel] [PATCH 3/3] ppp: Unnumbered support

2015-06-10 Thread Steven Barth
the addresses. Please let me know if that works for you. Cheers, Steven On 10.06.2015 14:52, Steven Barth wrote: UCI is read as network_get_subnets only returns info for active interfaces; e.g. if the referred interface in the unnumbered parameter is down it's not possible to install

Re: [OpenWrt-Devel] [PATCH,v2] dnsmasq: bump to dnsmasq2.73rc9

2015-06-09 Thread Steven Barth
Indeed, you can have a look at http://patchwork.ozlabs.org/project/openwrt/list/ to see and download the patches extracted from the mails (also the old ones). ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

Re: [OpenWrt-Devel] [PATCH] dnsmasq: bump to dnsmasq2.73rc9

2015-06-07 Thread Steven Barth
Your patch is mangled and doesn't apply. On another note I hope we will see the final soon... Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH,v2] dnsmasq: bump to dnsmasq2.73rc9

2015-06-07 Thread Steven Barth
Nope, mangled still. See MUA-SPECIFIC HINTS on https://git-scm.com/docs/git-format-patch to fix Thunderbird though tbh. using git-send-email is easier in most cases, see https://git-scm.com/docs/git-send-email especially EXAMPLE at the very end. Cheers, Steven

Re: [OpenWrt-Devel] [PATCH] Add sch_fq and sch_pie to the kmod-sched package.

2015-06-04 Thread Steven Barth
Applied, we have to cleanup kmod-sched at some point and throw out all the crap nobody uses anyway. Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] Regarding bridge multicast-to-unicast patch

2015-06-03 Thread Steven Barth
Thanks for the quick reply. On 03.06.2015 08:26, Linus Lüssing wrote: For IPv6 and a non-zero IPv4 source address it'll use the normal IGMP/MLD querier election mechanism, meaning the one with the lowest IP address will become the selected querier and the only one querying on the link. So

Re: [OpenWrt-Devel] Regarding bridge multicast-to-unicast patch

2015-06-03 Thread Steven Barth
Steven, could you elaborate a little more on the scenario and explain why it is a must to shut up automatically when having a local user-space querier? If people are able to manually install and configure a complex multicast router, aren't they capable of manually disabling the bridge querier,

Re: [OpenWrt-Devel] Regarding bridge multicast-to-unicast patch

2015-06-02 Thread Steven Barth
Do you by chance remember what was the behavior of the Linux kernel's intenral querier was. I mean does it use the usual L3-address of the bridge as source? How does it behave in the presence of other queriers either on WiFi stas or other bridge ports? Thanks, Steven

Re: [OpenWrt-Devel] [PATCH] odhcp6c: script: only call firewall, if installed

2015-06-01 Thread Steven Barth
Is that okay with you as well https://dev.openwrt.org/changeset/45867 ? Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH/resend] [odhcp6c] script: only call firewall, if installed

2015-05-31 Thread Steven Barth
The patch is malformed and cannot be applied. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc1

2015-05-24 Thread Steven Barth
Ok thanks for the suggestion. I added some ietf references to the homepage. Cheers, Steven Am 22. Mai 2015 16:29:12 MESZ, schrieb Michael Richardson m...@sandelman.ca: Steven Barth cy...@openwrt.org wrote: Steven Barth cy...@openwrt.org wrote: - Added support for 464XLAT (CLAT

Re: [OpenWrt-Devel] Chaos Calmer 15.05-rc1

2015-05-22 Thread Steven Barth
On 21.05.2015 20:32, Michael Richardson wrote: Steven Barth cy...@openwrt.org wrote: - Added support for 464XLAT (CLAT) Is this signaled in some way by DHCPv6? If so, I imagine that there is an RFC# which says how it works, could be listed here, so that google will find CC when people

[OpenWrt-Devel] Chaos Calmer 15.05-rc1

2015-05-20 Thread Steven Barth
The OpenWrt developers are proud to announce the first release candidate of OpenWrt Chaos Calmer. ___ __ | |.-.-.-.| | | |..| |_ | - || _ | -__| || | | || _|| _| |___|| __|_|__|__||||__|

Re: [OpenWrt-Devel] [PATCH] generic/4.0: fix error during kernel patch application

2015-05-20 Thread Steven Barth
Thanks, and sorry for the mess. I probably ran the compile-check on the wrong kernel-version. Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] dnsmasq: bump to dnsmasq2.73rc8 Important.

2015-05-17 Thread Steven Barth
Applied, thanks. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH][v2] netifd: Support for configurable default packet steering behavior

2015-05-12 Thread Steven Barth
Applied, thanks. On 12.05.2015 13:11, Hans Dedecker wrote: The default packet steering behavior can be configured via the parameter default_ps in the global section; the default value is true to keep backwards compatibility. Device packet steering (rps/xps) config can still be used to override

Re: [OpenWrt-Devel] [PATCH] netifd: Support for configurable default packet steering

2015-05-11 Thread Steven Barth
Fine with me in principle, howeverI find the name force_ps to be misleading since the option does not override or enforce anything. Maybe default_ps would be a more suitable name? Cheers, Steven On 11.05.2015 18:30, Hans Dedecker wrote: Default packet steering behavior can be configured

Re: [OpenWrt-Devel] [PATCH] modules: package l2tp_ip6.ko in kmod-l2tp-ip6

2015-05-03 Thread Steven Barth
On 02.05.2015 13:33, Daniel Golle wrote: r45593 includes l2tp_ip6 in the kmod-l2tp-ip package. This is not feasible for several reasons: - in a given setup one usually uses either l2tp_ip or l2tp_ip6, but never both I disagree here, if you e.g. use a hostname and resolve that before

Re: [OpenWrt-Devel] [PATCH] firewall: Allow MLD input on WAN

2015-05-03 Thread Steven Barth
Hello Linus, thanks for the patch. I have two questions here. #1 Why should this be done for v6 but not for v4? #2 If the intention is to respond to MLD queries why should the firewall allow reception of report messages? Cheers, Steven ___

Re: [OpenWrt-Devel] [PATCH] modules: package l2tp_ip6.ko in kmod-l2tp-ip6

2015-05-03 Thread Steven Barth
Anyway, I get that argument, but it could still be solved by adding +IPV6:kmod-l2tp-ip6 as a dependency to kmod-l2tp-ip. If it's really about the packaging overhead, it would also be possible to only include l2tp_ip6.ko in FILES if IPV6 is set, thus getting rid of the kmod-ipv6 dependency on

Re: [OpenWrt-Devel] [PATCH] dnsmasq: bump to dnsmasq2.73rc7

2015-04-29 Thread Steven Barth
Sorry, beat you again by 20 minutes :P ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] dnsmasq: bump to dnsmasq2.73rc7

2015-04-29 Thread Steven Barth
Looks good and applies. Usually the Signed-off-by is at the end of the commit message though. Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] iproute2: update to v4.0.0

2015-04-20 Thread Steven Barth
Applied, thanks. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-30 Thread Steven Barth
still work (since only the ULA-address cannot be changed immediately). Is that okay with you or do you see any other issues? Cheers, Steven On 26.03.2015 20:38, Arjen de Korte wrote: Citeren Steven Barth cy...@openwrt.org: This breaks clients that need fixed IPs (in my case, mostly webmail

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-30 Thread Steven Barth
Since I avoid ULA like the plague, this probably won't be a problem for me and global IPv6 addresses will be served. But I'm not convinced that favoring a ULA prefix (if available) over an ip6prefix is best at all times. Nothing is favored, DHCPv6 just hands out ULAs only (if one is there).

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-27 Thread Steven Barth
The problem is that you try to be smart by abusing the ability to set the address preferred lifetime lower than T1. I don't dispute that it is allowed by the RFC, but it is definitely not recommended. There is no formal requirement (not even a SHOULD) that says otherwise. The recommendation

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-27 Thread Steven Barth
On 27.03.2015 10:41, Kevin Darbyshire-Bryant wrote: On 26/03/2015 23:51, Steven Barth wrote: Radvd isn't part of OpenWrt for a while. dnsmasq doesn't support downstream delegation and its DHCPv6 features aren't well integrated if you have a dynamic prefix e.g. delegated from your ISP. I've

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-26 Thread Steven Barth
Hello Arjen, most likely, your DHCPv6 client implementation is faulty and you should probably file a bug for more than one reason. If the DHCPv6 server sends values for T1 and / or T2 which are valid the client must honor them and not try to be smart about lifetimes of addresses. Besides

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-26 Thread Steven Barth
This breaks clients that need fixed IPs (in my case, mostly webmail clients). I wonder why they are so sensitive to source-address changes since their old address is still valid and not deprecated so there is no need to switch. I would gladly send the DHCPv6 address with 0 preferred lifetime

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-26 Thread Steven Barth
Radvd isn't part of OpenWrt for a while. dnsmasq doesn't support downstream delegation and its DHCPv6 features aren't well integrated if you have a dynamic prefix e.g. delegated from your ISP. Cheers, Steven ___ openwrt-devel mailing list

Re: [OpenWrt-Devel] DHCPv6 flash renumbering patches with HE tunnel breaks

2015-03-26 Thread Steven Barth
In that case, I have a lot of bug reports to file, because none of the DHCPv6 clients I tried were happy with preferred lifetimes of 1 second on their leases (which includes Windows 7, 8.1 and openSUSE 13.2). Sorry, I cannot confirm this. I just tried it with both Windows 8.1 and Debian

Re: [OpenWrt-Devel] Question regarding UCI with IPv4 and IPv6 on lan-bridge

2015-03-18 Thread Steven Barth
Try config interface 'lan' option type 'bridge' option ifname 'eth0.1 bat0' option proto 'dhcp' config interface lan6 option ifname @lan option proto dhcpv6 # option reqprefix no (uncomment if you don't need an IPv6 delegated prefix) Cheers,

Re: [OpenWrt-Devel] DS-Lite interface is not coming up.

2015-03-13 Thread Steven Barth
config interface 'wan6' option proto 'static' option ifname 'eth1' option ip6addr '2001::50' config interface 'lq' option proto 'dslite' option ip6addr '2001::100' option peeraddr '2001::200' option tunlink 'wan6' In your dslite

Re: [OpenWrt-Devel] DS-Lite interface is not coming up.

2015-03-13 Thread Steven Barth
Please post: your complete /etc/config/network the output of ubus call network.interface dump so we can see what's going on on your system. Your problem description is not really exhaustive. Also note that dslite doesn't support ipaddr or netmask parameters since RFC6333 specifies fixed IPv4

Re: [OpenWrt-Devel] [PATCH 1/2] gccgo/libgo toolchain support for OpenWrt

2015-03-05 Thread Steven Barth
Hello Jeff, It's a bit of a shame it doesn't work with the current default uclibc, however have you checked if it works with musl out of the box? That being the other more embedded-friendly solution here. Cheers, Steven ___ openwrt-devel mailing

Re: [OpenWrt-Devel] [PATCH] firewall3: fix null pointer access when no target is present

2015-02-25 Thread Steven Barth
Applied, thanks. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] iproute2: bump version from v3.18.0 to v3.19.0

2015-02-17 Thread Steven Barth
Thanks, applied. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH 3/3] netifd: Set interface device config when device has old settings

2015-02-17 Thread Steven Barth
All applied, thanks. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH v2 1/3] iproute2: bump version to 3.18.0

2015-01-17 Thread Steven Barth
Applied, thanks. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] netifd + split dns servers

2015-01-09 Thread Steven Barth
Our dnsmasq init script registers /tmp/dnsmasq.d as an additional configuration dir, so you can place files there and restart it. However I'm not sure as to how much we want netifd to do dnsmasq-specific stuff or how we would do it. Of course the bad thing here again is that dnsmasq doesn't

Re: [OpenWrt-Devel] [PATCH] iproute2: bump version to v3.18.0, add package for bridge program

2015-01-05 Thread Steven Barth
Thanks, unfortunately this doesn't compile for me: ccache_cc -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wold-style-definition -Wformat=2 -O2 -Os -pipe -mno-branch-likely -mips32r2 -mtune=34kc -fno-caller-saves -fhonour-copts -Wno-error=unused-but-set-variable

Re: [OpenWrt-Devel] [PATCH] util-linux: fix packaging issues

2015-01-05 Thread Steven Barth
Thanks, applied. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] iproute2: bump version to v3.18.0, add package for bridge program

2015-01-05 Thread Steven Barth
On 05.01.2015 11:28, Russell Senior wrote: Steven == Steven Barth cy...@openwrt.org writes: Steven Thanks, unfortunately this doesn't compile for me: Can you email me your .config? I'll confess I only test-built it with uClibc. Thanks. That is usually sufficient, though we are thinking

Re: [OpenWrt-Devel] is there something preventing me from watching github openwrt/packages?

2014-12-22 Thread Steven Barth
You can watch any repository you like. If something goes wrong its probably either github's or your browser's (or its addons') fault. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

Re: [OpenWrt-Devel] batman-adv ipv6

2014-12-21 Thread Steven Barth
There were no firewall changes for quite a while really and IPv6 configuration hasn't been touched for quite a while either and if you have ruled out the igmp_snooping as a source of error then thats a bit confusing. OpenWrt switched from using kernel-mode IPv6 RA handling (SLAAC) to

Re: [OpenWrt-Devel] [PATCH] dnsmasq: Makefile fixes and cleanups

2014-12-21 Thread Steven Barth
NAK, unless you deal with all the dnsmasq-dhcpv6 and dnsmasq-full missing in opkg tickets afterwards ;) On a more serious note, some people depend on the precompiled stuff and they would probably not welcome that change all too much. ___

Re: [OpenWrt-Devel] [PATCH] iproute2: bump version from 3.16.0 to 3.17.0

2014-12-16 Thread Steven Barth
applied, thanks. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] dnsmasq: allow de-selecting features from -full variant.

2014-12-16 Thread Steven Barth
applied, thanks. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] nftables development and support in openwrt

2014-12-15 Thread Steven Barth
-level openwrt firewall is reloaded. In fact there is already a user-script hook. Cheers, Steven Best Regards, Tomer On Mon, Dec 15, 2014 at 9:18 AM, Steven Barth cy...@openwrt.org wrote: Hi Tomer, Regarding the firewall package - its probably a dumb question, but isn't this the reason

Re: [OpenWrt-Devel] nftables development and support in openwrt

2014-12-14 Thread Steven Barth
Hi Tomer, I am currently working on a kernel module which offloads traffic from the Networking stack. This is part of a project which optimizes IP forwarding for low end routers that have weak CPU and low on memory. Sounds interesting. Other approaches of speeding up forwarding are btw. also

Re: [OpenWrt-Devel] [package] shadow: unresolvable dependency with shadow-utils

2014-12-14 Thread Steven Barth
Hi Gergely, my name is Gergely Kiss, I have recently started creating patches for openwrt and I'm about to publish some packages to the packages repository (some ported from oldpackages, others are brand new). Sounds good, thanks. Please read and follow our guidelines when doing pull

Re: [OpenWrt-Devel] [PATCH] [packages] python: file conflicts

2014-12-14 Thread Steven Barth
Hi Gergely, this is the wrong place to post package-related patches and issues. Please do a pull requests here instead https://github.com/openwrt/packages/pulls and for issues please use: https://github.com/openwrt/packages/issues Cheers, Steven

  1   2   >