登录 注册
当前位置:主页 > 资源下载 > 33 > nat-api能够实现通过UPnP和NAT-PMP进行快速端口映射

nat-api能够实现通过UPnP和NAT-PMP进行快速端口映射

  • 更新:2024-08-10 09:18:50
  • 大小:15KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:PMP - 考试认证
  • 格式:ZIP

资源介绍

纳塔比 在NodeJS中使用UPnP和NAT-PMP进行快速端口映射。 安装 必需:NodeJS> = 10 npm install nat-api 用法 const NatAPI = require ( 'nat-api' ) const client = new NatAPI ( ) // Map public port 1000 to private port 1000 with UDP and TCP client . map ( 1000 , function ( err ) { if ( err ) return console . log ( 'Error' , err ) console . log ( 'Port mapped!' ) } ) // Map public port 2000 to private port 3000 with UDP and TC