上一页 1 2 3 4 5 6 7 8 9 ··· 22 下一页
摘要: # iptables -t nat -A PREROUTING -p udp --dport 314 -j DNAT --to-destination 本机IP:3140 # cp -a /etc/sysconfig/iptables.rules /etc/sysconfig/iptables.ru 阅读全文
posted @ 2023-07-25 22:09 LB_运维技术 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 解决方案: # grep --color -i "wheel" /etc/group | awk -F: '{print $4}' 阅读全文
posted @ 2023-07-13 23:36 LB_运维技术 阅读(163) 评论(0) 推荐(0) 编辑
摘要: (1)、防火墙概念 防火墙(Firewall)是一个架设在互联网与企业内网之间的信息安全系统,根据企业预定的策略来监控往来的传输。 防火墙可能是一台专属的网络设备或是运行于主机上来检查各个网络接口上的网络传输。它是目前最重要的一种网络防护设备,从专业角度来说,防火墙是位于两个(或多个)网络间,实行网 阅读全文
posted @ 2023-07-05 08:50 LB_运维技术 阅读(2568) 评论(0) 推荐(0) 编辑
摘要: 例如: # df -h | awk '{ print strftime("%Y.%m.%d %H:%M:%S",systime())"\t" $0; fflush() }' 阅读全文
posted @ 2023-06-28 16:48 LB_运维技术 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 锁定用户 passwd -l 用户名 usermod -L 用户名 解锁用户 passwd -u 用户名 usermod -U 用户名 查看账户状态 passwd -S 用户名 阅读全文
posted @ 2023-06-25 09:10 LB_运维技术 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 问题现象: 解决方案: 解决办法:设置为30s覆盖到配置文件中echo 30 > /proc/sys/kernel/watchdog_thresh 查看tail -1 /proc/sys/kernel/watchdog_thresh30临时生效sysctl -w kernel.watchdog_th 阅读全文
posted @ 2023-06-13 17:55 LB_运维技术 阅读(2040) 评论(0) 推荐(0) 编辑
摘要: 解决方案: (1)设置PasswordAuthentication为yes [root@VM-4-3-centos libin]# vim /etc/ssh/sshd_config 修改后的配置: PasswordAuthentication yes (2)重启sshd服务 [root@VM-4-3 阅读全文
posted @ 2023-06-13 17:49 LB_运维技术 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 一、系统默认最大连接数 (1).这是由于当前系统连接数量(默认为65536)超出最大限制所导致,该值由内核参数netnetfilter.nf_conntrack_max定义,使用sysctl 命令可以查看该值 (2).意味着默认情况下,最多维持65536个连接数,一旦连接数超出该值,系统就会拒绝后续 阅读全文
posted @ 2023-06-13 17:23 LB_运维技术 阅读(2756) 评论(0) 推荐(1) 编辑
摘要: [Redhat7]Could not open device at /dev/ipmi0 or /dev/ipmi/0 or /dev/ipmidev/0: No such file or directory 报错 解决方案: [root@localhost ~]# modprobe ipmi_wa 阅读全文
posted @ 2023-06-09 11:38 LB_运维技术 阅读(486) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash read key echo "警告:本脚本只是一个检查的操作,未对服务器做任何修改,管理员可以根据此报告进行相应的设置。" echo 主机安全检查 echo "系统版本" uname -a echo echo "本机的ip地址是:" ifconfig | grep --col 阅读全文
posted @ 2023-04-12 09:17 LB_运维技术 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 22 下一页