![]() |
2009-10-20
, 08:53
|
Posts: 18 |
Thanked: 18 times |
Joined on Oct 2009
@ Russia
|
#72
|
In my humble but informed opinion, you're much better off doing TCP/IP in userspace for the MMS GPRS context. The kernel pieces are already in place for this: the pn_pep kernel module can provide either a virtual network device, but also a plain sequenced packets socket. In the latter case, you can read and write raw IP packets in isolation.
![]() |
2009-10-20
, 16:32
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#73
|
The Following 2 Users Say Thank You to cpitchford For This Useful Post: | ||
![]() |
2009-10-20
, 16:35
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#74
|
![]() |
2009-10-20
, 19:50
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#75
|
forgot to mention, wouldn't work with IPv6 as I believe the ipv6 version of the ROUTE iptables module requires a main kernel change.. but I'm guessing that's not too much of a problem if the MMS connection is limited to ipv4 for the moment
![]() |
2009-10-20
, 21:12
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#76
|
![]() |
2009-10-21
, 02:25
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#77
|
IPv6 is very unlikely to be a problem since I doubt that all handsets that support MMS support ipv6, but thought I should point it out!
I'll try to explain my thinking behind using netfilter.
wlan0 192.168.1.10/24 default gw 192.168.1.1
Now we connect to the MMS APN..
pppX 192.168.1.200 <=> 192.168.1.50
MMSC: 195.92.248.7
It *could* happen..
first problem. If the device is currently talking to 192.168.1.200 or 192.168.1.50 via WLAN, those two IP addresses are now present on two interfaces..
If the device is talking to www.orange.co.uk (which happens to have the same IP as the MMSC) which route does it use?
in your example, what if the mmsc is 192.168.1.1?
What if it clashes with a local wlan address?
what if the mmsc has the same IP address as wlan0?
what if the ppp interface obtains an IP address that matches a local wlan IP or host?
Overlaps are very bad.. I think this idea might solve many overlap problems..
If we use the ipt_ROUTE module, we can direct traffic out of specific interface based on ipt matching.. which is fairly good..
[...]
dev If force the route to be associated with the specified device, as the kernel will otherwise try to determine the device on its own (by checking already existing routes and device specifications, and where the route is added to). In most normal networks you won't need this.
[...]
The vital thing here is to avoid clashes and since home networks use rfc1918 and operators use rfc1918 the chances are real.
The Following User Says Thank You to allnameswereout For This Useful Post: | ||
![]() |
2009-10-21
, 09:57
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#78
|
The Following User Says Thank You to cpitchford For This Useful Post: | ||
![]() |
2009-10-21
, 15:34
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#79
|
Hi again,
The difference between ipt_route and iproute2's dev flag is that iproute2 cannot direct an IP to a route if the IP is assigned to a local interface.. if eth0 is 1.2.3.4, you cannot route 1.2.3.4 via a gateway.. with ipt_route you can effectively do this..
My thoughts were that using that technique would minimise disruptions to other connections (ppp or wlan). I appreciate adding static host routes using iproute2, but the danger of local Ip and router gw and destination ip collisions means, as you said, you'd have to down the other active connection.. I was thinking of a way to avoid that..
![]() |
2009-10-21
, 15:46
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#80
|
The Following 2 Users Say Thank You to cpitchford For This Useful Post: | ||
In my humble but informed opinion, you're much better off doing TCP/IP in userspace for the MMS GPRS context. The kernel pieces are already in place for this: the pn_pep kernel module can provide either a virtual network device, but also a plain sequenced packets socket. In the latter case, you can read and write raw IP packets in isolation.