USB tethering issues

2011-10-14 Thread Roy Samuel (RBEI/ECG1)
Hi, I have been following the thread "USB tethering issues" on this mailing list. I would like to know if the current version of connman (v. 0.75 or later) has the "gadget" driver support to create a functional USB tethering. I would like to be able to connect my host device running Meego, to a

[PATCH 1/2] ipconfig: set/unset IPv4 rp_filter setting

2011-10-14 Thread Jukka Rissanen
--- src/connman.h |4 ++ src/ipconfig.c | 89 2 files changed, 93 insertions(+), 0 deletions(-) diff --git a/src/connman.h b/src/connman.h index e2b0f1c..2d03a8e 100644 --- a/src/connman.h +++ b/src/connman.h @@ -249,6 +249,10 @@ int

[PATCH 2/2] service: Activate loose mode routing

2011-10-14 Thread Jukka Rissanen
If more than one service is connected at the same time, then activate loose mode routing by setting the /proc/sys/net/ipv4/conf/all/rp_filter to value 2 If the loose mode routing is not activated, then packets are not routed properly if services are connected to same subnet. The original value of

[PATCH 0/2] Allow routing when connected to same subnet

2011-10-14 Thread Jukka Rissanen
Hi, when connman connects two or more services at the same time, then it is possible that Linux kernel setting will prevent proper routing from happening as many distros set the IPv4 knob /proc/sys/net/ipv4/conf/all/rp_filter to 1. Setting the knob to value 2 will fix the routing issue. This patc