9 lines
113 B
Bash
Executable File
9 lines
113 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# VCAN
|
|
echo "vcan0"
|
|
modprobe vcan
|
|
ip link add dev vcan0 type vcan
|
|
ip link set up vcan0
|
|
ifconfig vcan0
|