系统的INPUT和OUTPUT默认策略为DROP,请完成以下关于iptables的题目;
[root@localhost ~]# iptables -P INPUT DROP
[root@localhost ~]# iptables -P OUTPUT DROP
1、限制本地主机的web服务器在周一不允许访问;新请求的速率不能超过100个每秒;web服务器包含了admin字符串的页面不允许访问;web服务器仅允许响应报文离开本机;
[root@localhost ~]# iptables -I INPUT -d 192.168.2.110 -p tcp --dport 80 -m time --weekdays Mon -m limit --limit 100/second -m string --algo bm --string 'admin' -j DROP[root@localhost ~]# iptables -I OUTPUT -m state --state ESTABLISHED -j ACCEPTtime扩展:--weekdays 周limit扩展:--limit rate[/second|/minute|/hour|/day]速率限制string扩展:--algo {bm|kmp} 指定字符算法 --string pattern :匹配字符串state扩展: 80服务只是响应,不用发新请求,所以用ESTABLISHED1 NEW:新发出的请求:连接追踪模板中不存在此连接相关的信息条目,因此,将其识别为第一次发出的请求2 ESTABLISHED:NEW状态之后,连接追踪模板中为其建立的条目失效之前期间内所进行的通信状态;3 RELATED:相关的连接,如ftp协议的命令连接与数据连接之间的关系;4 INVALIED:无法识别的连接;
2、在工作时间,即周一到周五的8:30-18:00,开放本机的ftp服务给172.16.0.0网络中的主机访问;数据下载请求的次数每分钟不得超过5个;
[root@localhost ~]# iptables -A INPUT -s 172.16.0.0/16 -p tcp --dport 21 -m time --timestart 08:30 --timestop 18:00 --weekdays Mon,Tue,Wed,Thu,Fri -m limit --limit-burst 5 --limit 5/minute -j ACCEPT[root@localhost ~]# iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT[root@localhost ~]# iptables -A OUTPUT -d 172.16.0.0/16 -p tcp --sport 20 -j ACCEPTtime扩展:--weekdays 周 --timestart hh:mm[:ss] --timestop hh:mm[:ss] 时间limit扩展:--limit rate[/second|/minute|/hour|/day]速率限制 --limit-burst number 最大峰值state扩展: 21响应命令ftp命令连接 之后响应的是ftp数据连接,而数据连接的第一个包就是RELATED状态,以后的包又变成ESTABLISHED状态。
3、开放本机的ssh服务给172.16.x.1-172.16.x.100中的主机,x为你的座位号,新请求建立的速率一分钟不得超过2个;仅允许响应报文通过其服务端口离开本机;
[root@localhost ~]# iptables -A INPUT -d 172.16.1.1 -p tcp --dport 22 -m iprange --src-range 172.16.1.1-172.16.1.100 -m limit --limit-burst 2 --limit 2/minute -j ACCEPT[root@localhost ~]# iptables -A OUTPUT -s 172.16.1.1 -p tcp --sport 22 -m iprange --dst-range 172.16.1.1-172.16.1.100 -m state --state ESTABLISHED -j ACCEPTiprange扩展:--src-range from[-to]:指明连续的源地址范围 --dst-range from[-to]:指明连续的目标地址范围state扩展: 20服务只是响应,不用发新请求,所以用ESTABLISHED
4、拒绝TCP标志位全部为1及全部为0的报文访问本机;
[root@localhost ~]# iptables -A INPUT -d 192.168.2.110 -p tcp --tcp-flags ALL ALL -j DROP[root@localhost ~]# iptables -A INPUT -d 192.168.2.110 -p tcp --tcp-flags ALL NONE -j DROP--tcp-flags LIST1 LIST2:检查list1所指明的所有标志位,且这其中,list2所表示出的所有标识为必须为1,而余下的必须为0,没有list1中指明的,不做检查。
5、允许本机ping别的主机;但不开放别的主机ping本机;
[root@localhost ~]# iptables -A INPUT -d 192.168.2.110 -p icmp --icmp-type 0 -j DROP[root@localhost ~]# iptables -A OUTPUT -s 192.168.2.110 -p icmp --icmp-type 8 -j ACCEPT--icmp-type: 可用数字表示其类型:0:echo-reply 回送应答8:echo-request 请求回送
6、判断下述规则的意义:
# iptables -N clean_in //创建自定义链clean_in# iptables -A clean_in -d 255.255.255.255 -p icmp -j DROP //丢弃广播包# iptables -A clean_in -d 172.16.255.255 -p icmp -j DROP //丢弃到172.16.255.255的icmp包# iptables -A clean_in -p tcp ! --syn -m state --state NEW -j DROP //丢弃syn包标志不为1的包和连接追踪状态为新连接的包# iptables -A clean_in -p tcp --tcp-flags ALL ALL -j DROP //丢弃TCP标志为全部为1的报文# iptables -A clean_in -p tcp --tcp-flags ALL NONE -j DROP //丢弃TCP标志为全部为0的报文# iptables -A clean_in -d 172.16.100.7 -j RETURN //在到目的主机172.16.100.7的报文返回到主链过滤# iptables -A INPUT -d 172.16.100.7 -j clean_in //到目的主机172.16.100.7的报文过滤转给自定义链clean_in# iptables -A INPUT -i lo -j ACCEPT //指定流入报文接口为本地回环# iptables -A OUTPUT -o lo -j ACCEPT //指定流出报文接口为本地回环
# iptables -A INPUT -i eth0 -m multiport -p tcp --dports 53,113,135,137,139,445 -j DROP //指定流入报文接口为eth0,协议为tcp,目标端口为53,113,135,137,139,445的报文丢弃# iptables -A INPUT -i eth0 -m multiport -p udp --dports 53,113,135,137,139,445 -j DROP //指定流入报文接口为eth0,协议为udp,目标端口为53,113,135,137,139,445的报文丢弃# iptables -A INPUT -i eth0 -p udp --dport 1026 -j DROP //指定流入报文接口为eth0,协议为udp,目标端口为1026的报文丢弃# iptables -A INPUT -i eth0 -m multiport -p tcp --dports 1433,4899 -j DROP //指定流入报文接口为eth0,协议为tcp,目标端口为1433,4899的报文丢弃# iptables -A INPUT -p icmp -m limit --limit 10/second -j ACCEPT //限定ping速率为每秒10次
7、通过tcp_wrapper控制vsftpd仅允许172.16.0.0/255.255.0.0网络中的主机访问,但172.16.100.3除外;对所被被拒绝的访问尝试都记录在/var/log/tcp_wrapper.log日志文件中;
[root@localhost ~]# vim /etc/hosts.allowvsftpd:172.16.0.0/255.255.0.0 EXCEPT 172.16.100.3[root@localhost ~]# vim /etc/hosts.deny vsftpd:ALL :spawn /bin/echo `date` login attempt from %c to %s, %d >> /var/log/tcp_wrapper.log
8、删除/boot/grub/grub.conf文件中所有行的行首的空白字符;
[root@localhost tmp]# cp /boot/grub/grub.conf .[root@localhost tmp]# sed 's/^[[:space:]]\+//' grub.conf
9、删除/etc/fstab文件中所有以#开头,后跟至少一个空白字符的行的行首的#和空白字符;
[root@localhost tmp]# cp /etc/fstab .[root@localhost tmp]# sed 's/^#[[:space:]]\+//' fstab
10、把/etc/fstab文件的奇数行另存为/tmp/fstab.3;
[root@localhost tmp]# sed -n '1~2p' fstab > fstab.3[root@localhost tmp]# cat fstab.3/etc/fstab#See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info/dev/mapper/VolGroup-lv_root / ext4 defaults 1 1/dev/mapper/VolGroup-lv_home /home ext4 defaults 1 2tmpfs /dev/shm tmpfs defaults 0 0sysfs /sys sysfs defaults 0 0192.168.2.105:/ftproot /mydata nfs defaults 0 0
sed -n 'n;p' file 读取文件的偶数行[root@localhost tmp]# sed -n 'n;p' fstab > fstab.4[root@localhost tmp]# cat fstab.4 #Created by anaconda on Fri Sep 30 03:39:09 2016Accessible filesystems, by reference, are maintained under '/dev/disk'#UUID=69fadb43-5569-422f-8047-e0a3fa35e041 /boot ext4 defaults 1 2/dev/mapper/VolGroup-lv_swap swap swap defaults 0 0devpts /dev/pts devpts gid=5,mode=620 0 0proc /proc proc defaults 0 0
11、echo一个文件路径给sed命令,取出其基名;进一步地,取出其路径名;
取基名:[root@localhost tmp]# echo /etc/sysconfig/network-scripts/ifcfg-eth0 | sed -r 's@(/.*/)@@g'ifcfg-eth0取路径名:[root@localhost tmp]# echo "/etc/sysconfig/network-scripts/ifcfg-eth0" | sed 's@[^/]\+$@@'/etc/sysconfig/network-scripts/
12、统计当前系统上所有tcp连接的各种状态的个数;
[root@localhost tmp]# netstat -nat | awk 'FNR>2{print $NF}' | sort | uniq -c 1 ESTABLISHED 8 LISTEN[root@localhost ~]# netstat -tan | awk '/^tcp\>/{state[$NF]++}END{for(i in state) { print i,state[i]}}'ESTABLISHED 1LISTEN 8
13、统计指定的web访问日志中各ip的资源访问次数:
[root@localhost tmp]# awk '{ip[$1]++}END{for(i in ip){print i,ip[i]}}' /var/log/httpd/access_log
14、授权centos用户可以运行fdisk命令完成磁盘管理,以及使用mkfs或mke2fs实现文件系统管理;
[root@localhost tmp]# visudocentos ALL=(root) NOPASSWD: /sbin/fdisk, /sbin/mke2fs, /sbin/mkfs
15、授权gentoo用户可以运行逻辑卷管理的相关命令;
[root@localhost tmp]# visudogentoo ALL=(root) lvm
16、基于pam_time.so模块,限制用户通过sshd服务远程登录只能在工作时间进行;
(1)[root@localhost tmp]# vim /etc/pam.d/sshd在account required pam_nologin.so上插入一行:account required pam_time.so2).编辑pam_time.so模块的配置文件[root@localhost tmp]# vim /etc/security/time.conf*;*;*;MoTuWeThFr0900-1800
17、基于pam_listfile.so模块,定义仅某些用户,或某些组内的用户可登录系统;
1 创建用户列表文件[root@localhost tmp]# vim /etc/sshd/users[root@localhost tmp]#cat /etc/usersroot gentoocentosjay....2 修改文件权限[root@localhost tmp]# chmod 600 /etc/sshd/users[root@localhost tmp]# chown root /etc/sshd/users3 编辑/etc/pam.d/sshd文件,加入以下一行内容:[root@localhost tmp]# vim /etc/pam.d/sshdauth required pam_listfile.so item=user sense=allow file=/etc/sshd/users onerr=succeed
本文出自 “给自己充电” 博客,请务必保留此出处http://zengzeyang.blog.51cto.com/6129531/1875178