Advertisement
Guest User

Untitled

a guest
Jan 5th, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1.  
  2. config interface 'loopback'
  3. option ifname 'lo'
  4. option proto 'static'
  5. option ipaddr '127.0.0.1'
  6. option netmask '255.0.0.0'
  7.  
  8. config globals 'globals'
  9. option ula_prefix 'fd21:3c21:5346::/48'
  10.  
  11. config interface 'lan'
  12. option type 'bridge'
  13. option ifname 'eth0'
  14. option proto 'static'
  15. option ipaddr '192.168.1.1'
  16. option netmask '255.255.255.0'
  17. option ip6assign '60'
  18.  
  19. config interface 'wan'
  20. option ifname 'eth1'
  21. option proto 'dhcp'
  22. option peerdns '0'
  23. option dns '8.8.4.4'
  24.  
  25. config interface 'wan6'
  26. option ifname 'eth1'
  27. option proto 'dhcpv6'
  28. option auto '0'
  29.  
  30. config switch
  31. option name 'switch0'
  32. option reset '1'
  33. option enable_vlan '1'
  34.  
  35. config switch_vlan
  36. option device 'switch0'
  37. option vlan '1'
  38. option ports '0 1 2 3 5'
  39.  
  40. config switch_vlan
  41. option device 'switch0'
  42. option vlan '2'
  43. option ports '4 6'
  44.  
  45. config interface 'guest'
  46. option _orig_ifname 'wlan0-1'
  47. option _orig_bridge 'false'
  48. option proto 'static'
  49. option ipaddr '192.168.3.1'
  50. option netmask '255.255.255.0'
  51. option type 'bridge'
  52.  
  53. config interface 'nordvpntun'
  54. option proto 'none'
  55. option ifname 'tun0'
  56. option auto '0'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement