摘要:
1. docker最佳实践 https://yeasy.gitbook.io/docker_practice/install/centos 2. 优质学习网站 https://www.akiraka.net/ 阅读全文
摘要:
1. 查询AS信息 https://bgp.he.net/ 2. ip定位 https://github.com/gaoyifan/china-operator-ip https://github.com/misakaio/chnroutes2 3. 公共dns http://public-dns. 阅读全文
摘要:
https://www.dns-oarc.net/index.php/oarc/services/tldmon 阅读全文
摘要:
1. 安装dsc yum install -y libpcap-devel wget https://www.dns-oarc.net/files/dsc/dsc-2.13.0.tar.gztar -xf dsc-2.13.0.tar.gz cd dsc-2.13.0 ./configure --p 阅读全文
摘要:
import yaml # pip ibstall pyyaml import requests import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) def download(url): 阅读全文
摘要:
1. 定义进度条 from tqdm import tqdm def tqdmWrapViewBar(*args, **kwargs): pbar = tqdm(*args, **kwargs) # make a progressbar last = [0] # last known iterati 阅读全文
摘要:
1. 使用示例 https://www.cnblogs.com/rsapaper/p/15493262.html http://timd.cn/go/gopacket/ 2. 使用gopacket发送dns数据包 package main import ( "net" "github.com/goo 阅读全文
摘要:
1. 打开vmware,选择centos7.6镜像,开始安装操作系统 2. 安装完毕后,关机,点击“编辑虚拟机设置”按钮,点击“处理器”,在右侧勾选第三个“虚拟化IOMMU”。由于我的宿主机是win11,已经支持了Intel VT-x,所以第一个选项就不必勾选了,win7和win10可能需要勾选。 阅读全文
摘要:
需要分别配置logrotate和supervisor 1. 配置logrotate [root@node1 logrotate.d]# cat /etc/logrotate.d/netqps /root/netqps/files/*log { #指定要切割日志的路径,并指定日志结尾,便于匹配 rot 阅读全文
摘要:
1. ansible通过通配符从多个远端服务器fetch日志文件[root@localhost data]# cat ../playbook/fetch.yml - hosts: all tasks: - name: find_file find: paths: /root/netqps/files 阅读全文