如何使用Ruby在Windows中打开端口?

时间:2011-03-17 05:56:02

标签: ruby windows firewall

我的Windows系统启用了防火墙。

我想允许特定端口上的传入连接(例如:4546)。

是否有红宝石库可以帮助我这样做?

详情: 我有一个在端口4546上运行的sinatra应用程序(webserver)。我需要关闭防火墙才能使其正常工作。 我正在寻找一种不将端口4546保留在防火墙列表下的方法。

1 个答案:

答案 0 :(得分:1)

是的,你可以这样做:

require 'socket'               # Get sockets from stdlib

server = TCPServer.open(4546)  # Socket to listen on port 4546
loop {                         # Servers run forever
  client = server.accept       # Wait for a client to connect
  client.puts(Time.now.ctime)  # Send the time to the client
  client.puts "Closing the connection. Bye!"
  client.close                 # Disconnect from the client
}