Configuring Proxy Connections
You can configure the connector to connect through a
You provide the configuration information to the connector in the connection URL. For more information about the syntax of the connection URL, 
To configure a
- Set the 
UseProxyproperty to1. - Set the 
ProxyHostproperty to the IP address or host name of your proxy server. - Set the 
ProxyPortproperty to the number of the TCP port that the proxy server uses to listen for client connections. - If the proxy server requires authentication, do the following:
- Set the 
ProxyAuthproperty to1. - Set the 
ProxyUIDproperty to your user name for accessing the server. - Set the 
ProxyPWDproperty to your password for accessing the server. 
 - Set the 
 
For example, the following connection URL uses an HTTP proxy server with authentication:
jdbc:presto://192.168.203.141:8080;UseProxy=1;ProxyHost=192.168.55.3;ProxyPort=189;ProyAuth=1;ProxyUID=skroob;ProxyPWD=12345
To configure a SOCKS proxy connection:
- Set the 
UseProxyandProxyTypeproperties to1. - Set the 
ProxyHostproperty to the IP address or host name of your proxy server. - Set the 
ProxyPortproperty to the number of the TCP port that the proxy server uses to listen for client connections. 
For example, the following connection URL uses a SOCKS proxy server with authentication:
jdbc:presto://192.168.203.123:8080;UseProxy=1;ProxyType=1;ProxyHost=localhost;ProxyPort=8754