View Single Post
allnameswereout's Avatar
Posts: 3,397 | Thanked: 1,212 times | Joined on Jul 2008 @ Netherlands
#81
OK, I have policy routing working. Although I use Linux kernel 2.6.31 on x86-64 and am using policy routing on 2 interfaces: 1 WLAN (to DSL) 1 PPP (to Bluetooth DUN to GPRS).

secret_ip is the box I'm connecting to (could be the MMSC), and secret_host is its hostname (irrelevant though).

Code:
$ sudo vconfig add lo
Added VLAN with VID == 0 to IF -:lo:-

$ sudo ip addr ls dev vlan0
17: vlan0@lo: <LOOPBACK> mtu 16436 qdisc noop state DOWN 
    link/ether 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 10.0.0.1/32 scope global vlan0

$ sudo ip route ls
10.6.6.6 dev ppp0  proto kernel  scope link  src 10.15.96.83
192.168.178.0/24 dev wlan3  proto kernel  scope link  src 192.168.178.33
169.254.0.0/16 dev wlan3  scope link  metric 1000
default via 192.168.178.1 dev wlan3  proto static

$ grep voda /etc/iproute2/rt_tables
200 voda

$ sudo ip rule ls
0:	from all lookup local 
32765:	from 10.0.0.1 to secret_ip lookup voda
32766:	from all lookup main 
32767:	from all lookup default

$ sudo ip route ls table voda
default via 10.6.6.6 dev ppp0

$ sudo iptables -L POSTROUTING -t nat -n
Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination         
SNAT       all  --  10.0.0.1             0.0.0.0/0           to:10.15.96.83

$ sudo ip route get secret_ip from 10.0.0.1 
secret_ip from 10.0.0.1 via 10.6.6.6 dev ppp0 
    cache  mtu 1500 advmss 1460 hoplimit 64

$ sudo ip route get secret_ip from any
secret_ip via 192.168.178.1 dev wlan3  src 192.168.178.33 
    cache  mtu 1500 advmss 1460 hoplimit 64

$ sudo ping -c 8 -I 10.0.0.1 secret_ip
PING secret_host (secret_ip) from 10.0.0.1 : 56(84) bytes of data.
64 bytes from secret_host (secret_ip): icmp_seq=1 ttl=47 time=2241 ms
64 bytes from secret_host (secret_ip): icmp_seq=2 ttl=47 time=1269 ms
64 bytes from secret_host (secret_ip): icmp_seq=3 ttl=47 time=270 ms
64 bytes from secret_host (secret_ip): icmp_seq=4 ttl=47 time=176 ms
64 bytes from secret_host (secret_ip): icmp_seq=5 ttl=47 time=225 ms
64 bytes from secret_host (secret_ip): icmp_seq=6 ttl=47 time=207 ms
64 bytes from secret_host (secret_ip): icmp_seq=7 ttl=47 time=212 ms
64 bytes from secret_host (secret_ip): icmp_seq=8 ttl=47 time=224 ms

--- secret_host ping statistics ---
8 packets transmitted, 8 received, 0% packet loss, time 7009ms
rtt min/avg/max/mdev = 176.667/603.478/2241.316/708.549 ms, pipe 3

$ sudo ping -c 8 secret_ip
PING secret_host (secret_ip) 56(84) bytes of data.
64 bytes from secret_host (secret_ip): icmp_seq=1 ttl=57 time=14.0 ms
64 bytes from secret_host (secret_ip): icmp_seq=2 ttl=57 time=13.8 ms
64 bytes from secret_host (secret_ip): icmp_seq=3 ttl=57 time=13.6 ms
64 bytes from secret_host (secret_ip): icmp_seq=4 ttl=57 time=13.2 ms
64 bytes from secret_host (secret_ip): icmp_seq=5 ttl=57 time=13.7 ms
64 bytes from secret_host (secret_ip): icmp_seq=6 ttl=57 time=13.3 ms
64 bytes from secret_host (secret_ip): icmp_seq=7 ttl=57 time=14.5 ms
64 bytes from secret_host (secret_ip): icmp_seq=8 ttl=57 time=13.6 ms

--- secret_host ping statistics ---
8 packets transmitted, 8 received, 0% packet loss, time 7010ms
rtt min/avg/max/mdev = 13.260/13.761/14.504/0.386 ms

$ ssh -b 10.0.0.1 secret_ip
[..]

$ ssh secret_ip
[..]

$ sudo ping -c 8 -I 10.0.0.1 talk.maemo.org
PING forums.internettablettalk.com (74.86.202.247) from 10.0.0.1 : 56(84) bytes of data.

--- forums.internettablettalk.com ping statistics ---
8 packets transmitted, 0 received, 100% packet loss, time 7008ms

$ sudo ping -c 8 talk.maemo.org
PING forums.internettablettalk.com (74.86.202.247) 56(84) bytes of data.
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=1 ttl=53 time=134 ms
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=2 ttl=53 time=133 ms
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=3 ttl=53 time=133 ms
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=4 ttl=53 time=133 ms
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=5 ttl=53 time=136 ms
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=6 ttl=53 time=133 ms
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=7 ttl=53 time=133 ms
64 bytes from reggiesuplido.com (74.86.202.247): icmp_seq=8 ttl=53 time=133 ms

--- forums.internettablettalk.com ping statistics ---
8 packets transmitted, 8 received, 0% packet loss, time 7009ms
rtt min/avg/max/mdev = 133.269/133.879/136.043/0.981 ms
jfdh@entheogen:~$ sudo ping -c 8 -I 10.0.0.1 talk.maemo.org
PING forums.internettablettalk.com (74.86.202.247) from 10.0.0.1 : 56(84) bytes of data.

--- forums.internettablettalk.com ping statistics ---
8 packets transmitted, 0 received, 100% packet loss, time 7008ms
All thanks to this great howto!

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.
 

The Following User Says Thank You to allnameswereout For This Useful Post: