2 posts tagged “hack”
話は違うけど,プロキシーを経由してhttps用のconnectメソッドを利用してFWの内側からINTERNET上のircサーバに抜ける方法について.connectメソッドを使うことを思いついてからPOEで実装することを考えていたんだけど,念のためと思ってcpanを検索しなおしてみたらNet::Proxy::Connector::connectというモジュールを発見.このモジュールについているconnect-tunnelというツールを使えば安定してトンネリングできることがわかった.Net::Proxyモジュールはとっても意欲的.追いかけて損がないモジュールのひとつかな.
I think, I can't connect irc server that is out of the fw. But today, flash across my mind. "Connect method", That's it. I try SSH Proxy Command and sccess to connect irc servers.
- Download connect.exe from above url and commands: connect -P 1234 -H proxy.foo.co.jp:8080 irc.freenode.net 6667
- Set server properties in the irc client, SERVER: localhost, PORT: 1234
Now, I have one more problem. Fw cut the irc session, and that makes to stop connect process. The default rule of the fw cut the tcp session, if there are no packets run at the session over one minitute. Today, I re-run connect program, but this is a good time to make connect service with POE. Is this the reinventing the wheel ?