Advertisement
Guest User

Untitled

a guest
Feb 27th, 2018
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 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 ula_prefix 'fd8f:49ef:0a42::/48'
  9.  
  10. config dsl 'dsl'
  11. option annex 'a'
  12. option tone 'av'
  13. option xfer_mode 'atm'
  14. option line_mode 'adsl'
  15.  
  16. config interface 'lan'
  17. option type 'bridge'
  18. option proto 'static'
  19. option ipaddr '192.168.1.1'
  20. option netmask '255.255.255.0'
  21. option ip6assign '60'
  22. option _orig_ifname 'eth0.1 wlan0'
  23. option _orig_bridge 'true'
  24. option ifname '@wan eth0.1'
  25.  
  26. config interface 'wan'
  27. option proto 'pppoe'
  28. option ipv6 '1'
  29. option username 'xxxxxxxxxxx'
  30. option password 'xxxxxxxx'
  31. option _orig_ifname 'ptm0'
  32. option _orig_bridge 'false'
  33. option ifname 'nas0'
  34.  
  35. config device 'wan_dev'
  36. option name 'ptm0'
  37. option macaddr 'f8:1a:67:a1:a7:6c'
  38.  
  39. config interface 'wan6'
  40. option ifname '@wan'
  41. option proto 'dhcpv6'
  42.  
  43. config switch
  44. option name 'switch0'
  45. option reset '1'
  46. option enable_vlan '1'
  47.  
  48. config switch_vlan
  49. option device 'switch0'
  50. option vlan '1'
  51. option ports '0 2 4 5 6t'
  52.  
  53. config atm-bridge
  54. option unit '0'
  55. option atmdev '0'
  56. option encaps 'llc'
  57. option payload 'bridged'
  58. option vci '35'
  59. option vpi '8'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement