* 6lowpan socket
@ 2015-11-11 21:48 Baptiste Clenet
[not found] ` <CAF4BF-TStucwTg5Kp+YAN735RNQUA+aLf1fEPRKW7uSNZXSKYw@mail.gmail.com>
0 siblings, 1 reply; 11+ messages in thread
From: Baptiste Clenet @ 2015-11-11 21:48 UTC (permalink / raw)
To: linux-wpan
Hi,
Is there any lowpan socket example? I encounter some issues when I
bind the socket on the lowpan interface. I can send my UDP message but
I can't receive it.
Cheers,
--
Baptiste
^ permalink raw reply [flat|nested] 11+ messages in thread[parent not found: <CAF4BF-TStucwTg5Kp+YAN735RNQUA+aLf1fEPRKW7uSNZXSKYw@mail.gmail.com>]
* Re: 6lowpan socket [not found] ` <CAF4BF-TStucwTg5Kp+YAN735RNQUA+aLf1fEPRKW7uSNZXSKYw@mail.gmail.com> @ 2015-11-11 22:06 ` Baptiste Clenet 2015-11-12 0:14 ` Baptiste Clenet 0 siblings, 1 reply; 11+ messages in thread From: Baptiste Clenet @ 2015-11-11 22:06 UTC (permalink / raw) To: Christopher Friedt; +Cc: linux-wpan Hi Christopher, On http://wpan.cakelab.org/, there is no 6lowpan socket example, it explains how to set up the network. All my interfaces (wpan0 and lowpan0) are already running. 2015-11-11 22:55 GMT+01:00 Christopher Friedt <chrisfriedt@gmail.com>: > http://wpan.cakelab.org/ > > © > > Sent from my Android -- Baptiste ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 6lowpan socket 2015-11-11 22:06 ` Baptiste Clenet @ 2015-11-12 0:14 ` Baptiste Clenet 2015-11-12 8:53 ` Alexander Aring 0 siblings, 1 reply; 11+ messages in thread From: Baptiste Clenet @ 2015-11-12 0:14 UTC (permalink / raw) To: Christopher Friedt; +Cc: linux-wpan From Christopher: Oh - sorry. 6LowPAN uses IPv6. So it's equivalent to setting up an IPv6 socket. Just remember to set up routes as appropriate and it should work fine. Unfortunately, I think vger bounces email from android devices, so my message won't make it out on the list. © Sent from my Android Yeah sure, it's equivalent, it's what I thought. I will search deeper 2015-11-11 23:06 GMT+01:00 Baptiste Clenet <bapclenet@gmail.com>: > Hi Christopher, > On http://wpan.cakelab.org/, there is no 6lowpan socket example, it > explains how to set up the network. All my interfaces (wpan0 and > lowpan0) are already running. > > 2015-11-11 22:55 GMT+01:00 Christopher Friedt <chrisfriedt@gmail.com>: >> http://wpan.cakelab.org/ >> >> © >> >> Sent from my Android > > > > -- > Baptiste -- Baptiste ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 6lowpan socket 2015-11-12 0:14 ` Baptiste Clenet @ 2015-11-12 8:53 ` Alexander Aring 2015-11-13 10:29 ` Baptiste Clenet 0 siblings, 1 reply; 11+ messages in thread From: Alexander Aring @ 2015-11-12 8:53 UTC (permalink / raw) To: Baptiste Clenet; +Cc: Christopher Friedt, linux-wpan Hi Baptiste, On Thu, Nov 12, 2015 at 01:14:48AM +0100, Baptiste Clenet wrote: > From Christopher: > > Oh - sorry. 6LowPAN uses IPv6. So it's equivalent to setting up an IPv6 socket. > > Just remember to set up routes as appropriate and it should work fine. > > Unfortunately, I think vger bounces email from android devices, so my > message won't make it out on the list. > > © > > Sent from my Android > > Yeah sure, it's equivalent, it's what I thought. I will search deeper I see you as well on the RIOT mailinglist. Do you has these issues with RIOT? You can check it with fakelb and bsd-netcat and create/connect udp v6 socket, if it works with a linux<->linux connection, otherwise something is wrong with interoperability (which you can might debug via sniffing). I know they have recently added the rfc6282 udp nhc compression, see [0]. We have nhc_udp enabled by default, (receive handling should have a always possible strategy). Usually you can disable UDP NHC by unloading the "nhc_udp" module if you built it as module. But then you can also not receive anymore other udp nhc iphc headers. To make a fine granularity setting to the nhc strategy, we need a userspace tool and interface for that. - Alex [0] https://github.com/RIOT-OS/RIOT/pull/4189 ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 6lowpan socket 2015-11-12 8:53 ` Alexander Aring @ 2015-11-13 10:29 ` Baptiste Clenet 2015-11-13 10:54 ` Alexander Aring 2015-11-13 18:04 ` LL address and IPv6 address Michael Richardson 0 siblings, 2 replies; 11+ messages in thread From: Baptiste Clenet @ 2015-11-13 10:29 UTC (permalink / raw) To: Alexander Aring; +Cc: Christopher Friedt, linux-wpan 2015-11-12 9:53 GMT+01:00 Alexander Aring <alex.aring@gmail.com>: > Hi Baptiste, > > On Thu, Nov 12, 2015 at 01:14:48AM +0100, Baptiste Clenet wrote: >> From Christopher: >> >> Oh - sorry. 6LowPAN uses IPv6. So it's equivalent to setting up an IPv6 socket. >> >> Just remember to set up routes as appropriate and it should work fine. >> >> Unfortunately, I think vger bounces email from android devices, so my >> message won't make it out on the list. >> >> © >> >> Sent from my Android >> >> Yeah sure, it's equivalent, it's what I thought. I will search deeper > > I see you as well on the RIOT mailinglist. Do you has these issues with > RIOT? > Yes I'm in both mailing list. The problem was not with Riot but openwrt. It works now, thanks you. > You can check it with fakelb and bsd-netcat and create/connect udp v6 socket, > if it works with a linux<->linux connection, otherwise something is > wrong with interoperability (which you can might debug via sniffing). > > I know they have recently added the rfc6282 udp nhc compression, see > [0]. We have nhc_udp enabled by default, (receive handling should have > a always possible strategy). > > Usually you can disable UDP NHC by unloading the "nhc_udp" module if you > built it as module. But then you can also not receive anymore other udp > nhc iphc headers. > > To make a fine granularity setting to the nhc strategy, we need a > userspace tool and interface for that. > > - Alex > > [0] https://github.com/RIOT-OS/RIOT/pull/4189 Ok for nhc compression, I let the default configuration and it worked. I'm wondering something else about IPV6, how to change the default IPV6 that the at86rf2XX will trigger? If we change the IPV6 of lowpan0 (with ip -6 addr del ... for instance) and then add the new one, it doesn't affect the reg IEEE_ADDR_0,1,2.... So I wanted to use iwpan but I can only change the short_addr if I'm not wrong. Which way is the cleanest to edit the IPV6 address of the transceiver? (and it will impact lowpan0) I thought about edit it in the at86rf23XX driver. -- Baptiste ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 6lowpan socket 2015-11-13 10:29 ` Baptiste Clenet @ 2015-11-13 10:54 ` Alexander Aring 2015-11-13 13:34 ` Baptiste Clenet 2015-11-13 18:04 ` LL address and IPv6 address Michael Richardson 1 sibling, 1 reply; 11+ messages in thread From: Alexander Aring @ 2015-11-13 10:54 UTC (permalink / raw) To: Baptiste Clenet; +Cc: Christopher Friedt, linux-wpan On Fri, Nov 13, 2015 at 11:29:36AM +0100, Baptiste Clenet wrote: > 2015-11-12 9:53 GMT+01:00 Alexander Aring <alex.aring@gmail.com>: > > Hi Baptiste, > > > > On Thu, Nov 12, 2015 at 01:14:48AM +0100, Baptiste Clenet wrote: > >> From Christopher: > >> > >> Oh - sorry. 6LowPAN uses IPv6. So it's equivalent to setting up an IPv6 socket. > >> > >> Just remember to set up routes as appropriate and it should work fine. > >> > >> Unfortunately, I think vger bounces email from android devices, so my > >> message won't make it out on the list. > >> > >> © > >> > >> Sent from my Android > >> > >> Yeah sure, it's equivalent, it's what I thought. I will search deeper > > > > I see you as well on the RIOT mailinglist. Do you has these issues with > > RIOT? > > > > Yes I'm in both mailing list. > The problem was not with Riot but openwrt. It works now, thanks you. > ok. > > You can check it with fakelb and bsd-netcat and create/connect udp v6 socket, > > if it works with a linux<->linux connection, otherwise something is > > wrong with interoperability (which you can might debug via sniffing). > > > > I know they have recently added the rfc6282 udp nhc compression, see > > [0]. We have nhc_udp enabled by default, (receive handling should have > > a always possible strategy). > > > > Usually you can disable UDP NHC by unloading the "nhc_udp" module if you > > built it as module. But then you can also not receive anymore other udp > > nhc iphc headers. > > > > To make a fine granularity setting to the nhc strategy, we need a > > userspace tool and interface for that. > > > > - Alex > > > > [0] https://github.com/RIOT-OS/RIOT/pull/4189 > > > Ok for nhc compression, I let the default configuration and it worked. > You should look for "default configuration" a look into rfc6282. There is a special port-range which can be compressed. Maybe you want to use that. It will be used automatically. > I'm wondering something else about IPV6, how to change the default > IPV6 that the at86rf2XX will trigger? > If we change the IPV6 of lowpan0 (with ip -6 addr del ... for > instance) and then add the new one, it doesn't affect the reg > IEEE_ADDR_0,1,2.... mac address != ip address. with ip -6 addr you mean == ip address. with ip link set dev xx address yyy == mac address. > So I wanted to use iwpan but I can only change the short_addr if I'm not wrong. short address is part of mac address which is currently not supported by 802.15.4 6lowpan. This is a bigger issue because the whole ipv6 stack/net core api does know only _ONE_ type of mac address and this has only _ONE_ length. There exists few ideas to handle that, but we need to talk about which is the right one... > Which way is the cleanest to edit the IPV6 address of the transceiver? > (and it will impact lowpan0) I thought about edit it in the at86rf23XX > driver. > There is a bug one some kernel versions, see [0]. If you want a new mac address, ifdown both wpan/lowpan interface -> then change mac address via ip link set ... (extended address). Then ifup both interfaces again. - Alex [0] https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/net/mac802154/iface.c?id=09095fdc9e5d5438051fc4e92867f1aff764cd21 ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: 6lowpan socket 2015-11-13 10:54 ` Alexander Aring @ 2015-11-13 13:34 ` Baptiste Clenet 0 siblings, 0 replies; 11+ messages in thread From: Baptiste Clenet @ 2015-11-13 13:34 UTC (permalink / raw) To: Alexander Aring; +Cc: Christopher Friedt, linux-wpan 2015-11-13 11:54 GMT+01:00 Alexander Aring <alex.aring@gmail.com>: > On Fri, Nov 13, 2015 at 11:29:36AM +0100, Baptiste Clenet wrote: >> 2015-11-12 9:53 GMT+01:00 Alexander Aring <alex.aring@gmail.com>: >> > Hi Baptiste, >> > >> > On Thu, Nov 12, 2015 at 01:14:48AM +0100, Baptiste Clenet wrote: >> >> From Christopher: >> >> >> >> Oh - sorry. 6LowPAN uses IPv6. So it's equivalent to setting up an IPv6 socket. >> >> >> >> Just remember to set up routes as appropriate and it should work fine. >> >> >> >> Unfortunately, I think vger bounces email from android devices, so my >> >> message won't make it out on the list. >> >> >> >> © >> >> >> >> Sent from my Android >> >> >> >> Yeah sure, it's equivalent, it's what I thought. I will search deeper >> > >> > I see you as well on the RIOT mailinglist. Do you has these issues with >> > RIOT? >> > >> >> Yes I'm in both mailing list. >> The problem was not with Riot but openwrt. It works now, thanks you. >> > > ok. > >> > You can check it with fakelb and bsd-netcat and create/connect udp v6 socket, >> > if it works with a linux<->linux connection, otherwise something is >> > wrong with interoperability (which you can might debug via sniffing). >> > >> > I know they have recently added the rfc6282 udp nhc compression, see >> > [0]. We have nhc_udp enabled by default, (receive handling should have >> > a always possible strategy). >> > >> > Usually you can disable UDP NHC by unloading the "nhc_udp" module if you >> > built it as module. But then you can also not receive anymore other udp >> > nhc iphc headers. >> > >> > To make a fine granularity setting to the nhc strategy, we need a >> > userspace tool and interface for that. >> > >> > - Alex >> > >> > [0] https://github.com/RIOT-OS/RIOT/pull/4189 >> >> >> Ok for nhc compression, I let the default configuration and it worked. >> > > You should look for "default configuration" a look into rfc6282. There > is a special port-range which can be compressed. Maybe you want to use > that. It will be used automatically. > >> I'm wondering something else about IPV6, how to change the default >> IPV6 that the at86rf2XX will trigger? >> If we change the IPV6 of lowpan0 (with ip -6 addr del ... for >> instance) and then add the new one, it doesn't affect the reg >> IEEE_ADDR_0,1,2.... > > mac address != ip address. > > with ip -6 addr you mean == ip address. > > with ip link set dev xx address yyy == mac address. > >> So I wanted to use iwpan but I can only change the short_addr if I'm not wrong. > > short address is part of mac address which is currently not supported by > 802.15.4 6lowpan. This is a bigger issue because the whole ipv6 > stack/net core api does know only _ONE_ type of mac address and this has > only _ONE_ length. > > There exists few ideas to handle that, but we need to talk about which > is the right one... > >> Which way is the cleanest to edit the IPV6 address of the transceiver? >> (and it will impact lowpan0) I thought about edit it in the at86rf23XX >> driver. >> > > There is a bug one some kernel versions, see [0]. If you want a new mac > address, ifdown both wpan/lowpan interface -> then change mac address > via ip link set ... (extended address). Then ifup both interfaces again. Thanks, it work nicely. Without the patch, lowpan 0 should not exist to edit wpan0 mac address, then create lowpan0. > > - Alex > > [0] https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/net/mac802154/iface.c?id=09095fdc9e5d5438051fc4e92867f1aff764cd21 -- Baptiste ^ permalink raw reply [flat|nested] 11+ messages in thread
* LL address and IPv6 address 2015-11-13 10:29 ` Baptiste Clenet 2015-11-13 10:54 ` Alexander Aring @ 2015-11-13 18:04 ` Michael Richardson 2015-11-14 10:35 ` Alexander Aring 1 sibling, 1 reply; 11+ messages in thread From: Michael Richardson @ 2015-11-13 18:04 UTC (permalink / raw) To: linux-wpan, linux-bluetooth [-- Attachment #1: Type: text/plain, Size: 1806 bytes --] I hadn't realized until I was trying to communicate LL (fe80::) addresses to a plugfest peer that the LL addresses and layer-2 addresses are not stable. (no eeprom in at86af23x, most of the OpenMote/Redwire devices that Contiki runs on have same issue) Yes, we can set them from /etc/network/interfaces using iwpan, but I'm a bit not keen about this as a general solution. Now, I have some ideas about deploying (802.1AR) certificates that permit a node to prove it owns a particular L2 address. Given that certificate, I might as well configure the l2 and short address, etc. directly from the info in the certificate. This solution will suit my needs well, but probably not others. We do not have a kernel command line option to set the LL address, we should, but in the specific case of the RPI, that won't help that much, because the RPI doesn't use GRUB (nor uboot by default), so the cmdline is hard to update. Does this matter that much; I'm not sure. Still, I think we should have a non-programmatic way to do this, maybe some kind file in /etc, or maybe a sensible recommendation for having udev do it. I also noted that if I tried to change some things, such as panid and l2 address that it wouldn't work until I rebooted. Probably there was another sequence I could have used, but I didn't figure it out at the time. Also, as far as I know, we can't operate on more than one panid at the same time. I could imagine that maybe one could create multiple lowpan on top of the same wpanX interface, but the panid is actually at the lower level. -- ] Never tell me the odds! | ipv6 mesh networks [ ] Michael Richardson, Sandelman Software Works | network architect [ ] mcr@sandelman.ca http://www.sandelman.ca/ | ruby on rails [ [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 481 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: LL address and IPv6 address 2015-11-13 18:04 ` LL address and IPv6 address Michael Richardson @ 2015-11-14 10:35 ` Alexander Aring 2015-11-16 14:46 ` Stefan Schmidt 0 siblings, 1 reply; 11+ messages in thread From: Alexander Aring @ 2015-11-14 10:35 UTC (permalink / raw) To: Michael Richardson; +Cc: linux-wpan, linux-bluetooth On Fri, Nov 13, 2015 at 01:04:16PM -0500, Michael Richardson wrote: > > I hadn't realized until I was trying to communicate LL (fe80::) addresses to > a plugfest peer that the LL addresses and layer-2 addresses are not stable. > (no eeprom in at86af23x, most of the OpenMote/Redwire devices that Contiki > runs on have same issue) > > Yes, we can set them from /etc/network/interfaces using iwpan, but I'm a bit > not keen about this as a general solution. > > Now, I have some ideas about deploying (802.1AR) certificates that permit a > node to prove it owns a particular L2 address. Given that certificate, I > might as well configure the l2 and short address, etc. directly from the info > in the certificate. This solution will suit my needs well, but probably not > others. > > We do not have a kernel command line option to set the LL address, we should, > but in the specific case of the RPI, that won't help that much, because the > RPI doesn't use GRUB (nor uboot by default), so the cmdline is hard to > update. Does this matter that much; I'm not sure. Still, I think we should > have a non-programmatic way to do this, maybe some kind file in /etc, > or maybe a sensible recommendation for having udev do it. > Maybe you want a solution like this [0], it's not mainline because I am not sure if this is the right way to do it. Exactly because the reason that network-managers/"/etc/network/interfaces" can do that for you. The extended address is then bounded to the devicetree, if the driver supports it. It will first looking at devicetree for an extended-address. If there isn't any address node, then a random one is used. Such devicetree entry should be part of the devicetree API of 802.15.4 transceivers then. The pro is currently what I see: Ethernet does the same way and this is maybe also a contra, because all bootloaders hacking "manipulating devicetree entry with my in EEPROM saved mac-address of bootloader configuration", some people are not happy about this solution currently and say it will be still supported because backwards compatibility. Well, I would give that a try. But maybe the devicetree maintainers will be a different meaning and will not accepting such solutions anymore. (I really don't know that, we should discuss this with the devicetree people). So far you this is the solution which you are looking for. > I also noted that if I tried to change some things, such as panid and l2 > address that it wouldn't work until I rebooted. Probably there was another > sequence I could have used, but I didn't figure it out at the time. > Address parameters can changed if the interface is down only, or do you mean to have another default panid? The panid default is that what 802.15.4 describes and is not "implementation specific" like the extended-address. But I think you hit the issue that you can't change the link address while interface is up. > Also, as far as I know, we can't operate on more than one panid at the same > time. I could imagine that maybe one could create multiple lowpan on top of > the same wpanX interface, but the panid is actually at the lower level. > I think I need to know about more the use-case of "on more than one panid", what do you want to do exactly. - Different source pan only - Different destination pan only - Different destination and source pan We dropped the multiple lowpan interface support from a while, because no use-case was there, maybe this will be changed now. :-) Anyway with multiple lowpan interfaces support it would not support any multiple pan handling. I think I can talk more about that when I know the exactly use-case above and the "granularity" where do you want a multiple pan support. - per ipv6 socket - per namespace - per lowpan dev ----- I always supposed 802.15.4 6LoWPAN connection is intra-pan connection only. Please correct me if I am wrong. I need to be honest, I can argument only how "multicast ipv6 address" is mapped to LL addressing, see [1]. "1. A destination PAN identifier is included in the frame, and it MUST match the PAN ID of the link in question." So ipv6 multicast address should map in broadcast intra-pan communication. "To get the same nodes in unicast, it's also intr-pan." <- Don't know if this is correct. The easiest use-case for running multiple pan's which you might to have is (I do some ascii art here): 802.15.4 PHY /\ / \ / \ / \ wpan0 wpan1 ----- ----- panid panid 0xbeef 0xabcd | | | | lowpan0 lowpan1 (intra-pan) (intra-pan) hopefully this is understanding what I mean there. So lowpan0 and lowpan1 does intra-pan communication only, but on two different pans (link-layer) on one phy. This currently not possible with the at86rf23x transceivers because the address-filtering. Otherwise the mac802154 stack allows such behaviour to add more than one wpan interface at one time for one phy. The solution would be maybe to add a new devicetree entry inside the at86rf23x transceiver driver, which turns the transceiver into a "raw" mode. I call it now raw mode, because it's not easy to turn off address filtering inside the at86af23x transceiver, it will be something about promiscuous mode and then doing all filtering of address inside the mac802154 stack (linux side). Such feature would be possible, but then you need to know what you doing because you disable the address filter which occurs more workload on linux side. btw: you can also get the same transceiver when using two phy's, it should be looking then like this: 802154 PHY 802154 PHY | | wpan0 wpan1 ----- ----- panid panid 0xbeef 0xabcd | | | | lowpan0 lowpan1 (intra-pan) (intra-pan) Okay, maybe you don't want to have two phy's connected. I can also think about the above solution, to disable MAC filtering on transceiver side, then doing filtering on linux side, which allows then multiple wpan interfaces at the same time. This is all, because the address filtering only accepts one source address for the registers. :-) The solution with two phy's would reduce cpu overhead, because address filtering on phy side. - Alex [0] http://www.spinics.net/lists/linux-wpan/msg01503.html [1] http://tools.ietf.org/html/rfc4944#section-3 ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: LL address and IPv6 address 2015-11-14 10:35 ` Alexander Aring @ 2015-11-16 14:46 ` Stefan Schmidt 2015-11-16 15:11 ` Stefan Schmidt 0 siblings, 1 reply; 11+ messages in thread From: Stefan Schmidt @ 2015-11-16 14:46 UTC (permalink / raw) To: Alexander Aring, Michael Richardson; +Cc: linux-wpan, linux-bluetooth Hello. Alex already gave all the answers so I will only poke in here and there. On 14/11/15 11:35, Alexander Aring wrote: > On Fri, Nov 13, 2015 at 01:04:16PM -0500, Michael Richardson wrote: >> I hadn't realized until I was trying to communicate LL (fe80::) addresses to >> a plugfest peer that the LL addresses and layer-2 addresses are not stable. >> (no eeprom in at86af23x, most of the OpenMote/Redwire devices that Contiki >> runs on have same issue) Yeah, sadly this is a very common issue on embedded hardware as the manufactures love to save the 2 cent for an EEPROM holding this kind of information. :( >> Yes, we can set them from /etc/network/interfaces using iwpan, but I'm a bit >> not keen about this as a general solution. >> >> Now, I have some ideas about deploying (802.1AR) certificates that permit a >> node to prove it owns a particular L2 address. Given that certificate, I >> might as well configure the l2 and short address, etc. directly from the info >> in the certificate. This solution will suit my needs well, but probably not >> others. >> >> We do not have a kernel command line option to set the LL address, we should, >> but in the specific case of the RPI, that won't help that much, because the >> RPI doesn't use GRUB (nor uboot by default), so the cmdline is hard to >> update. Does this matter that much; I'm not sure. Still, I think we should >> have a non-programmatic way to do this, maybe some kind file in /etc, >> or maybe a sensible recommendation for having udev do it. >> > Maybe you want a solution like this [0], it's not mainline because I am > not sure if this is the right way to do it. Exactly because the reason > that network-managers/"/etc/network/interfaces" can do that for you. > > The extended address is then bounded to the devicetree, if the driver > supports it. It will first looking at devicetree for an > extended-address. If there isn't any address node, then a random one is > used. > > Such devicetree entry should be part of the devicetree API of 802.15.4 > transceivers then. > > The pro is currently what I see: > > Ethernet does the same way and this is maybe also a contra, because all > bootloaders hacking "manipulating devicetree entry with my in EEPROM > saved mac-address of bootloader configuration", some people are not > happy about this solution currently and say it will be still supported > because backwards compatibility. > > Well, I would give that a try. But maybe the devicetree maintainers will > be a different meaning and will not accepting such solutions anymore. > (I really don't know that, we should discuss this with the devicetree > people). > > So far you this is the solution which you are looking for. > My personal feelings about this are that the device address, as a unique identifier, should be setup and done when the kernel is up. One could always do it during the system bringup with udev or in network interfaces, etc. But imho this is all to late. When the best option (address in EEPROM) is not available going with device tree or a kernel commandline option is a good way imho. >> I also noted that if I tried to change some things, such as panid and l2 >> address that it wouldn't work until I rebooted. Probably there was another >> sequence I could have used, but I didn't figure it out at the time. >> > Address parameters can changed if the interface is down only, or do you > mean to have another default panid? The panid default is that what > 802.15.4 describes and is not "implementation specific" like the > extended-address. But I think you hit the issue that you can't change > the link address while interface is up. > As Alex said, there should be nothing which would require a reboot. Most likely you would have needed to bring down the device for configure and back up afterwards. >> Also, as far as I know, we can't operate on more than one panid at the same >> time. I could imagine that maybe one could create multiple lowpan on top of >> the same wpanX interface, but the panid is actually at the lower level. >> > I think I need to know about more the use-case of "on more than one > panid", what do you want to do exactly. > > - Different source pan only > > - Different destination pan only > > - Different destination and source pan Jup, use cases is really what we are looking for here. If you have good ones we can see what needs to be done on our side. > We dropped the multiple lowpan interface support from a while, because > no use-case was there, maybe this will be changed now. :-) > Anyway with multiple lowpan interfaces support it would not support any > multiple pan handling. > > I think I can talk more about that when I know the exactly use-case > above and the "granularity" where do you want a multiple pan support. > > - per ipv6 socket > > - per namespace > > - per lowpan dev > > ----- > > I always supposed 802.15.4 6LoWPAN connection is intra-pan connection > only. Please correct me if I am wrong. I need to be honest, I can > argument only how "multicast ipv6 address" is mapped to LL addressing, > see [1]. > > "1. A destination PAN identifier is included in the frame, and it > MUST match the PAN ID of the link in question." > > So ipv6 multicast address should map in broadcast intra-pan > communication. "To get the same nodes in unicast, it's also intr-pan." <- > Don't know if this is correct. > > > The easiest use-case for running multiple pan's which you might to have > is (I do some ascii art here): > > 802.15.4 PHY > /\ > / \ > / \ > / \ > wpan0 wpan1 > ----- ----- > panid panid > 0xbeef 0xabcd > | | > | | > lowpan0 lowpan1 > (intra-pan) (intra-pan) > > hopefully this is understanding what I mean there. > > So lowpan0 and lowpan1 does intra-pan communication only, but on two > different pans (link-layer) on one phy. > > This currently not possible with the at86rf23x transceivers because the > address-filtering. Otherwise the mac802154 stack allows such behaviour > to add more than one wpan interface at one time for one phy. > > The solution would be maybe to add a new devicetree entry inside the > at86rf23x transceiver driver, which turns the transceiver into a "raw" > mode. I call it now raw mode, because it's not easy to turn off address > filtering inside the at86af23x transceiver, it will be something about > promiscuous mode and then doing all filtering of address inside the > mac802154 stack (linux side). > > Such feature would be possible, but then you need to know what you doing > because you disable the address filter which occurs more workload on > linux side. > > btw: you can also get the same transceiver when using two phy's, it > should be looking then like this: > > 802154 PHY 802154 PHY > | | > wpan0 wpan1 > ----- ----- > panid panid > 0xbeef 0xabcd > | | > | | > lowpan0 lowpan1 > (intra-pan) (intra-pan) > > Okay, maybe you don't want to have two phy's connected. I can also think > about the above solution, to disable MAC filtering on transceiver side, > then doing filtering on linux side, which allows then multiple wpan > interfaces at the same time. This is all, because the address filtering > only accepts one source address for the registers. :-) > > The solution with two phy's would reduce cpu overhead, because address > filtering on phy side. There is at least one 802.15.4 IP block out there that markets the support for dual PAN ID. http://www.freescale.com/products/arm-processors/kinetis-cortex-m/w-series/kinetis-kw2x-2.4-ghz-rf-analog-mixed-signal-ieee-802.15.4-low-power-microcontrollers-mcus:KW2x So far this is only inside a wireless mcu combination and thus unrealted to us but maybe the IP block will be used in some other hardware later. What I don't know is how this functionality is exposed by the hardware. Would it only have a few extra regs needed for the dual PAN setup or two full register sets? Would it have different regs for the two sets of address filters? Allowing to have the two PANs on different channels or only on one? I could image various solutions in our stack to support things but we would need to see what hardware is out there to support it. I'm not really a big fan of designing everything in without having real users for it. We can always incrementally improve on what we are missing. regards Stefan Schmidt ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: LL address and IPv6 address 2015-11-16 14:46 ` Stefan Schmidt @ 2015-11-16 15:11 ` Stefan Schmidt 0 siblings, 0 replies; 11+ messages in thread From: Stefan Schmidt @ 2015-11-16 15:11 UTC (permalink / raw) To: Alexander Aring, Michael Richardson; +Cc: linux-wpan, linux-bluetooth Hello. On 16/11/15 15:46, Stefan Schmidt wrote: > > There is at least one 802.15.4 IP block out there that markets the > support for dual PAN ID. > > http://www.freescale.com/products/arm-processors/kinetis-cortex-m/w-series/kinetis-kw2x-2.4-ghz-rf-analog-mixed-signal-ieee-802.15.4-low-power-microcontrollers-mcus:KW2x > > > So far this is only inside a wireless mcu combination and thus > unrealted to us but maybe the IP block will be used in some other > hardware later. > > What I don't know is how this functionality is exposed by the > hardware. Would it only have a few extra regs needed for the dual PAN > setup or two full register sets? Would it have different regs for the > two sets of address filters? Allowing to have the two PANs on > different channels or only on one? I just browsed to the data sheat to understand what they will provide and it boils down to regs for channel, short address, extended address, PAN ID and coordinator bit. A timer can be configured by software and/or driven by the hardware directly as to when switch between these two. regards Stefan Schmidt ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2015-11-16 15:11 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-11 21:48 6lowpan socket Baptiste Clenet
[not found] ` <CAF4BF-TStucwTg5Kp+YAN735RNQUA+aLf1fEPRKW7uSNZXSKYw@mail.gmail.com>
2015-11-11 22:06 ` Baptiste Clenet
2015-11-12 0:14 ` Baptiste Clenet
2015-11-12 8:53 ` Alexander Aring
2015-11-13 10:29 ` Baptiste Clenet
2015-11-13 10:54 ` Alexander Aring
2015-11-13 13:34 ` Baptiste Clenet
2015-11-13 18:04 ` LL address and IPv6 address Michael Richardson
2015-11-14 10:35 ` Alexander Aring
2015-11-16 14:46 ` Stefan Schmidt
2015-11-16 15:11 ` Stefan Schmidt
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).