Reputation: 17
I want to use caringcaribou to fuzz the vehicle can bus. I connected the pcan and then used two commands "sudo modprobe can", "sudo ip link set can0 up type can bitrate 500000", then I used "ip link show can0", can see the information of can0, but I use the command "cc.py fuzzer random", an error of unknown interface type "None" appeared. I used cc.py -i can0 fuzzer random and still got the same error. I couldn't get any message by using the command "candump can0" , but my colleague can capture the messages of the can bus normally by using pcan view.How to solve this problem, thank you very much
Upvotes: 0
Views: 308
Reputation: 1
The problem lies in interface setup. you need to make UP your interface:
sudo ip link set up can0
[default]
interface = socketcan
channel = can0
I hope I helped you today !!
Upvotes: 0