如何使用8081端口呼叫服务器

时间:2015-04-23 18:12:06

标签: tcp

我有一台具有内部IP的服务器:

declare @Samples as Table ( Sample Decimal(5,1) );
insert into @Samples
  values ( 0.0 ), ( 1.2 ), ( 2.4 ), ( 3.5 ), ( 4.6 ), ( 42.0 ), ( -1.2 ), ( -2.4 );
select Sample, Sample + 0.6 - 0.5 * Sign( Abs( Sample % 1.0 - 0.4 ) ) as [Result]
  from @Samples;

和外部IP:

172.18.4.325

我可以访问:

198.115.74.325
从服务器内部

但是如何从外部访问它?

我添加了端口172.18.4.325:8081/jasperserver/services/repository 的入站和出站规则,但没有。

我错过了什么?

活动TCP连接:

TCP 8081

1 个答案:

答案 0 :(得分:1)

您可以尝试使用通常在防火墙上启用的端口443访问您的服务器:

198.115.74.325:443/jasperserver/services/repository

我认为防火墙仍会阻止端口8081