ポート転送
ポート転送について、Linuxではiptablesで対応できるがWindowsで行う必要が出てきました。
具体的にはサーバのリプレイスを行うのに、とあるサービスのクライアントが送信先アドレスとポートを変えられないという…
なので旧サーバを中継にだけ使用し、サービスの処理は新サーバで行うという対応になりました。
その際に設定したポート転送の方法です。
設定方法
- netshコマンドを使用
- Windows8.1を使用(他のOSでも大丈夫だと思います)
1.ポート転送コマンド
>netsh interface portproxy add v4tov4 listenport=<1> listenaddr=<2> connectport=<3> connectaddress=<4>
<1>は中継PCの受信ポート番号
<2>は中継PCのIPアドレス
<3>は転送先ポート番号
<4>は転送先IPアドレス
2.確認コマンド
>netsh interface portproxy show all
3.削除コマンド
>netsh interface portproxy delete v4tov4 listenport=<1> listenaddr=<2>
Author And Source
この問題について(ポート転送), 我々は、より多くの情報をここで見つけました https://qiita.com/mugi0801/items/37f267bb05596508c640著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .