06 2017 档案

摘要:软件安装 # yum -y install openldap-servers openldap-clients # systemctl start slapd # systemctl enable slapd 密码修改 # slappasswd New password: Re-enter new 阅读全文
posted @ 2017-06-26 17:40 Fatt 阅读(1992) 评论(0) 推荐(0)
摘要:在ac上面:sys_hidecmd 隐藏模式wlan ap ap1 exec-control enable ##目前为disable状态wlan ap ap1 telnet enable ##目前为enable状态 可能是v7的之前版本默认是开启的R5119P12及以后的版本才需要配置这个命令开启[ 阅读全文
posted @ 2017-06-22 16:23 Fatt 阅读(3937) 评论(0) 推荐(0)
摘要:ulimit -n 修改 ulimit -n 修改 临时修改: ulimit -SHn 65535 永久修改: echo '* - nofile 65535' >> /etc/security/limits.conf Linux系统里打开文件描述符的最大值,一般缺省值是1024,对一台繁忙的服务器来 阅读全文
posted @ 2017-06-21 09:30 Fatt 阅读(671) 评论(0) 推荐(0)
摘要:he following example demonstrates using audit2allow to create a policy module: A denial and the associated system call are logged to /var/log/audit/au 阅读全文
posted @ 2017-06-09 16:49 Fatt 阅读(915) 评论(1) 推荐(0)
摘要:# <font color=DarkCyan >syslinux启动盘制作</font> # ### 准备工具 ### 1. BOOTICEx64 软件 ##分区引导制作工具 2. syslinux6.03 软件包 3. bootmgr 软件 ##NT内核引导工具 ### 制作步骤 ### 1、保证 阅读全文
posted @ 2017-06-07 14:48 Fatt 阅读(1776) 评论(0) 推荐(0)
摘要:防范DDOS攻击脚本 #防止SYN攻击 轻量级预防 iptables -N syn-flood iptables -A INPUT -p tcp --syn -j syn-flood iptables -I syn-flood -p tcp -m limit --limit 3/s --limit- 阅读全文
posted @ 2017-06-02 11:13 Fatt 阅读(5370) 评论(0) 推荐(0)