deny

华为命令简单测试记录

血红的双手。 提交于 2020-03-21 10:22:58
交换机命令 ~~~~~~~~~~ [Quidway]dis cur ;显示当前配置 [Quidway]display current-configuration ;显示当前配置 [Quidway]display interfaces ;显示接口信息 [Quidway]display vlan all ;显示路由信息 [Quidway]display version ;显示版本信息 [Quidway]super password ;修改特权用户密码 [Quidway]sysname ;交换机命名 [Quidway]interface ethernet 0/1 ;进入接口视图 [Quidway]interface vlan x ;进入接口视图 [Quidway-Vlan-interfacex]ip address 10.65.1.1 255.255.0.0 ;配置VLAN的IP地址 [Quidway]ip route-static 0.0.0.0 0.0.0.0 10.65.1.2 ;静态路由=网关 [Quidway]rip ;三层交换支持 [Quidway]local-user ftp [Quidway]user-interface vty 0 4 ;进入虚拟终端 [S3026-ui-vty0-4]authentication-mode password ;设置口令模式 [S3026

H3C 华为交换机简单维护指令 SNMP USER

巧了我就是萌 提交于 2020-03-18 07:35:57
一、交换机简单管理协议增加指令----以便接入 华为 的管理 软件 中 snmp-agent snmp-agent community read public snmp-agent community write private snmp-agent sys-info version v1 v3 snmp-agent trap enable 备注:每台新增的交换机均需加入上述指令集合,否则不能为管理软件所管理 二、将新增交换机的VLAN1段设置IP地址 interface vlan 1 ip address 10.63.0.1 255.255.254.0 三、华为交换机指令的相关案例 Quidway]super password 修改特权用户密码 [Quidway]sysname 交换机命名 [Quidway]interface ethernet 0/1 进入接口视图 [Quidway]interface vlan x 进入X段VLAN接口视图 [Quidway-Vlan-interfacex]ip address 10.65.1.1 255.255.0.0 为VLAN段设置地址 [Quidway]ip route-static 0.0.0.0 0.0.0.0 10.65.1.2 静态路由= 网关 [Quidway]user-interface vty 0 4 [ S3026

华为交换机基本命令表

限于喜欢 提交于 2020-03-14 07:52:06
交换机命令 ~~~~~~~~~~ [Quidway]super password 修改特权用户密码 [Quidway]sysname 交换机命名 [Quidway]interface ethernet 0/1 进入接口视图 [Quidway]interface vlan x 进入接口视图 [Quidway-Vlan-interfacex]ip address 10.65.1.1 255.255.0.0 [Quidway]ip route-static 0.0.0.0 0.0.0.0 10.65.1.2 静态路由=网关 [Quidway]user-interface vty 0 4 [S3026-ui-vty0-4]authentication-mode password [S3026-ui-vty0-4]set authentication-mode password simple 222 [S3026-ui-vty0-4]user privilege level 3 [Quidway-Ethernet0/1]duplex {half|full|auto} 配置端口双工工作状态 [Quidway-Ethernet0/1]speed {10|100|auto} 配置端口工作速率 [Quidway-Ethernet0/1]flow-control 配置端口流控 [Quidway

5月31日任务配置防盗链、访问控制Directory、访问控制FilesMatch

不想你离开。 提交于 2020-03-02 14:32:15
11.25 配置防盗链 <Directory /data/wwwroot/abc.com> SetEnvIfNoCase Referer "http://www.abc.com" local_ref SetEnvIfNoCase Referer "http://abc.com" local_ref SetEnvIfNoCase Referer "^$" local_ref <filesmatch "\.(txt|doc|mp3|zip|rar|jpg|gif)"> Order Allow,Deny Allow from env=local_ref </filesmatch> </Directory> 11.26 访问控制Directory <Directory /data/wwwroot/abc.com/admin/> Order deny,allow Deny from all Allow from 127.0.0.1 </Directory> 针对目录实现控制. 控制对象为来源ip 11.27 访问控制FilesMatch <Directory /data/wwwroot/abc.com/> <FilesMatch "admin.php(.*)"> Order deny,allow Deny from all Allow from 127.0.0.1 </FilesMatch>

xmapp 403 与 多站点

假如想象 提交于 2020-02-21 09:44:55
1、首先多站点:配置的路径不一样 也可以,配置新端口也可以。 在/Applications/XAMPP/xamppfiles/apache2/conf/httpd.conf 中,添加: listen 8081    然后在/Applications/XAMPP/xamppfiles/etc/extra/httpd-vhosts.conf中添加 <VirtualHost *:80> DocumentRoot "/Users/houzhibin/javaself/code/php/shop/crmeb3/public" <Directory "/Users/houzhibin/javaself/code/php/shop/crmeb3/public"> Options All AllowOverride All Order allow,deny Allow from all </Directory> ServerAlias crmeb3.demo.com ErrorLog "logs/dummy-host.example.com-error_log" CustomLog "logs/dummy-host.example.com-access_log" common </VirtualHost> <VirtualHost *:80> ServerName api.qiushi.com

Log4J XML配置自定义格式

不打扰是莪最后的温柔 提交于 2020-01-10 08:13:09
玄机就在PatternLayout < ?xml version = "1.0" encoding = "UTF-8" ? > < Configuration status = "INFO" monitorInterval = "30" > < Properties > < ! -- 输出路径 -- > < Property name = "logpath" > logs < /Property > < /Properties > < Appenders > < Console name = "Console" target = "SYSTEM_OUT" > < PatternLayout pattern = "[%d] [%p] [%c] [%L] - %m%n" / > < /Console > < RollingFile name = "debug" fileName = " ${logpath} /debug/erp_debug.log" filePattern = " ${logpath} /debug/erp_debug_%d{yyyy-MM-dd}.log" > < Filters > < ThresholdFilter level = "info" onMatch = "DENY" onMismatch = "NEUTRAL" / > <

安全-TCP_wrapper

99封情书 提交于 2019-12-23 08:27:26
安全-TCP_wrapper 使用条件: 记录访问日志 当主机被非法连接的时候,我们可以做到收到一封邮件。 两个配置文件: host.allow host.deny 黑名单: 在/etc/hosts.deny写 白名单: 白名单注意先后顺序,先允许后拒绝 在/etc/hosts.allow写允许局部 在/etc/hosts.deny 写拒绝所有 使用条件: 使用ldd查询对应的命令是否有如下结果,当返回结果时,可以使用 [ root@pam ~ ] # ldd `which vsftpd` | grep libwrap.so libwrap.so.0 = > /lib64/libwrap.so.0 ( 0x00007f6d10fb4000 ) 支持 [ root@pam ~ ] # ldd `which sshd` | grep libwrap.so libwrap.so.0 = > /lib64/libwrap.so.0 ( 0x00007f6f38608000 ) 支持 [ root@pam ~ ] # ldd `which httpd` | grep libwrap.so 不支持 使用man 5 去查看hosts.deny的配置方式 [root@pam ~]# man 5 hosts.deny 例子: ( 1 ) 黑名单 [ root@pam ~ ] # vim /etc

Apache 容器 Directory Location Files 及htaccess文件

若如初见. 提交于 2019-12-22 12:27:36
配置段容器的类型 相关模块 core mod_proxy 相关指令 <Directory> <DirectoryMatch> <Files> <FilesMatch> <IfDefine> <IfModule> <Location> <LocationMatch> <Proxy> <ProxyMatch> <VirtualHost> 主要讲解 <Directory> <Files> <Location> 1. 文件系统容器 <Directory> <Directory>和<Files>是针对文件系统的指令。<Directory>段中的指令作用于指定的文件系统目录 及其所有子目录 ,.htaccess 文件可以达到同样的效果。下例中,/var/web/dir1及其所有子目录被允许目录列表。 <Directory /var/web/dir1> Options +Indexes 允许目录列表(加号允许、减号禁止) </Directory> <Directory /var/web/dir1> Options FollowSysLinks 允许符号链接(在当前目录下文件 test.html 链接至其它目录文件test.html) </Directory> (正常情况无法访问) 2. <Files> 作用域 server config, virtual host, directory,

ueditor上传图片报&apos;X-Frame-Options&apos; to &apos;DENY&apos;

江枫思渺然 提交于 2019-12-17 19:48:34
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 最近升级spring-security4,使用ueditor上传图片报出如下问题,页面上图片显示为红叉 Refused to display 'http://localhost/api/ueditor/action?action=uploadimage' in a frame because it set 'X-Frame-Options' to 'DENY'. 在如下链接有对X-Frame-Options的详细描述,大家可以参考一下: https://developer.mozilla.org/zh-CN/docs/Web/HTTP/X-Frame-Options?redirectlocale=en-US&redirectslug=The_X-FRAME-OPTIONS_response_header 使用chrome的F12功能,看到返回的response header中X-Frame-Options为DENY,这应该是升级spring security4后带来的,通过如下代码解决: response.setHeader("X-Frame-Options", "SAMEORIGIN"); 来源: oschina 链接: https://my.oschina.net/u/2305466/blog/519980

华为ACL(访问控制列表)实验

不羁岁月 提交于 2019-12-06 08:56:08
SW1配置 # sysname SW1 # vlan batch 11 to 13 100 # cluster enable ntdp enable ndp enable # drop illegal - mac alarm # diffserv domain default # drop - profile default # aaa authentication - scheme default authorization - scheme default accounting - scheme default domain default domain default_admin local - user admin password simple admin local - user admin service - type http # interface Vlanif1 # interface MEth0 / 0 / 1 # interface Ethernet0 / 0 / 1 port link - type access port default vlan 11 # interface Ethernet0 / 0 / 2 port link - type access port default vlan 12 # interface Ethernet0 / 0 /