Re: [android-kernel] How to create Virtual Network Interface on Android

2013-07-18 Thread Gaetano Calcagno
Hi Yuan, I have to do the same think on my Galaxy Samsung S2, but I'm not able to find the /proc/config.gz to reconfigure the kernel. Please, can you explain me better how can I add the veth device driver to the kernel? Thanks Gaetano Il giorno martedì 22 febbraio 2011 21:24:05 UTC+1, Te-Yuan

Re: [android-kernel] How to create Virtual Network Interface on Android

2011-02-22 Thread Te-Yuan Huang
I solved this problem, and for others' reference: The veth device driver is not included in android kernel as default, thus, one needs to included it in order for 'ip link add type veth' to work To be more specific, set CONFIG_VETH=y then everything will work. -Te-Yuan On Mon, Feb 21, 2011 at

[android-kernel] How to create Virtual Network Interface on Android

2011-02-22 Thread Te-Yuan Huang
Hi all, (posted a similar post on android-platform, but maybe android-kernel is a more suitable for this question ) I would like to create a virtual network interface on android, just like usb0 or rmnet0/1/2. I tried to follow the traditional way on linux, that is: "ip link add type veth". Therefo