Windows Setup

From bibbleWiki
Revision as of 01:41, 4 June 2025 by Iwiseman (talk | contribs) (Created page with "=Introduction= This is my first use of windows since about 2000 so need to make some note =Setting up Proxy to WSL= When we set up the WSL it would be nice to set up a proxy to allow ssh <syntaxhighlight lang="powershell"> # Show Proxy netsh interface portproxy show all # Add Proxys netsh interface portproxy add v4tov4 listenport=22 listenaddress=0.0.0.0 connectport=22 connectaddress=172.28.58.213 # Delete Proxy >netsh interface portproxy delete v4tov4 listenport=22 list...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

This is my first use of windows since about 2000 so need to make some note

Setting up Proxy to WSL

When we set up the WSL it would be nice to set up a proxy to allow ssh

# Show Proxy
netsh interface portproxy show all
# Add Proxys
netsh interface portproxy add v4tov4 listenport=22 listenaddress=0.0.0.0 connectport=22 connectaddress=172.28.58.213
# Delete Proxy
>netsh interface portproxy delete v4tov4 listenport=22 listenaddress=0.0.0.0