共享一个OpenBSD做网关、web服务器、以及允许网络电话Magicjack通讯的规则
发表于 : 2010-09-08 5:38
OpenBSD做网关、web服务器、以及允许网络电话Magicjack通讯的规则
OpenBSD作为内部计算机的网关连接外网,三个接口,xl0连接外网,re0,re1连接内网计算机,OpenBSD主机本身还提供web服务器的功能,允许从外部访问80和22端口(这里略去如何设置ssh keys认证以及阻止暴力破解ssh密码的步骤,请读者自行查阅论坛的相关帖子。),保留22端口是为了web服务器数据库备份,如果你还需要远程连接Mysql数据库,还需要开启3306端口,此外也许你还需要自己设置chroot ssh,注意这里仅提供了chroot的sftp服务器功能,要提供chroot的shell,需要设置更多的步骤。
xl0,连接外网,Ip地址为192.168.2.35,re0,re1连接内网的客户机。magick连接到re1网络的计算机上,OpenBSD的dhcp服务器(192.168.18.1)给re1网络分配的IP地址为内网计算机的IP地址从192.168.18.8开始,关于如何设置dhcp服务器请参阅用OpenBSD 4.7做网关/路由器(gateway/router) 。
OpenBSD作为内部计算机的网关连接外网,三个接口,xl0连接外网,re0,re1连接内网计算机,OpenBSD主机本身还提供web服务器的功能,允许从外部访问80和22端口(这里略去如何设置ssh keys认证以及阻止暴力破解ssh密码的步骤,请读者自行查阅论坛的相关帖子。),保留22端口是为了web服务器数据库备份,如果你还需要远程连接Mysql数据库,还需要开启3306端口,此外也许你还需要自己设置chroot ssh,注意这里仅提供了chroot的sftp服务器功能,要提供chroot的shell,需要设置更多的步骤。
xl0,连接外网,Ip地址为192.168.2.35,re0,re1连接内网的客户机。magick连接到re1网络的计算机上,OpenBSD的dhcp服务器(192.168.18.1)给re1网络分配的IP地址为内网计算机的IP地址从192.168.18.8开始,关于如何设置dhcp服务器请参阅用OpenBSD 4.7做网关/路由器(gateway/router) 。
代码: 全选
# cat /etc/gobsd.org
# $OpenBSD: pf.conf,v 1.49 2009/09/17 06:39:03 jmc Exp $
#
# See pf.conf(5) for syntax and examples.
# Remember to set net.inet.ip.forwarding=1 and/or net.inet6.ip6.forwarding=1
# in /etc/sysctl.conf if packets are to be forwarded between interfaces.
set skip on lo
# filter rules and anchor for ftp-proxy(8)
#anchor "ftp-proxy/*"
#pass in quick proto tcp to port ftp rdr-to 127.0.0.1 port 8021
# anchor for relayd(8)
#anchor "relayd/*"
pass # to establish keep-state
# rules for spamd(8)
#table <spamd-white> persist
#table <nospamd> persist file "/etc/mail/nospamd"
#pass in on egress proto tcp from any to any port smtp \
# rdr-to 127.0.0.1 port spamd
#pass in on egress proto tcp from <nospamd> to any port smtp
#pass in log on egress proto tcp from <spamd-white> to any port smtp
#pass out log on egress proto tcp to any port smtp
#block in quick from urpf-failed to any # use with care
block all
# By default, do not permit remote connections to X11
block in on ! lo0 proto tcp to port 6000:6010
pass out quick log on xl0 from re0:network to any nat-to (xl0)
pass out quick log on xl0 from re1:network to any nat-to (xl0)
pass quick from {re0:network re1:network} to any
pass on xl0 proto tcp from any to any port {22 80}
pass out
pass in on xl0 from 192.168.2.1 to 192.168.2.255
pass in quick log on xl0 proto udp from any to any\
rdr-to 192.168.18.8 port 5060:5069