rubin110

Untitled

Aug 24th, 2010
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. config 'interface' 'loopback'
  2. option 'ifname' 'lo'
  3. option 'proto' 'static'
  4. option 'ipaddr' '127.0.0.1'
  5. option 'netmask' '255.0.0.0'
  6.  
  7. config 'interface' 'wan'
  8. option 'ifname' 'eth0'
  9. option 'proto' 'dhcp'
  10. option 'type' 'bridge'
  11.  
  12. config 'switch'
  13. option 'name' 'eth1.0'
  14. option 'reset' '1'
  15. option 'enable_vlan' '1'
  16.  
  17. config 'switch_vlan'
  18. option 'device' 'eth1.0'
  19. option 'vlan' '1'
  20. option 'ports' '0'
  21.  
  22. config 'switch.noise'
  23. option 'name' 'eth1.1'
  24. option 'reset' '1'
  25. option 'enable_vlan' '2'
  26.  
  27. config 'switch_vlan.nose'
  28. option 'device' 'eth1.1'
  29. option 'vlan' '2'
  30. option 'ports' '1'
  31.  
  32. config 'interface' 'lan'
  33. option 'proto' 'static'
  34. #option 'type' 'bridge'
  35. option 'netmask' '255.255.252.0'
  36. option 'ifname' 'eth1.0'
  37. option 'ipaddr' '172.41.0.1'
  38. option 'gateway' '172.41.0.1'
  39.  
  40. config 'interface' 'nose'
  41. option 'proto' 'static'
  42. option 'netmask' '255.255.252.0'
  43. option 'ifname' 'eth1.1'
  44. option 'ipaddr' '172.51.0.1'
  45. option 'gateway' '172.51.0.1'
Add Comment
Please, Sign In to add comment