Advertisement
Guest User

Untitled

a guest
May 20th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. now :
  2. ------------
  3. # The loopback network interface
  4. auto lo
  5. iface lo inet loopback
  6.  
  7. # The primary network interface
  8. auto eth0
  9. iface eth0 inet manual
  10.  
  11. auto br0
  12. iface br0 inet dhcp
  13. bridge_ports eth0
  14.  
  15.  
  16.  
  17. auto eth1
  18. iface eth1 inet manual
  19.  
  20. ------------------------------------------------
  21. I need eth1 in a bridge also , but currently my
  22. target is on eth1
  23. What I think might right but sure won't work
  24. -----------
  25.  
  26. # The loopback network interface
  27. auto lo
  28. iface lo inet loopback
  29.  
  30. # The primary network interface
  31. auto eth0
  32. iface eth0 inet manual
  33.  
  34. auto br0
  35. iface br0 inet dhcp
  36. bridge_ports eth0
  37.  
  38. auto eth1
  39. iface eth1 inet manual
  40.  
  41. auto br1
  42. iface br1 inet manual
  43. bridge_ports eth1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement