From LedHed's Wiki
Jump to: navigation, search
(Created page with 'Port Forwarding / Port Redirection can be accomplished in Win2k8 R2 using the ''netsh'' command. == Example == netsh interface portproxy add v4tov4 listenport=12345 listenaddr...')
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Port Forwarding / Port Redirection can be accomplished in Win2k8 R2 using the ''netsh'' command.
+
Firewall Port Forwarding / Port Redirection can be accomplished in Win2k8 R2 using the ''netsh'' command.
  
  
Line 12: Line 12:
 
http://www.rickwargo.com/2011/01/08/port-forwarding-port-mapping-on-windows-server-2008-r2/
 
http://www.rickwargo.com/2011/01/08/port-forwarding-port-mapping-on-windows-server-2008-r2/
  
[[Category|Windows 2008 R2]]
+
 
 +
 
 +
[[Category:Windows 2008 R2]]

Latest revision as of 23:09, 3 October 2012

Firewall Port Forwarding / Port Redirection can be accomplished in Win2k8 R2 using the netsh command.


Example

netsh interface portproxy add v4tov4 listenport=12345 listenaddress=192.168.1.1 connectport=443 connectaddress=192.168.1.1

This will allow the computer at 192.168.1.1 to answer SSL connections on ports 443 and 12345


Reference

http://www.rickwargo.com/2011/01/08/port-forwarding-port-mapping-on-windows-server-2008-r2/