原文:http://www.right.com.cn/forum/thread-124429-1-1.html 原理:1. snort做入侵检测是很好,但是太大太复杂,我们需要轻量化的操作.当对方进行SSH 端口的穷举攻击的时候,dropbear会在系统log中记录下特定信息如: Login attempt for nonexistent user Bad password attempt for 通过后台crontab当特定时间段内检测到一定频率的攻击,则将此IP所有数据包全部DROP忽略.…
make 命令简单说明 make V=99 V=99表示输出详细的debug信息 make world 表示编译所有 make j=2 V=99 如是多核CPU,加j=2 选项理论上能加快编译速度 make -j 2 V=99可加快编译速度(不推荐使用) 只清除某个模块 make package/qos/clean 只编译某个模块 make package/qos/clean make package/qos/compile make package/qos/install make V=99…
镜像下载.域名解析.时间同步请点击 阿里巴巴开源镜像站 一.打开openwrt终端 二.找到distfeeds.conf 进入opkg cd /etc/opkg 查看opkg内文件 ls 可以找到distfeeds.conf,并进入编辑 vi distfeeds.conf 三.进入distfeeds.conf 输入i变插入模式 i 四.替换镜像源地址 openwrt阿里云镜像源地址 https://mirrors.aliyun.com/openwrt 根据你的软件版本替换镜像源 https://…
Linux内核执行start_kernel函数时会调用kernel_init来启动init进程,流程如下图: graph LR A[start_kernel] -->B(rest_init) B --> C(kernel_init) C --> D[try_to_run_init_process] kernel_init部分代码如下: 994 if (execute_command) { 995 ret = run_init_process(execute_command); 996 i…