Skip to content

4.2 Network Configuration

The AntBot computer uses netplan as the network configuration tool.

The interface name is eth0, and the onboard computer’s static IP address is 192.168.6.2.

Unless otherwise requested, AntBot ships with a Wi-Fi router pre-installed. The Wi-Fi SSID is shown as antbot_xxxx. Refer to the separate notice for the password.

  1. Connect your laptop to the AntBot Wi-Fi (antbot_xxxx).

    The router is configured with the 192.168.6 internal subnet.

  2. Set the laptop’s IP address to the 192.168.6.x range. (Excluding 192.168.6.2 and 192.168.6.5)

    By default, an address in the 192.168.6.x range is assigned automatically via DHCP.

    • 192.168.6.2 — Onboard computer (reserved)
    • 192.168.6.5 — 3D LiDAR (reserved)
  3. SSH in using the following command.

    Terminal window
    ssh antbot@192.168.6.2

Changing the Onboard Computer Static IP Address

Section titled “Changing the Onboard Computer Static IP Address”
  1. Edit the /etc/netplan/interfaces.yaml file (addresses field)

    network:
    version: 2
    renderer: networkd
    ethernets:
    eth0:
    dhcp4: no
    addresses: [192.168.6.2/24]
    routes:
    - to: default
    via: 192.168.6.1
    nameservers:
    addresses: [8.8.8.8, 8.8.4.4]
  2. Apply the network configuration with the following command.

    Terminal window
    sudo netplan apply
  3. Verify the IP address assigned to the interface (eth0) with the following command.

    Terminal window
    ip a

© 2026 ROBOTIS AI. All rights reserved.