From 12661e2a57f10bdc0906de860289f307702d0677 Mon Sep 17 00:00:00 2001 From: rohow Date: Mon, 24 Jun 2024 18:19:24 +0800 Subject: [PATCH] =?UTF-8?q?feat(install):=20=E6=9B=B4=E6=96=B0=E8=8A=82?= =?UTF-8?q?=E7=82=B9=E7=BD=91=E7=BB=9C=E4=BC=98=E5=8C=96=E7=9B=B8=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install/README.md b/install/README.md index 73d3067..e49a5ce 100644 --- a/install/README.md +++ b/install/README.md @@ -62,4 +62,10 @@ kubectl label nodes tca svccontroller.k3s.cattle.io/enablelb="true" ### 给master节点添加污点 ```shell kubectl taint nodes tca node-role.kubernetes.io/master:NoSchedule +``` + +### 节点网络优化 +可以在需要加速的节点屏蔽目标ip 比如85.113.71.11 让tailscale强制走drep服务器进行加速 +```shell +iptables -A OUTPUT -p udp --dport 41641 -d 85.113.71.11 -j DROP ``` \ No newline at end of file