Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. root@svrijoy:~# cat /etc/network/interfaces
  2. # network interface settings; autogenerated
  3. # Please do NOT modify this file directly, unless you know what
  4. # you're doing.
  5. #
  6. # If you want to manage part of the network configuration manually,
  7. # please utilize the 'source' or 'source-directory' directives to do
  8. # so.
  9. # PVE will preserve these directives, but will NOT its network
  10. # configuration from sourced files, so do not attempt to move any of
  11. # the PVE managed interfaces into external files!
  12.  
  13. source /etc/network/interfaces.d/*
  14.  
  15. auto lo
  16. iface lo inet loopback
  17.  
  18. iface eth0 inet manual
  19.  
  20. auto vmbr0
  21. iface vmbr0 inet static
  22. address 192.168.0.201
  23. netmask 255.255.255.0
  24. gateway 192.168.0.254
  25. bridge_ports eth0
  26. bridge_stp off
  27. bridge_fd 0
  28.  
  29. root@svrijoy:~#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement