安装 dig

# Debian/Ubuntu
apt-get install knot-dnsutils
# CentOS/RHEL
dnf install bind-utils

批量进行

下面以 frytea.com 为例,使用 dig 命令获取 frytea.com 的 IP 地址,然后添加路由规则。以下是具体步骤:

  1. 首先使用 dig 获取 IP 地址:

    dig frytea.com +short
  2. 将获取到的每个 IPv4 地址添加路由规则:

    # 假设 dig 获取到的 IP 是 1.2.3.4,则运行:
    ip route add 1.2.3.4/32 via 192.168.25.18

如果你想要一个自动化的脚本来完成这个任务,可以使用以下命令:

for ip in $(dig frytea.com +short | grep -E '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'); do
    ip route add ${ip}/32 via 192.168.25.18
done

这个命令会:

  1. 使用 dig 获取所有 IP
  2. 使用 grep 过滤出 IPv4 地址
  3. 为每个 IPv4 地址添加路由规则,指向 192.168.25.18

注意:

  • 需要 root 权限执行添加路由的命令
  • 如果路由已经存在,需要先删除旧路由(使用 ip route del 命令)
  • 确保 192.168.25.18 在你的网络中是可达的
最后修改:2024 年 12 月 13 日
如果觉得我的文章对你有用,请随意赞赏