ip route add TXT 文件内容 via 1.1.1.1 dev eth0 table x
ip rule add from TXT 文件内容 to any table X pref x
以上的命令有什么脚本可以快速输入
curl https://ispip.clang.cn/cmcc_cidr.txt | while read ip; do ip route add ${ip} via 1.1.1.1 dev eth0 table x; ip rule add from ${ip} to any table X pref x; done