由于单机双网卡机器需要做源进源出配置才能确保国内IP正常访问,因此做此教程方便大家快速配置。 1. 创建一个脚本文件,例如 /usr/local/bin/setup_route.sh #!/bin/bash # 添加路由表 if ! grep -q "custom_table" /etc/iproute2/rt_tables; then echo "1 custom_table" >> ...