The Following User Says Thank You to allnameswereout For This Useful Post: | ||
![]() |
2009-10-24
, 02:38
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#82
|
I must admit, there were two minor api changes in the module.. however.. and this is a big difference
eth0 1.2.3.4
ppp0 192.168.1.1 <-> 192.168.1.254
If the MMSC ip address is 1.2.3.4 you cannot (afaik) use iproute2 to instruct the system to route via 192.168.1 254 as it is treated locally. With the ipt_route module, you can.
$ host -t a talk.maemo.org talk.maemo.org is an alias for forums.internettablettalk.com. forums.internettablettalk.com has address 74.86.202.247 $ ip route get 74.86.202.247 74.86.202.247 via 192.168.178.1 dev wlan3 src 192.168.178.33 cache mtu 1500 advmss 1460 hoplimit 64 $ sudo ping -c 3 74.86.202.247 PING 74.86.202.247 (74.86.202.247) 56(84) bytes of data. 64 bytes from 74.86.202.247: icmp_seq=1 ttl=53 time=141 ms 64 bytes from 74.86.202.247: icmp_seq=2 ttl=53 time=138 ms 64 bytes from 74.86.202.247: icmp_seq=3 ttl=53 time=134 ms $ sudo ifconfig wlan3:0 74.86.202.247 netmask 255.255.255.255 $ ip route get 74.86.202.247 local 74.86.202.247 dev lo src 74.86.202.247 cache <local> mtu 16436 advmss 16396 hoplimit 64 $ sudo ping -c 3 74.86.202.247 PING 74.86.202.247 (74.86.202.247) 56(84) bytes of data. 64 bytes from 74.86.202.247: icmp_seq=1 ttl=64 time=0.093 ms 64 bytes from 74.86.202.247: icmp_seq=2 ttl=64 time=0.073 ms 64 bytes from 74.86.202.247: icmp_seq=3 ttl=64 time=0.073 ms $ ip addr ls ppp0 7: ppp0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 3 link/ppp inet 10.67.147.187 peer 10.6.6.6/32 scope global ppp0 $ sudo route add -host 10.67.147.188 gw 10.6.6.6 $ ip route ls dev ppp0 10.67.147.188 via 10.6.6.6 10.6.6.6 proto kernel scope link src 10.67.147.187 $ sudo iptables -F -t raw ; sudo iptables -F -t rawpost ; sudo iptables -F -t nat ; sudo iptables -F -t mangle ; sudo iptables -F $ sudo iptables -t raw -A PREROUTING -i ppp0 -s 74.86.202.247 -j RAWSNAT --to-source 10.67.147.188 $ sudo iptables -t raw -A OUTPUT -d 10.67.147.188 -j RAWDNAT --to-destination 74.86.202.247 $ ip route get 74.86.202.247 local 74.86.202.247 dev lo src 74.86.202.247 cache <local> mtu 16436 advmss 16396 hoplimit 64 $ sudo ping -c 3 74.86.202.247 PING 74.86.202.247 (74.86.202.247) 56(84) bytes of data. 64 bytes from 74.86.202.247: icmp_seq=1 ttl=64 time=0.090 ms 64 bytes from 74.86.202.247: icmp_seq=2 ttl=64 time=0.070 ms 64 bytes from 74.86.202.247: icmp_seq=3 ttl=64 time=0.077 ms $ ip route get 10.67.147.188 10.67.147.188 via 10.6.6.6 dev ppp0 src 10.67.147.187 cache mtu 1500 advmss 1460 hoplimit 64 $ sudo ping -c 3 10.67.147.188 PING 10.67.147.188 (10.67.147.188) 56(84) bytes of data. 64 bytes from 10.67.147.188: icmp_seq=1 ttl=42 time=403 ms 64 bytes from 10.67.147.188: icmp_seq=2 ttl=42 time=452 ms 64 bytes from 10.67.147.188: icmp_seq=3 ttl=42 time=431 ms $ sudo -s # echo 10.67.147.188 talk.maemo.org >> /etc/hosts # exit $ grep hosts /etc/nsswitch.conf hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4 $ lynx -source talk.maemo.org | grep "meta name" <meta name="generator" content="vBulletin 3.8.2" /> <meta name="keywords" content="internet tablet, nokia 770, nokia, 770, n800, n810, n900, maemo, maemo.org, linux, wifi, bluetooth" /> <meta name="description" content="talk.maemo.org" />
iptables -t mangle -A OUTPUT \
-m owner ! --uid-owner mms-service \
-j ROUTE --gw $my_default_gw --oif $my_internet_if
$ ip route ls dev ppp0
10.6.6.6 proto kernel scope link src 10.66.15.69
[...]
Doing it through userspace as you mentioned could be a viable alternative.. netfilter lets you attack a packet *almost* prior to routing which means you can hit things that would resolve locally without serious routing.. iproute2 is pretty focused on the routing layer..
iptables -t nat -A POSTROUTING -d $remote_mmsc \
-m owner --uid-owner mms-service \
-j SNAT --to-source $my_local_mms_ip
iptables -t nat -A POSTROUTING -d $remote_mmsc \
-m owner --uid-owner mms-service \
-j MASQUERADE
The Following User Says Thank You to allnameswereout For This Useful Post: | ||
![]() |
2009-10-24
, 10:41
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#83
|
The Following 3 Users Say Thank You to cpitchford For This Useful Post: | ||
![]() |
2009-10-25
, 14:30
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#84
|
The Following User Says Thank You to cpitchford For This Useful Post: | ||
![]() |
2009-10-26
, 17:59
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#85
|
It turns out you could almost do it with policy routing if you moved the ppp / wlan interface definitions from table 255 (local) or inserted a rule with priority -1.. either way it just won't let you do it.. and frankly what we'd like to achieve is a bit counter-intuitive.. so I can't really blame it
At startup time the kernel configures the default RPDB consisting of three rules:
1. Priority: 0, Selector: match anything, Action: lookup routing table local (ID 255). The local table is a special routing table containing
high priority control routes for local and broadcast addresses.
Rule 0 is special. It cannot be deleted or overridden.
2. Priority: 32766, Selector: match anything, Action: lookup routing table main (ID 254). The main table is the normal routing table contain‐
ing all non-policy routes. This rule may be deleted and/or overridden with other ones by the administrator.
3. Priority: 32767, Selector: match anything, Action: lookup routing table default (ID 253). The default table is empty. It is reserved for
some post-processing if no previous default rules selected the packet. This rule may also be deleted.
More working.. pppd doesn't as it stands offer a way of obtaining the allocated local and peer IP address without setting the ppp interface. This means ppp0 could be set to a clashing IP addresss the moment a link is established between the device and the apn..
Even if pppX is down, the fact the local address has been defined could screw up a wlan connection. For example.. if wlan0 is talking to 192.168.1.200, then ppp0 is started and receives a local address 192.168.1.200, even if ppp0 is never brought "up", the clash still takes effect and the established connection to 192.168.1.200 will fail.
I've created a couple of scripts that will tie into PPPD. First is /etc/ppp/ip-pre-up . This script is run when pppX is configured, but before it is brought up.
![]() |
2009-10-26
, 23:29
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#86
|
The Following User Says Thank You to cpitchford For This Useful Post: | ||
![]() |
2009-10-27
, 00:10
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#87
|
![]() |
2009-11-05
, 16:04
|
Posts: 547 |
Thanked: 1,383 times |
Joined on Sep 2009
@ Stockholm, Sweden
|
#88
|
The Following User Says Thank You to frals For This Useful Post: | ||
![]() |
2009-11-05
, 17:51
|
Posts: 303 |
Thanked: 175 times |
Joined on Oct 2009
@ London UK
|
#89
|
![]() |
2009-11-07
, 21:05
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#90
|
The problem with negative routing (if NOT mms, then route wlan0) is what happens if wlan0 is missing or wlan0 goes down and comes back up as pppX..
All the ip policy rules/routes only apply to MMS traffic.. If you remove them, you're left with the default system.. This means an internet connection can be started and changed whilst connection to the APN is active.. I don't think it is safe to have a rule like "redirect non mms traffic to wlan0" because that might change to ppp1, or maybe wlan0 again.. or it might disappear
2) pppd from the maemo source, patch to negotiate IP but apply hard coded values
secret_ip is the box I'm connecting to (could be the MMSC), and secret_host is its hostname (irrelevant though).
I'll use this with OpenVPN and will then play with -m owner.
I'll try to get rid of using eth0 (because N900 doesn't have). This setup is on Linux 2.6.31 x86-64.Goosfraba! All text written by allnameswereout is public domain unless stated otherwise. Thank you for sharing your output!
Last edited by allnameswereout; 2009-10-21 at 22:28.