https://github.com/lance0/xfr
#xfr #iperf #iperf3 #MPTCP
Do you use SSH with MPTCP 🔀 for better resilience in mobility use cases or to increase the throughput? Then, feel free to check the new script to pass to ProxyCommand in the SSH config instead of using mptcpize: https://www.mptcp.dev/faq.html#how-to-enable-mptcp-support-with-openssh
Thanks to @shoragan for having shared this script!
(Hopefully the SSH maintainers will allow one of the suggested (1) (2) native MPTCP support at some points!)
Multipath TCP (MPTCP) for Linux, an extension to TCP that enhances connection redundancy and performance by utilizing multiple underlying TCP sessions simultaneously. This site provides installation guides, debugging tools, FAQs, and a list of apps supporting MPTCP, aimed at facilitating the adoption and implementation of MPTCP for Linux users and developers.
Long time no see (or read?) as we could say! The last update was in January. Since then, we have been very busy! Read on to find out what happened around MPTCP during the last few months, and which new features will be present in the future v6.18.
Multipath TCP (MPTCP) for Linux, an extension to TCP that enhances connection redundancy and performance by utilizing multiple underlying TCP sessions simultaneously. This site provides installation guides, debugging tools, FAQs, and a list of apps supporting MPTCP, aimed at facilitating the adoption and implementation of MPTCP for Linux users and developers.
MPTCP for Linux
#HackerNews #MPTCP #Linux #Networking #Multipath #TCP #OpenSource
Multipath TCP (MPTCP) for Linux, an extension to TCP that enhances connection redundancy and performance by utilizing multiple underlying TCP sessions simultaneously. This site provides installation guides, debugging tools, FAQs, and a list of apps supporting MPTCP, aimed at facilitating the adoption and implementation of MPTCP for Linux users and developers.
Angie 1.10: разбор фич, планы на 1.11
Следуя устоявшемуся квартальному ритму выпуска значимых релизов, мы выпустили стабильные версии Angie и Angie PRO 1.10 — форка nginx, развиваемого в основном бывшими ключевыми разработчиками оригинального проекта. Как и в прошлый раз , расскажем подробнее о нововведениях, приводя примеры. Вы узнаете, в чём ключевая фишка нового релиза (картинка под заголовком намекает); также слегка приоткроем завесу тайны над тем, что у нас припасено на будущее. А пока — краткий список нововведений, которые будут разобраны ниже: — автоматическое проксирование и балансировка веб-сервисов в Docker-контейнерах (или Podman); — автоматическое получение TLS-сертификатов для потокового модуля (stream); — прием соединений Multipath TCP (MPTCP); — контроль перегрузки CUBIC в QUIC-соединениях; — привязка сессий с внешним хранилищем в модуле stream; — новые режимы привязки сессий при проксировании HTTP-запросов; — режим постоянного перехода на резервную группу в модуле stream.
https://habr.com/ru/articles/932024/
#nginx #docker #вебсервер #angie #podman #acme #mptcp #quic #http3 #кластеризация
The MPTCP protocol is complex, mainly to be able to survive on the Internet where middleboxes such as NATs, firewalls, IDS or proxies can modify parts of the TCP packets. Worst case scenario, an MPTCP connection should fallback to “plain” TCP. Today, such fallbacks are rarer than before – probably because MPTCP has been used since 2013 on millions of Apple smartphones worldwide – but they can still exist, e.g. on some mobile networks using Performance Enhancing Proxies (PEPs) where MPTCP connections are not bypassed. In such cases, a solution to continue benefiting from MPTCP is to tunnel the MPTCP connections. Different solutions exist, but they usually add extra layers, and requires setting a virtual private network (VPN) up with private IP addresses between the client and the server. Here, a simpler solution is presented: TCP-in-UDP. This solution relies on eBPF, doesn’t add extra data per packet, and doesn’t require a virtual private network. Read on to find out more about that!