Cisco VPN AnyConnect

From UVOO Tech Wiki
Jump to navigation Jump to search

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