How To Use SocketCAN With The Command-Line In Linux
This tutorial shows you how to manipulate SocketCAN interfaces using the Linux command-line. This includes finding out what SocketCAN interfaces are available, printing detailed info about them, and then sending/receiving data.
If you are looking for help controlling a SocketCAN interface from C software, see the How To Use SocketCAN With C In Linux page.
If you are looking for more information about the CAN bus protocol itself, see the CAN Protocol page.
What Types of CAN Interfaces Are There?
SocketCAN provides the following types of CAN interfaces:
- Native interfaces. These are CAN interfaces associated with real hardware (such as a USB-to-CAN adapter). They are named
canX
, e.g.can0
,can1
, … - Virtual interfaces. These are CAN interfaces that are not associated with any real hardware. They are named
vcanX
, e.g.vcan0
,vcan1
, … - SLCAN based interfaces. SLCAN interfaces provide a serial interface. They are named
slcanX
, e.g.slcan0
,slcan1
, e.t.c
Investigating SocketCAN Interfaces
First off, you want to print all the available ip interfaces and see if you have some can interfaces. This uses the iproute2
suite of tools:
The last interface listed is can0
. This is a SocketCAN interface!
Print SocketCAN Info
Native CAN devices that support SocketCAN can be seen using the iproute2
suite of tools. For example:
If you attempt it for a CAN device that does not exist:
An alternative way to investigate CAN interfaces is to use ifconfig <canx>
:
Configuring And Enabling The SocketCAN Interface
Before we can enable the SocketCAN interface, we need to configure it:
Enabling a specific SocketCAN interface is also called “bringing the interface up”. To bring the connection up:
Note 1: If you ever get the following error: RTNETLINK answers: Operation not permitted
, try the command again with sudo.
Note 2: And if you get the error: RTNETLINK answers: Operation not supported
then try run sudo modprobe can
(or sudo modprobe vcan
) first.
Send/Receive Data On SocketCAN
If you then want to send/receive data on the CAN interface, you should install can-utils
:
The repository for can-utils can be found at https://github.com/linux-can/can-utils.
To send data to the CAN bus, use the cansend
utility:
The above command will send a CAN message on can0 with the identifier 0x123 and the data bytes [ 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88 ]
. Values are always treated as hexadecimal.
To display a list of received messages on the bus in realtime, use the candump
utility: