After start openvpn, the IP forwarding from my device to Internet becomes very slow. After I stop the openvpn, it recovered again. I don't know why.
I have 3 interfaces, one is the ethernet eth0, the other is usbnet usb0, another is vpn tunnel tun0.
$ifconfig
eth0 Link encap:Ethernet HWaddr 78:2b:cb:b0:a0:47
inet addr:192.168.12.47 Bcast:192.168.12.255 Mask:255.255.255.0
inet6 addr: fe80::7a2b:cbff:feb0:a047/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:18219339 errors:0 dropped:0 overruns:0 frame:0
TX packets:14645848 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:22676117872 (22.6 GB) TX bytes:15492132284 (15.4 GB)
Interrupt:20 Memory:e1a00000-e1a20000
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:493592 errors:0 dropped:0 overruns:0 frame:0
TX packets:493592 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:35071287 (35.0 MB) TX bytes:35071287 (35.0 MB)
tun0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet addr:10.8.0.6 P-t-P:10.8.0.5 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
RX packets:8314 errors:0 dropped:0 overruns:0 frame:0
TX packets:7191 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
RX bytes:7125387 (7.1 MB) TX bytes:1215030 (1.2 MB)
usb0 Link encap:Ethernet HWaddr ea:3e:b6:34:50:14
inet addr:169.254.0.2 Bcast:169.254.0.3 Mask:255.255.255.252
inet6 addr: fe80::e83e:b6ff:fe34:5014/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:9482 errors:0 dropped:0 overruns:0 frame:0
TX packets:9119 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1481344 (1.4 MB) TX bytes:988820 (988.8 KB)
The route table is like:
$route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.12.1 0.0.0.0 UG 0 0 0 eth0
8.8.8.8 10.8.0.5 255.255.255.255 UGH 0 0 0 tun0
10.8.0.1 10.8.0.5 255.255.255.255 UGH 0 0 0 tun0
10.8.0.5 0.0.0.0 255.255.255.255 UH 0 0 0 tun0
169.254.0.0 0.0.0.0 255.255.255.252 U 1 0 0 usb0
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 usb0
192.168.12.0 0.0.0.0 255.255.255.0 U 1 0 0 eth0
Then I enabled IP forwarding using commands:
sudo iptables --table nat --append POSTROUTING --out-interface eth0 -j MASQUERADE
sudo iptables --append FORWARD --in-interface usb0 -j ACCEPT
sudo bash -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
I added the default route in the device:
Device Interface: $ifconfig
ecm0: flags=8a43<UP,BROADCAST,RUNNING,ALLMULTI,SIMPLEX,MULTICAST> mtu 1500
address: ea:3e:b6:34:50:12
inet 169.254.0.1 netmask 0xfffffffc broadcast 169.254.0.3
inet6 fe80::e83e:b6ff:fe34:5012%ecm0 prefixlen 64 scopeid 0x4
The Device route table:
$route -n
Internet:
Destination Gateway Flags
default 169.254.0.2 UG
127.0.0.1 127.0.0.1 UH
127.0.0.2 127.0.0.2 UH
127.0.0.3 127.0.0.3 UH
169.254.0.0/30 link#4 U
169.254.0.2 ea:3e:b6:34:50:14 UHL
169.254.0.3 link#4 UHL
I don't know why the network is very slow from the device to the Internet.
# traceroute 192.168.12.1
traceroute to 192.168.12.1 (192.168.12.1), 64 hops max, 40 byte packets
1 n (169.254.0.2) 2.000 ms 2.000 ms 1.000 ms
2 192.168.12.1 (192.168.12.1) 1.000 ms 3.000 ms *
The 2 is very slow, I waited it for about 10 seconds.
Please help me, thanks.
Don't know why the problem is resolved after I delete "8.8.8.8 10.8.0.5 255.255.255.255 UGH 0 0".