如果我输入常用指令到终端
# Create a TUN interface
ip tun tap add dev tun0 mode tun
ip tun tap add dev tun1 mode tun
# Set the addresses and bring up the interface
ifconfig tun0 10.0.0.1 up
ifconfig tun1 10.0.0.2 up
我可以创建两个虚拟接口 http://ppt.cc/vKI4n
我尝试使用以下java构建器(构建器是用于创建VPN接口的助手类)
private ParcelFileDescriptor mInterface, mInterface2;
Builder builder = new Builder();
Builder builder2 = new Builder();
builder.addAddress("10.8.0.2", 20);
builder.addRoute("0.0.0.0", 0);
builder2.addAddress("10.8.0.3", 20);
mInterface = builder.establish();
mInterface2 = builder2.establish();
但是构建器无法同时创建两个接口。
mInterface2将覆盖mInterface1。
如何使用java代码同时创建两个界面?