".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
我们在购买[阿里云](/#)ECS服务器时,一般会设置安全组,如果没有设置,则阿里云会指定默认的安全组。IPv4和IPv6通信是彼此独立的,如果当前设置的安全组规则不能满足业务需要,我们需要为ECS实例单独配置IPv6安全组规则。
![](https://www.idcspy.com/wp-content/uploads/2021/10/1-77.jpg)
阿里云服务器添加IPv6安全组规则主要步骤:
1、登录到阿里云ECS管理控制台。然后在左侧导航栏,选择网络与安全,点击安全组。
2、在顶部菜单栏左上角处,选择地域。
4、找到目标安全组,然后单击配置规则。
5、单击手动添加。自定义配置授权策略、优先级、协议类型等信息。
6、配置安全组规则。其中,授权对象中输入授权的IPv6地址段。例如输入::/0则代表授权所有IPv6地址。
以上是关于阿里云服务器ECS实例配置IPv6安全组规则的步骤介绍,通过安全组规则设置,可以帮助我们控制云服务器实例间的网络访问控制,提高安全性。"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/104960.html