Advertisement
Guest User

network

a guest
Jun 20th, 2017
576
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 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 'fd76:2321:9350::/48'
  9.  
  10. config atm-bridge 'atm'
  11. option vci '32'
  12. option payload 'bridged'
  13. option vpi '0'
  14. option encaps 'vc'
  15.  
  16. config dsl 'dsl'
  17. option annex 'a'
  18. option tone 'av'
  19. option xfer_mode 'atm'
  20. option line_mode 'adsl'
  21.  
  22. config interface 'lan'
  23. option type 'bridge'
  24. option ifname 'eth0.1'
  25. option proto 'static'
  26. option ipaddr '192.168.1.1'
  27. option netmask '255.255.255.0'
  28. option ip6assign '60'
  29.  
  30. config device 'lan_dev'
  31. option name 'eth0.1'
  32. option macaddr '90:72:82:81:75:ca'
  33.  
  34. config interface 'wan'
  35. option _orig_ifname 'ptm0'
  36. option _orig_bridge 'false'
  37. option proto 'pppoa'
  38. option encaps 'vc'
  39. option atmdev '0'
  40. option vci '38'
  41. option vpi '0'
  42. option username 'xxxxxxx@xxxxxxx.co.uk'
  43. option password 'xxxxx'
  44. option ipv6 'auto'
  45. option delegate '0'
  46. option mtu '1432'
  47.  
  48. config device 'wan_dev'
  49. option name 'ptm0'
  50. option macaddr '90:72:82:81:75:cb'
  51.  
  52. config interface 'wan6'
  53. option ifname 'pppoe-wan'
  54. option proto 'dhcpv6'
  55.  
  56. config switch
  57. option name 'switch0'
  58. option reset '1'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement