OS & Program/Windows
Windows 포트포워딩 현재 상태 - NAT
nabiro@gmail.com
2023. 9. 8. 20:22
Document Information
- docNo: 20230720-1519
- 검색어: nabiro 포트포워딩 포트 포워딩 port forwarding nat
Contents
현재 포트포워딩 상태
netsh interface portproxy show all
C:\Windows\System32>netsh interface portproxy show all
ipv4 수신 대기: ipv4에 연결:
주소 포트 주소 포트
--------------- ---------- --------------- ----------
0.0.0.0 30007 10.0.0.7 22
0.0.0.0 30071 10.0.0.71 22
0.0.0.0 30220 10.0.0.220 3389
0.0.0.0 30022 10.0.0.22 3389
0.0.0.0 30010 10.0.0.10 3389
0.0.0.0 30064 192.168.100.64 22
0.0.0.0 31521 192.168.100.64 1521
0.0.0.0 37010 192.168.100.64 27010
0.0.0.0 30065 192.168.100.65 22
0.0.0.0 30091 192.168.100.91 22
0.0.0.0 30389 192.168.100.91 389
포트포워딩 명령어 예제
# netsh interface portproxy add v4tov4 listenport=[전달 받은 Port] listenaddress=[전달 받은 IP] connectport=[변환할 Port] connectaddress=[변환할 IP]
netsh interface portproxy add v4tov4 listenport=31521 listenaddress=0.0.0.0 connectport=1521 connectaddress=192.168.100.64