我正在尝试找到一种方法来获取多个移动宽带连接,并将它们桥接在一起以公开一个 wifi 接入点。
我想绑定手机的宽带,并复用数据。
如何做到这一点?有没有路由器,有多个wifi可以用来连接手机?
我需要编写脚本来管理数据吗?或者外面有什么东西?
我正在尝试找到一种方法来获取多个移动宽带连接,并将它们桥接在一起以公开一个 wifi 接入点。
我想绑定手机的宽带,并复用数据。
如何做到这一点?有没有路由器,有多个wifi可以用来连接手机?
我需要编写脚本来管理数据吗?或者外面有什么东西?
This is actually a little more complicated than it seems at first as you need to consider both ends of the connection.
You can combine multiple lower bandwidth connections as you suggest to provide an aggregated capacity at your WiFI access point, but you need to remember that the back end will still see multiple individual connections. So if you have a single server that you are trying to receive a single large stream from, it will see multiple smaller connections instead of a single large one.
You can get round this by adding some functionality on the server side to 'bind' or 'bond' the individual streams and make them appear as a single large connection to your server but you usually need a service from your ISP or some specialist 'bonding' provider to achieve this.
See the very good discussion and links in the answer below on Superuser for more information: