$wslip=$(wsl bash -c 'ip addr | grep eth0 | grep inet | awk ''{ print \$2 }''| awk -F/ ''{print \$1}''')
	Write-Output "wsl2 ip is $wslip" 
	netsh interface portproxy show all
	netsh interface portproxy set v4tov4 listenport=6768 listenaddress=ipOrHost connectaddress=$wslip 
	Write-Output 'after reset' 
	netsh interface portproxy show all