Advertisement
Guest User

Untitled

a guest
Sep 18th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 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 'lan'
  8. option ifname 'eth0 eth1'
  9. option force_link '1'
  10. option type 'bridge'
  11. option proto 'static'
  12. option ipaddr '192.168.1.13'
  13. option netmask '255.255.255.0'
  14. option gateway '192.168.1.1'
  15. option dns '192.168.1.1'
  16.  
  17. config switch
  18. option name 'switch0'
  19. option reset '1'
  20. option enable_vlan '1'
  21.  
  22. config switch_vlan
  23. option device 'switch0'
  24. option vlan '1'
  25. option ports '0 1 2 3 4'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement