Difference between revisions of "Cisco VPN AnyConnect"

From UVOO Tech Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
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
 +
 +
# 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
 
# Maybe
 
- https://github.com/canonical/multipass/issues/1336
 
- https://github.com/canonical/multipass/issues/1336
 +
- https://social.technet.microsoft.com/Forums/en-US/b112788e-a7fb-47ec-8b27-7ef6988b34c9/vpn-connectivity-issue-from-hyperv-host?forum=win10itpronetworking

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