Advertisement
Guest User

Untitled

a guest
Dec 8th, 2021
46
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 device '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 'xxxx:xxxx:xxxx::/48'
  10.  
  11. config device
  12. option name 'br-lan'
  13. option type 'bridge'
  14. list ports 'lan1'
  15. list ports 'lan2'
  16. list ports 'lan3'
  17. list ports 'lan4'
  18.  
  19. config interface 'lan'
  20. option device 'br-lan'
  21. option proto 'static'
  22. option ipaddr '192.168.1.1'
  23. option ip6assign '60'
  24. option netmask '255.255.0.0'
  25.  
  26. config interface 'wan'
  27. option proto 'dhcp'
  28. option device 'wan'
  29.  
  30. config interface 'wan6'
  31. option device 'wan'
  32. option proto 'dhcpv6'
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement