Cisco VPN AnyConnect

From UVOO Tech Wiki
Revision as of 19:35, 20 April 2023 by Busk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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