码迷,mamicode.com
首页 >  
搜索关键字:deny allow    ( 2272个结果
UFW防火墙配置
1.安装防火墙 apt-get install ufw 2. 查看防火墙规则 ufw status 3.开启防火墙 sudo ufw enable 4.关闭防火墙 sudo ufw disable 5.重启防火墙 sudo ufw reload 6.开启指定tcp端口 allow/deny 22/t ...
分类:其他好文   时间:2020-12-09 11:51:17    阅读次数:4
华为VLAN的ACL策略应用
华为交换机的vlan隔离策略要在vlan里应用traffic policy来做#acl number 3011 rule 5 deny ip source 192.168.2.0 0.0.0.255 destination 192.168.1.0 0.0.0.255 rule 10 deny ip ...
分类:其他好文   时间:2020-12-09 11:33:07    阅读次数:4
java学习-javabeans-customization
java beans specification 9 customization When a user is composing an application in an application builder we want to allow them tocustomize the appea ...
分类:编程语言   时间:2020-11-30 15:28:01    阅读次数:7
springboot 解决跨域请求,No 'Access-Control-Allow-Origin' header is present on the requested resource
springboot 解决跨域请求,No 'Access-Control-Allow-Origin' header is present on the requested resource ©Copyright 蕃薯耀 2020-11-24 https://www.cnblogs.com/fansh ...
分类:数据库   时间:2020-11-27 11:48:01    阅读次数:26
taro
##多端调试-微信小程序+H5 需要在index.js中设置outputRoot: dist/${process.env.TARO_ENV} 设置sitemap.json文件,允许访问 { "rules":[{ "action": "allow", "page": "*" }] } ...
分类:其他好文   时间:2020-11-26 15:04:35    阅读次数:5
Squid 代理服务器安装说明
安装squid $ sudo apt-get install squid 配置squid $ sudo vim /etc/squid/squid.conf 注释以下行: http_access deny !Safe_ports http_access deny CONNECT !SSL_ports ...
分类:其他好文   时间:2020-11-16 13:35:32    阅读次数:7
.net core 3.1连接 mysql失败,提示 SSL身份验证错误
配置文件中定义连接字符串: "db": "server=10.0.0.0;database=Test;uid=sa;pwd=123456;Allow User Variables=true;default command timeout=120;Pooling=true;Max Pool Size= ...
分类:数据库   时间:2020-11-10 10:54:55    阅读次数:12
thinkphp5 关于跨域的一些坑,附上解决办法(比较全面了)
项目背景:前端是uniapp开发的h5,后端是tp5,其他语言我觉得应该大同小异,主要是思路,本文就以这俩为例吧 1、首先在tp5的入口文件:public/index.php 在里面添加三行: // [ 应用入口文件 ] header("Access-Control-Allow-Origin:*") ...
分类:Web程序   时间:2020-11-08 16:46:47    阅读次数:31
思科交换机 ACL 理解 和 设置命令
ACL :本质上就是控制交换机的某个端口 对于 符合要求的 IP (扩展可以使用端口) 的放行或封锁 思科交换机的 ACL 分为 标准 和 扩展 两种版本 标准版的命令方式:access-list number permint/deny 条件(一般是 ip 通配符) 通配符的 作用是指定检查哪些位, ...
分类:其他好文   时间:2020-11-07 16:28:59    阅读次数:33
用Git命令把本地项目,提交到远程仓库
第一步:git init 第二步:git add . 第三步:git commit -m '首次提交' 第四步: git remote add origin 仓库地址 第五步:git pull origin master --allow-unrelated-histories 第六步: git pu ...
分类:其他好文   时间:2020-10-24 09:53:15    阅读次数:24
2272条   上一页 1 2 3 4 5 6 ... 228 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!