How to connect to CubeSQLServer over IP6?

Since version 5.7.0 (2019) CubeSQL supports IPv6 protocol, according to release notes.

Most likely our next cablemodem router will be IP6 only and we no longer can configure forwarding to port 4430 of CubeSQLServer, which is running on a Mac on the local network of the main office.

Has anyone connected to CubeSQL over IP6 and could provide a code example?

1 Like

You do not want to publish the Database on the Internet. Not with IPv4 Portforwarding and not with IPv6. You should use VPN for doing things like that.

However, you can connect as normal:

Dim mDB As New CubeSQLServer
mDB.Host = “[aaaa:aaaa:aaaa:aaaa:aaaa:aaaa:aaaa:aaaa]”
mDB.Port = 4430
mDB.UserName = “admin”
mDB.Password = “xxxxxxxxxx”