Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

对FreeBSD的ipfw实在不理解!

[复制链接]
13605567665 发表于 2008-6-18 19:50:43 | 显示全部楼层 |阅读模式
哥哥们,给个详细的配置吧?

我的服务器只想开放80/21/22端口,其他的全封,怎么弄~~

谢谢!!
tongde 发表于 2008-6-25 18:43:52 | 显示全部楼层
你得说说你机子的情况啊。几个网卡?freebsd版本?等
回复

使用道具 举报

zhy_aid_cn 发表于 2008-7-10 18:38:50 | 显示全部楼层
确认你的freebsd编译内核时将ipfw编译到内核了
  1. options IPFIREWALL # required for IPFW
  2. options IPFIREWALL_VERBOSE # optional; logging
  3. options IPFIREWALL_VERBOSE_LIMIT=10 # optional; don't get too many log entries
  4. options IPDIVERT # needed for natd
复制代码
编辑 /etc/rc.conf
加入
  1. firewall_enable="YES"
  2. firewall_script="/usr/local/etc/ipfw.rules"
复制代码
创建/编辑 /usr/local/etc/ipfw.rules

  1. IPF="ipfw -q add"
  2. ipfw -q -f flush

  3. #回环地址
  4. $IPF 10 allow all from any to any via lo0
  5. $IPF 20 deny all from any to 127.0.0.0/8
  6. $IPF 30 deny all from 127.0.0.0/8 to any
  7. $IPF 40 deny tcp from any to any frag

  8. # statefull
  9. $IPF 50 check-state
  10. $IPF 60 allow tcp from any to any established
  11. $IPF 70 allow all from any to any out keep-state
  12. $IPF 80 allow icmp from any to any

  13. # 打开 ftp (20,21), ssh (22)
  14. # http (80), dns (53) etc 建议打开53端口
  15. $IPF 110 allow tcp from any to any 21 in
  16. $IPF 120 allow tcp from any to any 21 out
  17. $IPF 130 allow tcp from any to any 22 in
  18. $IPF 140 allow tcp from any to any 22 out
  19. $IPF 170 allow udp from any to any 53 in
  20. $IPF 175 allow tcp from any to any 53 in
  21. $IPF 180 allow udp from any to any 53 out
  22. $IPF 185 allow tcp from any to any 53 out
  23. $IPF 200 allow tcp from any to any 80 in
  24. $IPF 210 allow tcp from any to any 80 out

  25. # deny and log everything
  26. $IPF 500 deny log all from any to any
复制代码
启动ipfw
  1. sh /usr/local/etc/ipfw.rules
复制代码
回复

使用道具 举报

无聊DE要死 发表于 2008-7-16 08:44:18 | 显示全部楼层
不是很清楚。。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-19 04:41 , Processed in 0.022628 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表