--- title: "system.util.getGatewayAddress" description: "Returns the address of the Gateway that the Client is currently communicating with." --- # system.util.getGatewayAddress > Returns the address of the Gateway that the Client is currently communicating with. This function is used in **Python Scripting**. ## Description Returns the address of the Gateway with which the Client is currently communicating. ## Client Permission Restrictions This scripting function has no [Client Permission](../../../ignition-modules/vision/vision-project-properties/vision-project-properties.md#vision-permissions-properties) restrictions. ## Syntax `system.util.getGatewayAddress()` ### Parameters Nothing ### Returns **String** - The address of the Gateway with which the client is communicating. ### Scope Vision Client ## Code Examples ```python title="Example #1" # This code would open up the gateway config page. address = system.util.getGatewayAddress() system.net.openURL("%s/web/config/" % address) ```