# Standalone Internet Access

{% hint style="warning" %}
This section describes a configuration for development purposes only, since the changes don't persist after a reboot.
{% endhint %}

There are three methods to connect AI Node to the Internet:

1. Use AI Node with Skynode, and [enable Skynode's internet sharing](/hardware-integration/ai-node/evaluation-kit/internet-sharing-with-skynode.md)
2. Connect AI Node to Ethernet via ETH0/ETH1
3. Connect AI Node via USB-C to another machine

The following section explains how to connect AI Node to a standard internet router, such as a gateway in your office network. Due to the DHCP client running on ETH1, this port is easier to connect to a router than ETH0.

## Internet access via ETH0 and ETH1

### ETH0

ETH0 is by default configured to static IP address `172.20.50.50`, and therefore, will not automatically pick up different IP address via DHCP. Is is possible to manually set an IP address in the network of the router you are connecting the AI Node to.

First, connect ETH0 to network using using Developer Cable *(item 115-00032)* from [AI Node eval kit](/hardware-integration/ai-node/evaluation-kit.md#supported-components). Next, use the following commands to configure the IP address and subnet manually. Replace the IP addresses and default gateway as needed:

```bash
# Remove current ip from eth0
$ ip addr flush dev eth0

# Set new ip address. This should be within subnet of your network
$ ip addr add 192.168.34.99/24 dev eth0

# Add default gateway of your network, which is typically your router
$ ip route add default default gw 192.168.34.1

# AI Node now has internet access via `eth0`
$ ping auterion.com
PING auterion.com (******) 56(84) bytes of data.
64 bytes from *********: icmp_seq=1 ttl=108 time=3.00 ms
```

### ETH1

ETH1 is by default configured as DHCP client. When no other network devices are connected\*, connecting network via ETH1 port to Ethernet using Developer Cable *(item 115-00032)* from [AI Node eval kit](/hardware-integration/ai-node/evaluation-kit.md#supported-components) will give immediate access to internet.

### Network access via USB TypeC adapter

When no other network devices are connected\*, connecting network via USB Ethernet adapter will give immidiate access to internet. You could use Use USB TypeC OTG cable *(item 880-00021)* from [AI Node eval kit](/hardware-integration/ai-node/evaluation-kit.md#supported-components) to expose USB A connector.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.auterion.com/hardware-integration/ai-node/connectivity/standalone-internet-access.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
