0

I'm started exploring MPTCP recently and started using it on my Ubuntu 18.04. My MPTCP version is 0.95. curl http://multipath-tcp.org on my terminal is returning Yay, you are MPTCP-capable! You can now rest in peace. I further checked it on http://amiusingmptcp.de/ which is telling me I'm using MPTCP. Now I want to write my own default scheduler. So I clicked on appropriate link on http://amiusingmptcp.de/ page which took me to http://progmp.net/progmp.html page. In this page it is showing that I'm not using MPTCP connection so the demo page is showing limited features. I have attached the relevant screenshots. Can someone please tell me how to make my own scheduler? ThanksProgMP pageam_i_using_MPTCP

4

1 回答 1

0

看来您必须在多个界面上才能这样做。此外,对于没有 Internet 的基于本地计算机的设置(仅限本地网络),您可以将 progmp 内核安装到您自己的计算机上。

为了在您的终端中执行此操作,

wget -c http://progmp.net/tools/linux-image-4.1.20-ProgMp.deb
# then 
sudo dpkg -i linux-image-4.1.20-ProgMp.deb
to install the kernel

之后启动到 grub 菜单并选择 progMP 内核。uname -a应该提示内核版本 4.1.20 。现在要编写自己的调度程序,您可以从 progmp.net 站点下载示例代码并使用 python 脚本将其添加到系统中。这是进一步的文档,以便继续,以及详细的步骤: http: //progmp.net/

于 2020-05-16T03:17:17.187 回答