12 2021 档案
摘要:查看硬件信息 get hardware status 查看系统信息 get system status 查看系统运行状态 get system performance status 查看arp列表 get system arp diagnose ip arp list //详细的 查看物理接口状态
阅读全文
摘要:安装 网络用户或设备接入前进行验证 授权设备使用特定网络 核算并跟踪这些服务的使用情况 http://www.anmeng.com.cn/hostagent https://wiki.mikrotik.com/wiki/Special:RecentChanges?hidebots=1&limit=5
阅读全文
摘要:for for iterm in `pwd`; do ls ${iterm};done for((i=1;i<10;i++));do echo $i;done while i=0 while [ $i -le 10 ]; do echo $i ((i++)) done until i=0 until
阅读全文
摘要:系统变量 系统变量一般为大写字母定义 | 内置变量 | | | | : | | | | PS1 | 终端提示符 | | | OLDPWD | 上一个路径 | | | IFS | 输入分隔符 | IFS=:IFS=$'\t' IFS=$'\n' 换行符IFS=$'\n':, 多个分隔符 | | OFS
阅读全文
摘要:import os os.name ==>uname os.getcwd() ==>pwd os.chdir() ==>cd os.mkdir() ==>mkdir os.makedirs() ==>mkdir -p os.removedirs() ==>rmdir 只能删除空文件 os.listd
阅读全文
摘要:网络策略基于ip和端口控制流量(OSI 第 3 层或第 4 层)),NetworkPolicy 适用于一端或两端与 Pod 的连接,与其他连接无关。 需要依赖cni 网络插件,calico 通过自定义k8s 资源支持网络策略 配置文件 第一步:配置文件结构 字段 释义 举例 apiversion a
阅读全文
摘要:https://www.freedesktop.org/wiki/Software/systemd/ systemd # 列出docker 依赖发服务 [root@tencent-sh ~]# systemctl list-dependencies docker docker.service ● ├
阅读全文
摘要:https://www.cni.dev/ https://github.com/containernetworking/plugins https://www.rfc-editor.org/rfc/rfc7348 静态分配pod ip https://github.com/k8snetworkplu
阅读全文
摘要:tcpdump yum install tcpdump -y https://blog.51cto.com/masters/1870141 指定网卡 tcpdump -i eth0 指定协议 # 抓取udp协议的数据包 tcpdump -i eth0 -vnn udp # 抓取icmp协议的数据包
阅读全文