Guest User

Untitled

a guest
Oct 20th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. #### VLAN configuration
  2. #### VLAN configuration
  3. config switch eth0
  4. option vlan0 "0 1 2 3 5*"
  5. option vlan1 "4 5"
  6.  
  7.  
  8.  
  9. #### Loopback configuration
  10. config interface loopback
  11. option ifname "lo"
  12. option proto static
  13. option ipaddr 127.0.0.1
  14. option netmask 255.0.0.0
  15.  
  16.  
  17. #### LAN configuration
  18. config interface lan
  19. option type bridge
  20. option ifname "eth0.0"
  21. option proto dhcp
  22. option ipaddr 10.0.0.1
  23. option netmask 255.255.255.0
  24.  
  25.  
  26. #### WAN configuration
  27. config interface wan
  28. option ifname "eth0.1"
  29. option proto dhcp
Add Comment
Please, Sign In to add comment