Wtfpass.com Japanese%20girls%20tube8 A %C2%D7%C0%ED%A1%A1film

Hotgirlsfilm D SexInSex%20vivid Hr 1 Hot Girls Film 16hot 的博客

Hotgirlsfilm D SexInSex%20vivid Hr 1 Hot Girls Film

SexInSex%20vivid search SexInSex%20vivid searchN SexInSex%20vivid Tsearch Hotgirlsfilm searchsearchsearchhttp%3A%2F%2Fzooxmania.com Hotgirlsfilm search Hotgirlsfilm er Hotgirlsfilm se SexInSex%20vivid rc Hotgirlsfilm Hsearchtg SexInSex%20vivid rlsearchfisearchmsearchosearchear Hotgirlsfilm h Hotgirlsfilm iyovjizzC5 SexInSex%20vivid B%C3 Hotgirlsfilm C%D1%C7%D6%DE%B3%C9%C8%CB%D0%A1%D3%DA500MBBT Hotgirlsfilm CFC%D4% SexInSex%20vivid 8lsearchf Hotgirlsfilm lmsearchsKamikaze%20Girls%20Vol.74%20%CA%B7%C9%CF%D7%EE%C7%BF%B3%AC%B1%AC%C8%E9%C3%C0%C9%D9%C5%AE%21%21%C6%DF%9E%81%A4%E6%A4%A6%A4%EA%20%28Yuuri%20Nanase%29a SexInSex%20vivid csearch9 SexInSex%20vivid ogsearchrlsf SexInSex%20vivid lsearch Ssearchx SexInSex%20vivid nSChinese+women+seek+men+personals+classifieds+friends+language+exchangexsearch2searchv Hotgirlsfilm vsearchd Hotgirlsfilm . AVI%2F1.36GB%5DDeep+Anal+Drilling+3+Jules+Jordan%D0%C2%C6%AC-%B8%D8%BD%BB%B7%E1%CD%CE%28Alexis+Texas%B3%F6%D1%DD%29+o0girsearchs SexInSex%20vivid isearchm Hotgirlsfilm SexInSex%20vivid ex%CE%F7%B2%BF%B7%E7%D4%C6%20ed%B5%D8%D6%B7nsearche Hotgirlsfilm % Hotgirlsfilm 0 SexInSex%20vivid ivid Hotgirlsfilm /11 SexInSex%20vivid 2 SexInSex%20vivid 0 Hotgirlsfilm 2 SexInSex%20vivid 4search19 SexInSex%20vivid .search.2 SexInSex%20vivid 5search SexInSex%20vivid Hotgirlsfilm search SexInSex%20vivid 1 Hotgirlsfilm SexInSex%20vivid SexInSex%20vivid SexInSex%20vivid SexInSex%20vivid SexInSex%20vivid SexInSex%20vivid Hotgirlsfilm Hotgirlsfilm Hotgirlsfilm Hotgirlsfilm 1search SexInSex%20vivid search SexInSex%20vivid Hotgirlsfilm search Hotgirlsfilm Hotgirlsfilm Hotgirlsfilm search SexInSex%20vivid SexInSex%20vivid SexInSex%20vivid searchsearch Hotgirlsfilm SexInSex%20vivid Hotgirlsfilm SexInSex%20vivid Hotgirlsfilm SexInSex%20vivid SexInSex%20vivid s SexInSex%20vivid usearchc Hotgirlsfilm - SexInSex%20vivid asearchh SexInSex%20vivid 键searchsearch Hotgirlsfilm japanese%20girl%20movie

PF负载均衡 – 外来连接负载均衡
地址池也可以用来进行外来连接负载均衡。例如,外来的web服务器连接可以分配到服务器群。

web_servers=”{}”

rdr on $ext_if proto tcp from any to any port 80 -> $web_servers round-robin sticky-address

成功的连接将按照顺序重定向到web服务器,从同一个源到来的连接发送到同一个服务器。这个 sticky connection 会和指向这个连接的状态一起存在。如果状态过期,sticky connection 也过期。那个主机的更多连接被重定向到按顺序的下一个web服务器。

PF负载均衡 – 输出流量负载均衡
地址池可以和 route-to 过滤选项联合使用,在多路径路由协议(例如BGP4)不可用是负载均衡2个或者多个因特网连接。通过对 round-robin 地址池使用 route-to,输出连接可以平均分配到多个输出路径。
需要收集的附加的信息是邻近的因特网路由器IP地址。这要加入到 route-to 选项后来控制输入数据包的目的地址。
下面的例子通过2条到因特网的连接平衡输出流量:
lan_net=”192.168.0.0/24″
int_if=”dc0″
ext_if1=”fxp0″
ext_if2=”fxp1″
ext_gw1=”68.146.224.1″
ext_gw2=”142.59.76.1″

pass in on $int_if route-to \
{} round-robin \
from $lan_net to any keep state
route-to选项用来在收到流量的内部接口上指定平衡的流量经过各自的网关到输出的网络接口。注意route-to选项必须在每个需要均衡的过滤规则上出现。返回的数据包会路由到它们出去时的外部接口(这是由ISP做的),然后正常路由回内部网络。
要保证带有属于$ext_if1源地址的数据包总是路由到$ext_gw1($ext_if2和$ext_gw2也是同样的),下面2行必须包括在规则集中:
pass out on $ext_if1 route-to ($ext_if2 $ext_gw2) from $ext_if2 to any
pass out on $ext_if2 route-to ($ext_if1 $ext_gw1) from $ext_if1 to any
最后,NAT也可以使用在输出接口中:
nat on $ext_if1 from $lan_net to any -> ($ext_if1)
nat on $ext_if2 from $lan_net to any -> ($ext_if2)

PF负载均衡 – 完整的输出负载均衡规则实例
一个完整的输出负载均衡的例子应该是这个样子:

lan_net=”192.168.0.0/24″
int_if = “dc0″
ext_if1 = “fxp0″
ext_if2 = “fxp1″
ext_gw1 = “68.146.224.1″
ext_gw2 = “142.59.76.1″

nat on $ext_if1 from $lan_net to any -> ($ext_if1)
nat on $ext_if2 from $lan_net to any -> ($ext_if2)

block in from any to any
block out from any to any

pass out on $int_if from any to $lan_net
pass in quick on $int_if from $lan_net to $int_if

pass in on $int_if route-to \
{} round-robin \
proto tcp from $lan_net to any flags S/SA modulatestate

pass in on $int_if route-to \
{} round-robin \
proto{} from $lan_net to any keep state

pass out on $ext_if1 proto tcp from any to any flags S/SA modulate state
pass out on $ext_if1 proto {} from any to any keep state
pass out on $ext_if2 proto tcp from any to any flags S/SA modulate state
pass out on $ext_if2 proto {} from any to any keep state

pass out on $ext_if1 route-to ($ext_if2 $ext_gw2) from $ext_if2 to any
pass out on $ext_if2 route-to ($ext_if1 $ext_gw1) from $ext_if1 to any

PF负载均衡 – 参考资料
OpenBSD 官方 PF handbook

分类: BSD/linux 标签: ,
下一页
订阅

 

2012-05月
« Apr    
 123456
78910111213
14151617181920
21222324252627
28293031  

最新日志

最新评论

标签

apache BIND carp sHotgirlsfilm D SexInSex%20vivid Hr 1 Hot Girls Film 16hot 的博客l Japanese+girl+wet bHotgirlsfilm D SexInSex%20vivid Hr 1 Hot Girls Film 16hot 的博客x a Videos