Nasrullah Khan

Results 6 comments of Nasrullah Khan

### Now added logs in network extension. i found error in following lines ` let properties: OpenVPNProperties do { properties = try vpnAdapter.apply(configuration: configuration) NSLog("\(#function): vpnAdapter.apply success") } catch {...

@nirwanrajat did you achieve split tunneling for applications, for example i am using vpn on my macos app and i want skype to not use by pass vpn.

@niravpadhiyar09 did you find any solution?

@NikKovIos @corentios any update on this?

i found the solution. you have to add allowedIPs and setPresharedKey `var builder = try! WireGuard.ConfigurationBuilder(privateKey)` `builder.addresses = ["10.7.0.13/24"]` `builder.dnsServers = ["1.1.1.1", "1.0.0.1"]` `try! builder.addPeer(publicKey, endpoint: "\(serverAddress):\(serverPort)", allowedIPs: ["0.0.0.0/0", ":/0"])`...

hey did you manage to do it?