Author Archives: jiazi

Finally: MP-OLSR becomes RFC8218

After ten years of hard work (well… not that hard), 20 revisions, MP-OLSR, the Multipath Extension for the Optimized Link State Routing Protocol Version 2 (OLSRv2)  finally gets its RFC number: 8218 (https://tools.ietf.org/html/rfc8218). MP-OLSR is my major work of my PhD … Continue reading

Posted in Uncategorized | Leave a comment

Yes, our IoT lab

Recently, our Network Research Team@X has been acquiring widgets for building our small, but neat IoT lab, to: teach the students build test beds and experiments build IoT prototype and mostly, have fun With different kinds of main boards, radios, … Continue reading

Posted in 技术 Tech | Leave a comment

Polytechinique’s Executive Education on IoT is on the way!

Recently, I participated in Polytecnique’s Executive Education program, giving classes for the hands-on session, which means, wiring the boards, connecting different kinds of sensors, writing programs to drive the hardware, and eventually building connected objects for the “smart” world! X’s … Continue reading

Posted in 新闻 Events | Tagged , , | Leave a comment

Flashing Riot OS for Arduino Boards

Update on Feb 03 2017: I asked the question on the RIOT-OS issue tracker (https://github.com/RIOT-OS/RIOT/issues/6535) Apparently, the problem with Uno and Mega2560 is due to the fact that I used the VM provided (https://github.com/RIOT-OS/RIOT/tree/master/dist/tools/vagrant ). When I retried without the VM, … Continue reading

Posted in 技术 Tech | Tagged , | 3 Comments

Getting the same address of the local variable in GDB? Think about the address randomization

When playing with GDB this afternoon, I noticed a “strange” behavior. Even with simple code like #include <stdio.h> int main(void) { int x = 1; printf(“x=%d\t address: %p\n”, x, &x); return 0; } In GDB, we always get the same … Continue reading

Posted in 技术 Tech | Leave a comment

Mount time capsule to Linux/Raspberrypi

sudo mount.cifs //IP_ADDRESS/DIR MOUNT_POINT -o “user=YOUR_USERNAME,passwd=YOUR_PWD,sec=ntlm” echo “//IP_ADDRESS/MOUNT_POINTMOUNT_POINT cifs user=MOUNT_POINT,pass=YOUR_PWD,rw,uid=1000,iocharset=utf8 0 0” >> /etc/fstab  

Posted in 技术 Tech | Leave a comment

Gnuplot with png and pdf terminal

One might get messages like unknown or ambiguous terminal type; type just ‘set terminal’ for a list To use png as terminal in GNUPlot, libgd2-dev library is needed (which is not provided in some distributions). After installing libgd2-dev, one needs to … Continue reading

Posted in 技术 Tech | Leave a comment

Making use of external libraries in NS3

There are have been some articles introducing how to make used of external libraries in NS3, such as HOWTO use ns-3 with other libraries https://www.nsnam.org/wiki/HOWTO_use_ns-3_with_other_libraries Extending NS3 with your module and extra libraries http://shieldroute.blogspot.fr/2012/08/extending-ns3-with-your-module-and.html   But they are not very … Continue reading

Posted in 技术 Tech | 2 Comments