Files
EdgeAdmin/web/views/@default/servers/iplists/@menu.html
GoEdgeLab 71c7b7dcc7 优化IP名单
* 增加IP灰名单,用于仅记录并观察IP
2024-05-05 18:56:25 +08:00

11 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<first-menu>
<menu-item href="/servers/iplists" code="index">IP列表</menu-item>
<span class="disabled item">|</span>
<menu-item href="/servers/iplists/lists?type=black" :active="type == 'black'">黑名单</menu-item>
<menu-item href="/servers/iplists/lists?type=white" :active="type == 'white'">白名单</menu-item>
<menu-item href="/servers/iplists/lists?type=grey" :active="type == 'grey'">灰名单</menu-item>
<span class="item disabled" v-if="type.length > 0">|</span>
<menu-item @click.prevent="createList" v-if="type.length > 0">[创建名单]</menu-item>
<span class="item disabled" v-if="type.length > 0">|</span>
<span class="item" v-if="type.length > 0"><tip-icon content="创建名单时可以选择“全局有效”就会成为全局有效名单全局有效名单对所有网站自动生效非全局有效名单可以在WAF策略里引用。<br/><br/>黑名单其中的IP将会被禁止访问。<br/>白名单其中的IP将会自动放行优先级高于黑名单。<br/>灰名单其中的IP仅作为记录和观察使用不影响黑名单和白名单的作用。"></tip-icon></span>
</first-menu>