Difference between revisions of "Cisco VPN AnyConnect"

From UVOO Tech Wiki
Jump to navigation Jump to search
 
Line 2: Line 2:
 
- https://github.com/sakai135/wsl-vpnkit
 
- https://github.com/sakai135/wsl-vpnkit
 
- https://github.com/microsoft/WSL/issues/5068
 
- https://github.com/microsoft/WSL/issues/5068
- https://serverfault.com/questions/929081/how-can-i-enable-packet-forwarding-on-windows
+
 
 +
# Forwarding
 +
https://serverfault.com/questions/929081/how-can-i-enable-packet-forwarding-on-windows
 +
```
 +
Get-NetIPInterface | select ifIndex,InterfaceAlias,AddressFamily,ConnectionState,Forwarding | Sort-Object -Property IfIndex | Format-Table
 +
 
 +
Set-NetIPInterface -ifindex <required interface index from table> -Forwarding Enabled
 +
 
 +
 
 +
Set-NetIPInterface -Forwarding Enabled
 +
```
  
  

Latest revision as of 19:35, 20 April 2023

WSL Windows

Forwarding

https://serverfault.com/questions/929081/how-can-i-enable-packet-forwarding-on-windows

Get-NetIPInterface | select ifIndex,InterfaceAlias,AddressFamily,ConnectionState,Forwarding | Sort-Object -Property IfIndex | Format-Table

Set-NetIPInterface -ifindex <required interface index from table> -Forwarding Enabled


Set-NetIPInterface -Forwarding Enabled

Maybe