• DNS压力测试


    安装 queryperf

    cd /usr/local/src

    wget http://ftp.isc.org/isc/bind9/9.12.1/bind-9.12.1.tar.gz

    编译queryperf

    tar -zxvf bind-9.12.1.tar.gz

    cd /usr/local/src/bind-9.12.1/contrib/queryperf

    ./configure; make     # 会生成queryperf 二进制文件

    cp queryperf /usr/bin

    queryperf使用格式:

    queryperf [-d datafile] [-s server_addr] [-p port] [-q num_queries]

    -d: 后面接上一个文件,文件的内容是用户对DNS的请求,一行为一条请求,所以为了测试,我们可以在里面写上几千几万条。

    -s: DNS服务器地址

    -p: DNS服务器端口

    -q: 请求多少次

    sh批量生产记录:

    cat gen_record.sh

    #!/bin/sh
    #a_record="ns2.paiconf.com"
    
    a_record=$1
    num=$2
    file_path=$3
    
    if [ ${a_record} -a ${num} -a ${file_path} ]; then
    var=1
    while [ $var -le ${num} ]
    do
    echo "${a_record} A " >> ${file_path}
    var=$(($var + 1 ))
    done
    else
        echo "use: ./sh [a_record] [num] [file_path]"
    fi

    使用方法 ./gen_record.sh www.baidu.com 10000 dnstest.txt

    queryperf -d dnstest.txt -s 10.100.3.2 

    其他开源测试工具tcpcopy

  • 相关阅读:
    正则表达式入门(3)
    正则表达式入门(2)
    正则表达式入门
    函数的参数传递
    python常用库之random
    插入排序与归并排序
    浅拷贝与深拷贝
    装饰器学习小程序
    Python的“is”与“==”
    Oracle中断中止exp/imp和expdp/impdp数据库导入导出
  • 原文地址:https://www.cnblogs.com/linkenpark/p/8952350.html
Copyright © 2020-2023  润新知