摘要:
多网卡的7种bond模式原理 Linux 多网卡绑定 网卡绑定mode共有七种(0~6) bond0、bond1、bond2、bond3、bond4、bond5、bond6 常用的有三种 mode=0:平衡负载模式,有自动备援,但需要”Switch”支援及设定。 mode=1:自动备援模式,其中一条 阅读全文
摘要:
以下为字符串匹配操作符:~ 为区分大小写匹配~* 为不区分大小写匹配!~和!~*分别为区分大小写不匹配及不区分大小写不匹配 1: 限制某些类型的客户端的访问 location / { if ($http_user_agent ~ MSIE) { return 503; } }#限制IE访问 如果把M 阅读全文