Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. config dnsmasq
  2. option domainneeded '1'
  3. option boguspriv '1'
  4. option filterwin2k '0'
  5. option localise_queries '1'
  6. option rebind_protection '1'
  7. option rebind_localhost '1'
  8. option local '/lan/'
  9. option domain 'lan'
  10. option expandhosts '1'
  11. option nonegcache '0'
  12. option authoritative '1'
  13. option readethers '1'
  14. option leasefile '/tmp/dhcp.leases'
  15. option resolvfile '/tmp/resolv.conf.auto'
  16.  
  17. config dhcp 'lan'
  18. option interface 'lan'
  19. option start '100'
  20. option leasetime '12h'
  21. option limit '15'
  22.  
  23. config dhcp 'wan'
  24. option interface 'wan'
  25. option ignore '1'
  26.  
  27. config dropbear
  28. option PasswordAuth 'on'
  29. option RootPasswordAuth 'off'
  30. option Port '22'
  31. # option BannerFile '/etc/banner'
  32.  
  33. config interface 'loopback'
  34. option ifname 'lo'
  35. option proto 'static'
  36. option ipaddr '127.0.0.1'
  37. option netmask '255.0.0.0'
  38.  
  39. config interface 'lan'
  40. option ifname 'eth0'
  41. option type 'bridge'
  42. option proto 'static'
  43. option gateway '192.168.100.1'
  44. option dns '192.168.100.1'
  45. option ipaddr '192.168.100.2'
  46. option netmask '255.255.255.0'
  47.  
  48. config wifi-device 'radio0'
  49. option type 'mac80211'
  50. option macaddr '64:66:b3:4d:8b:ce'
  51. option hwmode '11ng'
  52. option htmode 'HT20'
  53. list ht_capab 'SHORT-GI-20'
  54. list ht_capab 'SHORT-GI-40'
  55. list ht_capab 'RX-STBC1'
  56. list ht_capab 'DSSS_CCK-40'
  57. option txpower '27'
  58. option country 'US'
  59. option channel 'auto'
  60.  
  61. config wifi-iface
  62. option device 'radio0'
  63. option network 'lan'
  64. option mode 'ap'
  65. option ssid 'EDITED'
  66. option encryption 'psk-mixed'
  67. option key 'EDITED'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement