Guest User

Untitled

a guest
May 27th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. If the lxd/lxc knows about the bridge (i.e. it's managed) then run the following:
  2.  
  3. ```bash
  4. lxc network delete lxdbr0
  5. ```
  6.  
  7. If it's no longer managed by lxd/lxc, you need to run the following commands:
  8.  
  9. ```bash
  10. ip link set lxdbr0 down
  11. ip link delete lxdbr0 type bridge
  12. ```
  13.  
  14. You may need to kill the LXD process listening on port `8443` (it requires sudo as lxd runs as root)
  15.  
  16. ```bash
  17. sudo lsof -i :8443
  18. ```
Add Comment
Please, Sign In to add comment