Advertisement
Guest User

Untitled

a guest
Aug 24th, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 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 ula_prefix 'auto'
  9.  
  10. config device
  11. option name 'br-lan'
  12. option type 'bridge'
  13. list ports 'eth0'
  14.  
  15. config interface 'lan'
  16. option device 'br-lan'
  17. option proto 'static'
  18. option ipaddr '192.168.1.1'
  19. option netmask '255.255.255.0'
  20. option ip6assign '60'
  21.  
  22. config interface 'wan'
  23. option device 'eth1'
  24. option proto 'dhcp'
  25.  
  26. config interface 'wan6'
  27. option device 'eth1'
  28. option proto 'dhcpv6'
  29.  
  30. config interface 'eth2'
  31. option device 'eth2'
  32. option proto 'none'
  33.  
  34. config interface 'eth3'
  35. option device 'eth3'
  36. option proto 'none'
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement