Advertisement
Guest User

Untitled

a guest
Aug 6th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 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 globals 'globals'
  8. option packet_steering '1'
  9. option ula_prefix 'fd8a:f700:6791::/48'
  10.  
  11. config interface 'lan'
  12. option type 'bridge'
  13. option ifname 'lan1 lan2 lan3 lan4'
  14. option proto 'static'
  15. option ipaddr '192.168.1.1'
  16. option netmask '255.255.255.0'
  17. option ip6assign '64'
  18.  
  19. config interface 'wan'
  20. option ifname 'wan'
  21. option proto 'pppoe'
  22. option username 'guest'
  23. option password 'guest'
  24.  
  25. config interface 'wan6'
  26. option ifname 'wan'
  27. option proto 'dhcpv6'
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement