".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)'); } }) })
[腾讯云](/#)服务器部署成功后,您会获得一个公网IP地址和内网IP地址,公网的可以在外部网络进行访问,内网是在内部网络访问。本文主要介绍下腾讯云服务器查看公网IP地址的方法步骤。
腾讯云服务器获取公网IP地址比较简单的方法是使用控制台。首先登录到腾讯云服务器控制台,然后在实例的管理页面,根据实际使用的视图模式进行操作,比如列表视图或页签视图。
1、列表视图:鼠标移动至主IP地址列,单击复选图标 ,即可复制该IP地址,如下图所示:
![](https://www.idcspy.com/wp-content/uploads/2023/02/ip1.png)
2、页签视图:在实例页面中,单击 “IP地址”中公网地址后的复选图标,即可复制公网IP。如下图所示:
![](https://www.idcspy.com/wp-content/uploads/2023/02/ip2.png)
由于公网IP地址通过NAT映射到内网IP地址,因此,您如果在实例内部查看网络接口的属性(例如通过 ifconfig (Linux) 或 ipconfig (Windows) 命令),将不会显示公网IP地址。如需从实例内部确定实例的公网 IP地址,则可使用实例元数据获取IP。
使用实例元数据获取公网IP地址的方法:通过cURL工具或是HTTP的GET请求访问metadata,获取公网IP 地址。
> curl http://metadata.tencentyun.com/meta-data/public-ipv4
返回值有类似如下结构,即可查看到公网IP地址:
![](https://www.idcspy.com/wp-content/uploads/2023/02/ip3.png)
**拓展阅读:**《[腾讯云服务器更换公网IP地址的操作步骤](/#)》"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/103150.html