Setting Up Jackal’s Network¶
Jackal is normally equipped with a combination Wifi + Bluetooth module, such as the Intel Centrino Advanced-N 6235. If this is your first unboxing, ensure that Jackal’s wireless antennas are firmly screwed on to the chassis.
Some Jackal robots may only be equipped with a single antenna, depending on the exact model of PC installed in the robot.
First Connection¶
In order to set Jackal up to connect to your own wireless network, you will first need to access the Jackal’s computer from you computer over ssh
:
Configure your computer to have a static IP address on the
192.168.131.x
subnet, e.g.192.168.131.100
.Connect an ethernet cable between Jackal’s computer and your computer.
ssh
into Jackal’s computer from your computer. In terminal, run:
ssh administrator@192.168.131.1
The default password is clearpath
. You should now be logged into Jackal as the administrator user.
Changing the Default Password¶
Note
All Clearpath robots ship from the factory with their login password set to clearpath
. Upon receipt of your robot we recommend changing the password.
To change the password to log into your robot, you can use the passwd
command. In terminal, run:
passwd
This will prompt you to enter the current password, followed by the new password twice. While typing the passwords in the passwd
prompt there will be no visual feedback (e.g. “*” characters).
To further restrict access to your robot you can reconfigure the robot’s ssh
service to disallow logging in with a password and require ssh
certificates to log in. This tutorial covers how to configure ssh
to disable password-based login.
Connecting to Wifi Access Point¶
Jackal uses netplan
for configuring its wired and wireless interfaces. After accessing Jackal’s computer from your computer, you can configure netplan
so that Jackal can connect to your own wireless network:
Create the file
/etc/netplan/60-wireless.yaml
.Populate the file
/etc/netplan/60-wireless.yaml
with the following:
network:
wifis:
# Replace WIRELESS_INTERFACE with the name of the wireless network device, e.g. wlan0 or wlp3s0
# Fill in the SSID and PASSWORD fields as appropriate. The password may be included as plain-text
# or as a password hash. To generate the hashed password, run
# echo -n 'WIFI_PASSWORD' | iconv -t UTF-16LE | openssl md4 -binary | xxd -p
# If you have multiple wireless cards you may include a block for each device.
# For more options, see https://netplan.io/reference/
WIRELESS_INTERFACE:
optional: true
access-points:
SSID_GOES_HERE:
password: PASSWORD_GOES_HERE
dhcp4: true
dhcp4-overrides:
send-hostname: true
Save the file
/etc/netplan/60-wireless.yaml
. You will then need to apply your newnetplan
configuration and bring up your wireless connection. In terminal, run:
sudo netplan apply
Verify that Jackal successfully connected to your wireless network. In terminal, run:
ip a
This will show all active connections and their IP addresses, including the connection to your wireless network, and the IP address assigned to Jackal’s computer.
Remote ROS2 Connection¶
It is useful to connect your computer to the same ROS2 network as the Jackal, particularly if you want to interface with the Jackal through ROS2 topics, services, and actions:
Ensure that your computer has ROS2 Foxy installed.
Connect Jackal’s computer and your computer to the same (wired or wireless) network.
Verify that Jackal’s computer can
ping
your computer. In terminal on Jackal’s computer, run:
ping <YOUR_COMPUTER_IP>
Verify that your computer can
ping
Jackal’s computer. In terminal on your computer, run:
ping <JACKAL_COMPUTER_IP>
You should be able to now be able to access Jackal’s ROS2 data from your computer, such as viewing Jackal’s ROS2 topics. In terminal on your computer, run:
source /opt/ros/foxy/setup.bash
ros2 topic list
If you are unable to access Jackal’s ROS2 data from your computer, make sure to set the
ROS_DOMAIN_ID
environment variable on your computer to the same value as on Jackal’s computer. By default,ROS_DOMAIN_ID
is set to 0 (in ROS2 and on Jackal), so you will not need to do this step. However, ifROS_DOMAIN_ID
is set to a different value on Jackal, make sure to do the same on your computer. In terminal on your computer, run:
export ROS_DOMAIN_ID=<JACKAL_ROS_DOMAIN_ID>
source /opt/ros/foxy/setup.bash
You should now be able to access Jackal’s ROS2 data (e.g. topics, services, and actions) from your computer.