Message "plugin 'ipvlan' not found" Is Displayed After the Docker IPVLAN Creation Commands Are Executed
Symptom
After the Docker IPVLAN creation commands are executed, the message "Error response from daemon: plugin 'ipvlan' not found" is displayed.
Key Process and Cause Analysis
IPVLAN is still marked as an experimental function in Docker.
Conclusion and Solution
- Open the daemon.json file.
1vi /etc/docker/daemon.json - Press i to enter the insert mode and modify the field (if the file already contains content, add the following content to the top).
{ "experimental": true } - Press Esc, type :wq!, and press Enter to save the file and exit.
- Restart the Docker service.
1sudo systemctl restart docker
Parent topic: Troubleshooting