码迷,mamicode.com
首页 > 其他好文 > 详细

第十周作业

时间:2016-11-07 22:32:22      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:第十周

系统的INPUT和OUTPUT默认策略为DROP,请完成以下关于iptables的题目;

1、限制本地主机的web服务器在周一不允许访问;新请求的速率不能超过100个每秒;web服务器包含了admin字符串的页面不允许访问;web服务器仅允许响应报文离开本机;

iptables -A INPUT -p tcp -d 192.168.1.111 --dport 22 -j ACCEPT
iptables -A OUTPUT -p tcp -s 192.168.1.111 --sport 22 -m state --state ESTABLISHED -j ACCEPT
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -A  INPUT -p tcp --dport 80 -m time ! --weekdays  Mon  -m state --state NEW -m limit --limit 100/s -j ACCEPT
iptables -A INPUT -p tcp -d 192.168.1.111 --dport 80 -m string --algo bm --string ‘admin‘  -j DROP
iptables -A  OUTPUT  -p tcp --sport 80 -m state --state ESTABLISHED -j ACCEPT

2、在工作时间,即周一到周五的8:30-18:00,开放本机的ftp服务给172.16.0.0网络中的主机访问;数据下载请求的次数每分钟不得超过5个;

iptables -A INPUT  -p tcp --dport 21 -s 172.16.0.0/16 -m time --weekdays 1,2,3,4,5 -m time --timestart 8:30 --timestop 18:00 -m limit --limit 5/minute -j ACCEPT
iptables -A INPUT -p tcp -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT  -m state --state ESTABLISHED,RELATED -j ACCEPT

3、开放本机的ssh服务给172.16.x.1-172.16.x.100中的主机,x为你的座位号,新请求建立的速率一分钟不得超过2个;仅允许响应报文通过其服务端口离开本机;

   

iptables -A INPUT -d 172.16.1.10 -p tcp --dport 22 -m iprange --src-range 172.16.1.1.-172.16.1.100 -j ACCEPT
iptables -A OUTPUT -s 172.16.1.10 -p tcp --sport 22 -m state --state ESTABLISED -j ACCEPT

   4、拒绝TCP标志位全部为1及全部为0的报文访问本机;

iptables -A INPUT -d 192.168.194.129 -p tcp --tcp-flags ALL ALL -j DROP
iptables -A INPUT -d 192.168.194.129 -p tcp --tcp-flags ALL NONE -j DROP

5、允许本机ping别的主机;但不开放别的主机ping本机;

 ~]# iptables -A OUTPUT -s 192.168.1.111 -p icmp --icmp-type 8 -j ACCEPT       
~]# iptables -A INPUT -d 192.168.1.111 -p icmp --icmp-type 0 -j ACCEPT

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网段的icmp报文

# iptables -A clean_in -p tcp ! --syn -m state --state NEW -j DROP

丢弃非tcp请求的报文

# 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

允许icmp协议频率为每秒10个报文访问

7、通过tcp_wrapper控制vsftpd仅允许172.16.0.0/255.255.0.0网络中的主机访问,但172.16.100.3除外;对所被被拒绝的访问尝试都记录在/var/log/tcp_wrapper.log日志文件中;

vim /etc/hosts.allow
vsftpd:172.16.0.0/255.255.0.0 EXCEPT 172.16.100.3
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文件中所有行的行首的空白字符;

~]# sed ‘s@^[[:space:]]@@g‘ /boot/grub/grub.conf


9、删除/etc/fstab文件中所有以#开头,后跟至少一个空白字符的行的行首的#和空白字符;

~]# sed ‘s@^#[[:space:]]@@‘ /etc/fstab

10、把/etc/fstab文件的奇数行另存为/tmp/fstab.3;

 ~]# sed ‘n;d‘ /etc/fstab

 11、echo一个文件路径给sed命令,取出其基名;进一步地,取出其路径名;

取路径名:~]# echo /etc/sysconfig/network-scripts/ | sed ‘s@[^/]\+\/\?$@@‘
取基名: ~]# echo /etc/sysconfig/network-scripts | sed ‘s@/.*/@@‘

12、统计当前系统上所有tcp连接的各种状态的个数;

]# ss -tan |sed ‘1d‘| awk ‘{print $1}‘| uniq -c

13、统计指定的web访问日志中各ip的资源访问次数

]# awk ‘{print $1}‘ www1.access | sort |uniq -c

14、授权centos用户可以运行fdisk命令完成磁盘管理,以及使用mkfs或mke2fs实现文件系统管理;

]# vim sudoers
Centos  ALL=(root)   /sbin/mkfs, /sbin/mke2fs, /sbin/fdisk

15、授权gentoo用户可以运行逻辑卷管理的相关命令;

]# vim sudoers
Gentoo ALL=(root) lvm

16、基于pam_time.so模块,限制用户通过sshd服务远程登录只能在工作时间进行;

# vim /etc/pam.d/sshd
在account required pam_nologin.so上插入一行:
account required pam_time.so
# vim /etc/security/time.conf
*;*;*;MoTuWeThFr0900-1800

17、基于pam_listfile.so模块,定义仅某些用户,或某些组内的用户可登录系统;

创建一个用户的列表文件,例如/etc/users,然后编辑文件
root 
centos
gentoo
然后修改文件的权限和属主
# chmod 600 /etc/users
# chown root /etc/users
再编辑/etc/pam.d/sshd文件,加入以下一行内容:
auth required pam_listfile.so item=user sense=allow file=/etc/users onerr=succeed


第十周作业

标签:第十周

原文地址:http://yaoyi123.blog.51cto.com/4401869/1870414

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!