We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This app work very well I would like to add multiple peers to to config
$vpnConfig = @' <WireGuard> <Interface> <PrivateKey>foo</PrivateKey> <Address>10.0.0.2/32</Address> <Port>51820</Port> </Interface> <Peer> <PublicKey>bar</PublicKey> <AllowedIPs>10.0.0.254/32</AllowedIPs> <Port>51820</Port> <PersistentKeepalive>5</PersistentKeepalive> </Peer> <Peer> <PublicKey>baz</PublicKey> <AllowedIPs>10.0.0.253/32</AllowedIPs> <Port>51820</Port> <PersistentKeepalive>5</PersistentKeepalive> </Peer> </WireGuard> '@ Set-VpnConnection -Name wg-rust -CustomConfiguration $vpnConfig
It will failed at parsing the config : duplicate field Peer
Peer
I think multiple peer is a common use case. Is there's any way to support that?
The text was updated successfully, but these errors were encountered:
Yup! That should be possible, unfortunately can't make any promises on when I'll be able to work on it.
Sorry, something went wrong.
No branches or pull requests
This app work very well
I would like to add multiple peers to to config
It will failed at parsing the config : duplicate field
![image](https://user-images.githubusercontent.com/8370967/151203910-36a527df-716b-4ed4-83bd-7910c4d7ca15.png)
Peer
I think multiple peer is a common use case. Is there's any way to support that?
The text was updated successfully, but these errors were encountered: