OpenWrt Forum Archive

Topic: Update on Linksys WRT1900AC support

The content of this topic has been archived between 16 Sep 2014 and 7 May 2018. Unfortunately there are posts – most likely complete pages – missing.

@Kaloz

I think you had a kernel 4.0 version at one point?  Do you still have one or is Nitroshift the go to for this version?

Thanks!

lifehacksback wrote:

OpenWrt Chaos Calmer r45610 / LuCI Master (git-15.125.30735-c38b4cd)
Linux Kernel: 3.18.11

Network goes down, can't access luci, hard reboot required. Since i needed the internet i didn't try to get logs.

Same problem has persisted here.

Current:
Chaos Calmer r45590
Linux Kernel: 3.18.11

Up for 2 and a half days now. Still looking for clues to the bug.
I power cycled this version at least three times after installation.

grimley wrote:

Same problem has persisted here.

Current:
Chaos Calmer r45590
Linux Kernel: 3.18.11

Up for 2 and a half days now. Still looking for clues to the bug.
I power cycled this version at least three times after installation.

I always build almost daily so i never used to encounter these errors, now im building 4.0.1 and gonna test that.

I am very pleased to report the latest build from Kaloz has been quite stable for the past 48 hours. I must say leaps ahead of Linksys stock firmware.

Quick question:

Going forward, do we need to revert back to Linksys firmware before applying the latest stable WRT image?

Thanks again for your support!

-JM

gufus wrote:
Armik wrote:

somebody has a problem with openvpn?
https://cloud.githubusercontent.com/ass … e8508e.jpg

Not here

Try a new /etc/config/openvpn file

Try this:
config openvpn 'xyz_vpn'
    option proto 'udp'
    option dev_type 'tun'
    option nobind '1'
    option persist_key '1'
    option port '1194'
    option client '1'
    option reneg_sec '0'
    option dev 'tun1'
    option persist_tun '1'
    option remote '10.4.0.1 255.255.255.0'
    option remote_random '0'
    option verb '5'
    option mute '20'
    option ca '/etc/openvpn/ca.crt'
    option cert '/etc/openvpn/server.crt'
    option key '/etc/openvpn/server.key'
    option log_append '/var/log/openvpn.log'
    option cipher 'BF-CBC'
    option auth 'SHA1'
    option tls_client '1'
    option tun_mtu '1500'
    option mtu_disc 'yes'
    option auth_retry 'nointeract'
    option resolv_retry 'infinite'
    option fast_io '1'
    option pull '0'
    option ifconfig '10.10.0.1 255.0.0.0'
    option up '/root/set-client_iptables'
    option down '/root/del-client_iptables'
    option script_security '2'

.
I'm sorry.i do not understand

nitroshift wrote:

@geonnave

That is correct. You can flash that image from stock.

nitroshift

Thanks for the answer, @nitroshift! (and sorry for the late reply)

Armik wrote:
gufus wrote:
Armik wrote:

somebody has a problem with openvpn?
https://cloud.githubusercontent.com/ass … e8508e.jpg

Not here

Try a new /etc/config/openvpn file

Try this:
config openvpn 'xyz_vpn'
    option proto 'udp'
    option dev_type 'tun'
    option nobind '1'
    option persist_key '1'
    option port '1194'
    option client '1'
    option reneg_sec '0'
    option dev 'tun1'
    option persist_tun '1'
    option remote '10.4.0.1 255.255.255.0'
    option remote_random '0'
    option verb '5'
    option mute '20'
    option ca '/etc/openvpn/ca.crt'
    option cert '/etc/openvpn/server.crt'
    option key '/etc/openvpn/server.key'
    option log_append '/var/log/openvpn.log'
    option cipher 'BF-CBC'
    option auth 'SHA1'
    option tls_client '1'
    option tun_mtu '1500'
    option mtu_disc 'yes'
    option auth_retry 'nointeract'
    option resolv_retry 'infinite'
    option fast_io '1'
    option pull '0'
    option ifconfig '10.10.0.1 255.0.0.0'
    option up '/root/set-client_iptables'
    option down '/root/del-client_iptables'
    option script_security '2'

.
I'm sorry.i do not understand

The error msg means that /etc/config/openvpn is either missing or containing syntax errors.

So replace the file /etc/config/openvpn with a new one with this in it

--- cut here
#
# Routed point-to-point server
#
config openvpn_recipe server_tun_ptp
    option _description        "Simple server configuration for a routed point-to-point VPN"
    option _role            "server"
    option dev            "tun"
    option ifconfig            "10.0.0.1 10.0.0.2"
    option secret            "shared-secret.key"
    option keepalive        "10 60"
    option comp_lzo            "yes"
    option verb            "3"
        option mssfix            "1420"

#
# Routed point-to-point client
#
config openvpn_recipe client_tun_ptp
    option _description        "Simple client configuration for a routed point-to-point VPN"
    option _role            "client"
    option dev            "tun"
    list   remote            "vpnserver.example.org"
    option ifconfig            "10.0.0.2 10.0.0.1"
    option secret            "shared-secret.key"
    option nobind            "1"
    option comp_lzo            "yes"
    option verb            "3"

#
# Routed multi-client server
#
config openvpn_recipe server_tun
    option _description        "Server configuration for a routed multi-client VPN"
    option _role            "server"
    option dev            "tun"
    option server            "10.0.100.0 255.255.255.0"
    option ca            "ca.crt"
    option cert            "server.crt"
    option key             "server.key"
    option dh             "dh1024.pem"
    option keepalive        "10 60"
    option comp_lzo            "yes"
    option verb            "3"
        option mssfix            "1420"

#
# Routed client
#
config openvpn_recipe client_tun
    option _description        "Client configuration for a routed multi-client VPN"
    option _role            "client"
    option client            "1"
    option dev            "tun"
    list   remote            "vpnserver.example.org"
    option pkcs12            "my_client.p12"
    option remote_cert_tls        "server"
    option comp_lzo            "yes"
    option nobind            "1"
    option persist_key        "1"
    option persist_tun        "1"
    option verb            "3"
    option reneg_sec        "0"
    option float            "1"

#
# Multi-client ethernet bridge server
#
config openvpn_recipe server_tap_bridge
    option _description        "Server configuration for an ethernet bridge VPN"
    option _role            "server"
    option dev            "tap"
    option server_bridge        "192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254"
    option ca            "ca.crt"
    option cert            "server.crt"
    option key             "server.key"
    option dh             "dh1024.pem"
    option keepalive        "10 60"
    option comp_lzo            "yes"
    option verb            "3"
        option mssfix            "1420"

#
# Ethernet bridge client
#
config openvpn_recipe client_tap_bridge
    option _description        "Client configuration for an ethernet bridge VPN"
    option _role            "client"
    option client            "1"
    option dev             "tap"
    list   remote            "vpnserver.example.org"
    option ca             "ca.crt"
    option cert            "my_client.crt"
    option key             "my_client.key"
    option dh             "dh1024.pem"
    option remote_cert_tls        "server"
    option comp_lzo            "yes"
    option nobind            "1"
    option persist_key        "1"
    option verb            "3"
    option reneg_sec        "0"
    option float            "1"
--- cut here

Firmware with kernel 4.0.1 running here on both my units for almost 2 days stable. Will upload the images tomorrow to my One drive and come back with the link.

nitroshift

(Last edited by nitroshift on 6 May 2015, 20:58)

nitroshift wrote:

Firmware with kernel 4.0.1 running here on both my units for almost 2 days stable. Will upload the images tomorrow to my One drive and come back with the link.

nitroshift


Thanks Nitroshift!

stevef9432204 wrote:

I can't figure this out...   I have posted about this before..  Have two wrt900ac routers, and last good working trunk version was r45590.
Working is defined as 2.4Ghz radio stays working for a day or so,  Now current trunk r45605 will work after power up, all device connect,
but within 30 minutes or so, they stop being able to talk to the router.  They show as connected, but are no pingable.  These are a mix of
android,  apple, and a hp printer. Trying to reconnect fails until one powers off the routers..  Both do this.  Devices fail, "unable to authenticate"
or no dhcp address available.

Suggestions?

Steve F

I have a similar problem with 5 GHz. Could You post your Openwrt version and Luci git version? Kernel? Logs? Uptime? I'm going to submit a bug report. I want to figure out if it is kernel problem interacting with the driver or a hardware error hmm I'm incline to believe it is a kernel-driver problem more than a hardware problem.

As Requested -

Powered by LuCI (git-15.125.30735-c38b4cd) / OpenWrt Chaos Calmer r45605

BusyBox v1.23.2 (2015-05-05 22:57:45 CEST) built-in shell (ash)

  _______                     ________        __
|       |.-----.-----.-----.|  |  |  |.----.|  |_
|   -   ||  _  |  -__|     ||  |  |  ||   _||   _|
|_______||   __|_____|__|__||________||__|  |____|
          |__| W I R E L E S S   F R E E D O M
-----------------------------------------------------
CHAOS CALMER (Bleeding Edge, r45605)
-----------------------------------------------------
  * 1 1/2 oz Gin            Shake with a glassful
  * 1/4 oz Triple Sec       of broken ice and pour
  * 3/4 oz Lime Juice       unstrained into a goblet.
  * 1 1/2 oz Orange Juice
  * 1 tsp. Grenadine Syrup
-----------------------------------------------------
root@OpenWrt:~# uptime
15:48:16 up  3:25,  load average: 0.01, 0.02, 0.04
root@OpenWrt:~# uname -a
Linux OpenWrt 3.18.11 #1 SMP Tue May 5 23:16:24 CEST 2015 armv7l GNU/Linux
root@OpenWrt:~# dmesg
[   15.891494] mwl_reg_notifier(): phy0: FCC
[   15.895575] mwl_reg_notifier(): Channel: 1: 0x0 0x0 0xf
[   15.900840] mwl_reg_notifier(): 17 11 11 11 10 10 10 10 f f f f 0 0 0 0
[   15.907607] mwl_reg_notifier(): Channel: 2: 0x0 0x0 0xf
[   15.912913] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   15.919993] mwl_reg_notifier(): Channel: 3: 0x0 0x0 0xf
[   15.925293] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   15.932413] mwl_reg_notifier(): Channel: 4: 0x0 0x0 0xf
[   15.937678] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   15.944794] mwl_reg_notifier(): Channel: 5: 0x0 0x0 0xf
[   15.950059] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   15.957175] mwl_reg_notifier(): Channel: 6: 0x0 0x0 0xf
[   15.962481] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   15.969561] mwl_reg_notifier(): Channel: 7: 0x0 0x0 0xf
[   15.974860] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   15.981980] mwl_reg_notifier(): Channel: 8: 0x0 0x0 0xf
[   15.987245] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   15.994360] mwl_reg_notifier(): Channel: 9: 0x0 0x0 0xf
[   15.999626] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   16.006754] mwl_reg_notifier(): Channel: 10: 0x0 0x0 0xf
[   16.012147] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   16.019228] mwl_reg_notifier(): Channel: 11: 0x0 0x0 0xf
[   16.024615] mwl_reg_notifier(): 17 11 11 11 11 11 11 11 10 10 10 10 0 0 0 0
[   16.033816] pci 0000:00:03.0: enabling device (0140 -> 0142)
[   16.039566] mwlwifi 0000:03:00.0: enabling device (0140 -> 0142)
[   16.045751] mwl_alloc_pci_resource(): priv->iobase0 = d1400000
[   16.051708] mwl_alloc_pci_resource(): priv->iobase1 = d1600000
[   16.057613] mwl_alloc_pci_resource(): priv->pcmd_buf = ce57c000  priv->pphys_cmd_buf = e57c000
[   16.067986] mwl_fwdl_download_firmware(): fw download start 88
[   16.188506] mwl_fwdl_download_firmware(): FwSize = 116208 downloaded Size = 116208 curr_iteration 65498
[   16.452849] mwl_fwdl_download_firmware(): 0;
[   16.712019] mwl_fwdl_download_firmware(): 0;
[   16.971156] mwl_fwdl_download_firmware(): 0;
[   17.046444] mwl_fwdl_download_firmware(): complete
[   17.051301] mwl_process_of_dts(): 2G: disable
[   17.055726] mwl_process_of_dts(): 5G: enable
[   17.060020] mwl_process_of_dts(): TX: 4 antennas
[   17.064703] mwl_process_of_dts(): RX: 4 antennas
[   17.071195] mwl_fwcmd_get_hw_specs(): pcmd = ce57c000
[   17.081305] mwl_fwcmd_set_hw_specs(): mwl_fwcmd_set_hw_specs ...
[   17.087381] mwl_fwcmd_set_hw_specs():   -->pPhysTxRing[0] = e580000
[   17.093717] mwl_fwcmd_set_hw_specs():   -->pPhysTxRing[1] = e584000
[   17.100012] mwl_fwcmd_set_hw_specs():   -->pPhysTxRing[2] = e588000
[   17.106343] mwl_fwcmd_set_hw_specs():   -->pPhysTxRing[3] = e58c000
[   17.112678] mwl_fwcmd_set_hw_specs():   -->pPhysRxRing    = eaf8000
[   17.118976] mwl_fwcmd_set_hw_specs():   -->numtxq 20 wcbperq 256 totalrxwcb 256
[   17.131331] mwl_wl_init(): firmware version: 0x7020805
[   17.153728] mwl_reg_notifier(): phy1: FCC
[   17.157779] mwl_reg_notifier(): Channel: 36: 0x0 0x0 0xf
[   17.163171] mwl_reg_notifier(): 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9
[   17.169208] mwl_reg_notifier(): Channel: 40: 0x0 0x0 0xf
[   17.174593] mwl_reg_notifier(): 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9
[   17.180630] mwl_reg_notifier(): Channel: 44: 0x0 0x0 0xf
[   17.186016] mwl_reg_notifier(): 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9
[   17.192092] mwl_reg_notifier(): Channel: 48: 0x0 0x0 0xf
[   17.197442] mwl_reg_notifier(): 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9
[   17.203513] mwl_reg_notifier(): Channel: 52: 0x0 0x0 0xf
[   17.208865] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   17.215633] mwl_reg_notifier(): Channel: 56: 0x0 0x0 0xf
[   17.220984] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   17.227752] mwl_reg_notifier(): Channel: 60: 0x0 0x0 0xf
[   17.233150] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   17.239883] mwl_reg_notifier(): Channel: 64: 0x0 0x0 0xf
[   17.245270] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   17.252056] mwl_reg_notifier(): Channel: 100: 0x0 0x0 0xf
[   17.257497] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.264961] mwl_reg_notifier(): Channel: 104: 0x0 0x0 0xf
[   17.270401] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.277865] mwl_reg_notifier(): Channel: 108: 0x0 0x0 0xf
[   17.283344] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.290772] mwl_reg_notifier(): Channel: 112: 0x0 0x0 0xf
[   17.296247] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.303716] mwl_reg_notifier(): Channel: 116: 0x0 0x0 0xf
[   17.309156] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.316621] mwl_reg_notifier(): Channel: 120: 0x0 0x0 0xf
[   17.322100] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.329530] mwl_reg_notifier(): Channel: 124: 0x0 0x0 0xf
[   17.335006] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.342475] mwl_reg_notifier(): Channel: 128: 0x0 0x0 0xf
[   17.347915] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.355380] mwl_reg_notifier(): Channel: 132: 0x0 0x0 0xf
[   17.360820] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.368285] mwl_reg_notifier(): Channel: 136: 0x0 0x0 0xf
[   17.373765] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.381194] mwl_reg_notifier(): Channel: 140: 0x0 0x0 0xf
[   17.386669] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   17.394138] mwl_reg_notifier(): Channel: 149: 0x0 0x0 0xf
[   17.399578] mwl_reg_notifier(): 16 16 16 16 14 14 14 14 15 15 15 15 14 14 14 14
[   17.407042] mwl_reg_notifier(): Channel: 153: 0x0 0x0 0xf
[   17.412521] mwl_reg_notifier(): 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14
[   17.419949] mwl_reg_notifier(): Channel: 157: 0x0 0x0 0xf
[   17.425425] mwl_reg_notifier(): 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14
[   17.432900] mwl_reg_notifier(): Channel: 161: 0x0 0x0 0xf
[   17.438340] mwl_reg_notifier(): 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14
[   17.445804] mwl_reg_notifier(): Channel: 165: 0x0 0x0 0xf
[   17.451244] mwl_reg_notifier(): 16 16 16 16 16 16 16 16 15 15 15 15 14 14 14 14
[   17.462681] i2c /dev entries driver
[   17.514144] u32 classifier
[   17.516881]     input device check on
[   17.520563]     Actions configured
[   17.526475] Mirror/redirect action on
[   17.538484] nf_conntrack version 0.5.0 (3988 buckets, 15952 max)
[   17.553244] ip_tables: (C) 2000-2006 Netfilter Core Team
[   18.651705] rtc-mv f1010300.rtc: internal RTC not ticking
[   18.688021] usbcore: registered new interface driver ums-alauda
[   18.696852] usbcore: registered new interface driver ums-cypress
[   18.704666] usbcore: registered new interface driver ums-datafab
[   18.712660] usbcore: registered new interface driver ums-freecom
[   18.720236] usbcore: registered new interface driver ums-isd200
[   18.727862] usbcore: registered new interface driver ums-jumpshot
[   18.735477] usbcore: registered new interface driver ums-karma
[   18.744293] usbcore: registered new interface driver ums-sddr09
[   18.752889] usbcore: registered new interface driver ums-sddr55
[   18.760585] usbcore: registered new interface driver ums-usbat
[   18.794582] xt_time: kernel timezone is -0000
[   18.811162] PPP generic driver version 2.4.2
[   18.817020] NET: Registered protocol family 24
[   19.831705] rtc-mv f1010300.rtc: internal RTC not ticking
[   20.871705] rtc-mv f1010300.rtc: internal RTC not ticking
[   21.911705] rtc-mv f1010300.rtc: internal RTC not ticking
[   26.002787] device eth0 entered promiscuous mode
[   26.009109] br-lan: port 1(eth0) entered forwarding state
[   26.014613] br-lan: port 1(eth0) entered forwarding state
[   26.039831] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   26.737777] cfg80211: Calling CRDA for country: US
[   26.744581] mwl_reg_notifier(): phy1: FCC
[   26.748627] mwl_reg_notifier(): Channel: 36: 0x0 0x0 0xf
[   26.754028] mwl_reg_notifier(): 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9
[   26.760075] mwl_reg_notifier(): Channel: 40: 0x0 0x0 0xf
[   26.765465] mwl_reg_notifier(): 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9
[   26.771517] mwl_reg_notifier(): Channel: 44: 0x0 0x0 0xf
[   26.776942] mwl_reg_notifier(): 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9
[   26.783026] mwl_reg_notifier(): Channel: 48: 0x0 0x0 0xf
[   26.788374] mwl_reg_notifier(): 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9
[   26.794455] mwl_reg_notifier(): Channel: 52: 0x0 0x0 0xf
[   26.799806] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   26.806590] mwl_reg_notifier(): Channel: 56: 0x0 0x0 0xf
[   26.811971] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   26.818712] mwl_reg_notifier(): Channel: 60: 0x0 0x0 0xf
[   26.824150] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   26.830893] mwl_reg_notifier(): Channel: 64: 0x0 0x0 0xf
[   26.836281] mwl_reg_notifier(): f f f f f f f f 12 12 12 12 12 12 12 12
[   26.843070] mwl_reg_notifier(): Channel: 100: 0x0 0x0 0xf
[   26.848507] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.855983] mwl_reg_notifier(): Channel: 104: 0x0 0x0 0xf
[   26.861419] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.868899] mwl_reg_notifier(): Channel: 108: 0x0 0x0 0xf
[   26.874368] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.881839] mwl_reg_notifier(): Channel: 112: 0x0 0x0 0xf
[   26.887277] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.894733] mwl_reg_notifier(): Channel: 116: 0x0 0x0 0xf
[   26.900156] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.907593] mwl_reg_notifier(): Channel: 120: 0x0 0x0 0xf
[   26.913067] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.920617] mwl_reg_notifier(): Channel: 124: 0x0 0x0 0xf
[   26.926191] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.933759] mwl_reg_notifier(): Channel: 128: 0x0 0x0 0xf
[   26.939201] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.946772] mwl_reg_notifier(): Channel: 132: 0x0 0x0 0xf
[   26.952269] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.959817] mwl_reg_notifier(): Channel: 136: 0x0 0x0 0xf
[   26.965388] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.972864] mwl_reg_notifier(): Channel: 140: 0x0 0x0 0xf
[   26.978303] mwl_reg_notifier(): 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
[   26.985760] mwl_reg_notifier(): Channel: 149: 0x0 0x0 0xf
[   26.991197] mwl_reg_notifier(): 16 16 16 16 14 14 14 14 15 15 15 15 14 14 14 14
[   26.998676] mwl_reg_notifier(): Channel: 153: 0x0 0x0 0xf
[   27.004159] mwl_reg_notifier(): 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14
[   27.011630] mwl_reg_notifier(): Channel: 157: 0x0 0x0 0xf
[   27.017057] mwl_reg_notifier(): 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14
[   27.024550] mwl_reg_notifier(): Channel: 161: 0x0 0x0 0xf
[   27.029991] mwl_reg_notifier(): 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 14
[   27.037465] mwl_reg_notifier(): Channel: 165: 0x0 0x0 0xf
[   27.042911] mwl_reg_notifier(): 16 16 16 16 16 16 16 16 15 15 15 15 14 14 14 14
[   27.050351] mwl_reg_notifier(): phy0: FCC
[   27.054400] mwl_reg_notifier(): Channel: 1: 0x0 0x0 0xf
[   27.059665] mwl_reg_notifier(): 17 11 11 11 10 10 10 10 f f f f 0 0 0 0
[   27.066403] mwl_reg_notifier(): Channel: 2: 0x0 0x0 0xf
[   27.071665] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.078735] mwl_reg_notifier(): Channel: 3: 0x0 0x0 0xf
[   27.084004] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.091074] mwl_reg_notifier(): Channel: 4: 0x0 0x0 0xf
[   27.096358] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.103468] mwl_reg_notifier(): Channel: 5: 0x0 0x0 0xf
[   27.108720] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.115801] mwl_reg_notifier(): Channel: 6: 0x0 0x0 0xf
[   27.121049] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.128167] mwl_reg_notifier(): Channel: 7: 0x0 0x0 0xf
[   27.133470] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.140559] mwl_reg_notifier(): Channel: 8: 0x0 0x0 0xf
[   27.145892] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.153013] mwl_reg_notifier(): Channel: 9: 0x0 0x0 0xf
[   27.158267] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.165400] mwl_reg_notifier(): Channel: 10: 0x0 0x0 0xf
[   27.170790] mwl_reg_notifier(): 17 16 16 16 16 16 16 14 10 10 10 10 0 0 0 0
[   27.177918] mwl_reg_notifier(): Channel: 11: 0x0 0x0 0xf
[   27.183275] mwl_reg_notifier(): 17 11 11 11 11 11 11 11 10 10 10 10 0 0 0 0
[   27.190360] cfg80211: Regulatory domain changed to country: US
[   27.196251] cfg80211:  DFS Master region: FCC
[   27.200447] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   27.210279] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A)
[   27.218367] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 1700 mBm), (N/A)
[   27.227927] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2300 mBm), (0 s)
[   27.237489] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A)
[   27.245567] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[   27.254305] br-lan: port 1(eth0) entered disabled state
[   28.262530] mvneta f1070000.ethernet eth0: link up
[   28.267366] mvneta f1074000.ethernet eth1: link up
[   28.294756] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   28.303712] device wlan0 entered promiscuous mode
[   28.308561] br-lan: port 2(wlan0) entered forwarding state
[   28.314161] br-lan: port 2(wlan0) entered forwarding state
[   28.320031] br-lan: port 2(wlan0) entered disabled state
[   28.325550] br-lan: port 1(eth0) entered forwarding state
[   28.330995] br-lan: port 1(eth0) entered forwarding state
[   28.336651] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   28.549112] IPv6: ADDRCONF(NETDEV_UP): wlan1: link is not ready
[   28.643420] br-lan: port 2(wlan0) entered forwarding state
[   28.648970] br-lan: port 2(wlan0) entered forwarding state
[   28.654615] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   28.671822] device wlan1 entered promiscuous mode
[   28.676629] br-lan: port 3(wlan1) entered forwarding state
[   28.682192] br-lan: port 3(wlan1) entered forwarding state
[   29.052180] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready
[   30.331621] br-lan: port 1(eth0) entered forwarding state
[   30.641616] br-lan: port 2(wlan0) entered forwarding state
[   30.681648] br-lan: port 3(wlan1) entered forwarding state
[ 1678.616542] nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead.
[ 1947.227187] icmp6_send: no reply to icmp error
[ 8112.435575] icmp6_send: no reply to icmp error
[ 8211.710902] icmp6_send: no reply to icmp error
[ 8512.861609] icmp6_send: no reply to icmp error
root@OpenWrt:~#  logread
Wed May  6 15:05:07 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:06:07 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:06:07 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:06:43 2015 daemon.warn odhcpd[1207]: DHCPV6 REBIND IA_NA from 000300013863bbc243de on br-lan: ok 2001:5b0:263c:fbc8::d05/128 fdc2:d159:5372::d05/128
Wed May  6 15:07:07 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:07:07 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:08:07 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:08:07 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:09:07 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:09:07 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:09:53 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: disassociated due to inactivity
Wed May  6 15:09:54 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed May  6 15:10:00 2015 cron.info crond[1241]: USER root pid 27903 cmd /sbin/fan_ctrl.sh
Wed May  6 15:10:07 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:10:07 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:11:07 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:11:07 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:12:08 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:12:08 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:13:08 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:13:08 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:13:33 2015 daemon.info hostapd: wlan0: STA 84:a4:66:34:a6:80 WPA: group key handshake completed (WPA)
Wed May  6 15:13:33 2015 daemon.info hostapd: wlan0: STA 6c:c2:17:19:ae:14 WPA: group key handshake completed (WPA)
Wed May  6 15:13:33 2015 daemon.info hostapd: wlan1: STA 18:22:7e:c8:41:8e WPA: group key handshake completed (WPA)
Wed May  6 15:13:33 2015 daemon.info hostapd: wlan1: STA b0:65:bd:1d:51:e2 WPA: group key handshake completed (WPA)
Wed May  6 15:13:33 2015 daemon.info hostapd: wlan1: STA f4:f1:e1:5a:46:4c WPA: group key handshake completed (WPA)
Wed May  6 15:13:34 2015 daemon.info hostapd: wlan1: STA f4:09:d8:9d:ed:e5 WPA: group key handshake completed (WPA)
Wed May  6 15:14:08 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:14:08 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:15:00 2015 cron.info crond[1241]: USER root pid 28499 cmd /sbin/fan_ctrl.sh
Wed May  6 15:15:08 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:15:08 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:16:09 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:16:09 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:17:09 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:17:09 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:17:13 2015 daemon.warn odhcpd[1207]: DHCPV6 REBIND IA_NA from 000300013863bbc243de on br-lan: ok 2001:5b0:263c:fbc8::d05/128 fdc2:d159:5372::d05/128
Wed May  6 15:18:09 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:18:09 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:19:09 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:19:10 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:19:39 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: authenticated
Wed May  6 15:20:00 2015 cron.info crond[1241]: USER root pid 29095 cmd /sbin/fan_ctrl.sh
Wed May  6 15:20:10 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:20:10 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:21:10 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:21:10 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:22:10 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:22:10 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:23:11 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:23:11 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:23:33 2015 daemon.info hostapd: wlan0: STA 84:a4:66:34:a6:80 WPA: group key handshake completed (WPA)
Wed May  6 15:23:33 2015 daemon.info hostapd: wlan0: STA 6c:c2:17:19:ae:14 WPA: group key handshake completed (WPA)
Wed May  6 15:23:33 2015 daemon.info hostapd: wlan1: STA 18:22:7e:c8:41:8e WPA: group key handshake completed (WPA)
Wed May  6 15:23:34 2015 daemon.info hostapd: wlan1: STA b0:65:bd:1d:51:e2 WPA: group key handshake completed (WPA)
Wed May  6 15:23:34 2015 daemon.info hostapd: wlan1: STA f4:f1:e1:5a:46:4c WPA: group key handshake completed (WPA)
Wed May  6 15:23:34 2015 daemon.info hostapd: wlan1: STA f4:09:d8:9d:ed:e5 WPA: group key handshake completed (WPA)
Wed May  6 15:24:11 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:24:11 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:24:40 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: disassociated due to inactivity
Wed May  6 15:24:41 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed May  6 15:25:00 2015 cron.info crond[1241]: USER root pid 29693 cmd /sbin/fan_ctrl.sh
Wed May  6 15:25:11 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:25:11 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:25:12 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: authenticated
Wed May  6 15:26:05 2015 daemon.warn odhcpd[1207]: DHCPV6 SOLICIT IA_NA from 000100011793b642b065bd1d51e2 on br-lan: ok 2001:5b0:263c:fbc8::984/128 fdc2:d159:5372::984/128
Wed May  6 15:26:06 2015 daemon.warn odhcpd[1207]: DHCPV6 REQUEST IA_NA from 000100011793b642b065bd1d51e2 on br-lan: ok 2001:5b0:263c:fbc8::984/128 fdc2:d159:5372::984/128
Wed May  6 15:26:12 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:26:12 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:27:04 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: authenticated
Wed May  6 15:27:12 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:27:12 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:27:16 2015 daemon.info dnsmasq[1998]: read /etc/hosts - 1 addresses
Wed May  6 15:27:16 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/odhcpd - 0 addresses
Wed May  6 15:27:16 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/dhcp - 1 addresses
Wed May  6 15:27:16 2015 daemon.info dnsmasq-dhcp[1998]: read /etc/ethers - 0 addresses
Wed May  6 15:27:43 2015 daemon.warn odhcpd[1207]: DHCPV6 REBIND IA_NA from 000300013863bbc243de on br-lan: ok 2001:5b0:263c:fbc8::d05/128 fdc2:d159:5372::d05/128
Wed May  6 15:27:43 2015 daemon.info dnsmasq[1998]: read /etc/hosts - 1 addresses
Wed May  6 15:27:43 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/odhcpd - 2 addresses
Wed May  6 15:27:43 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/dhcp - 1 addresses
Wed May  6 15:27:43 2015 daemon.info dnsmasq-dhcp[1998]: read /etc/ethers - 0 addresses
Wed May  6 15:28:12 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:28:12 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:29:12 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:29:12 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:30:00 2015 cron.info crond[1241]: USER root pid 30295 cmd /sbin/fan_ctrl.sh
Wed May  6 15:30:13 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:30:13 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:30:13 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: disassociated due to inactivity
Wed May  6 15:30:14 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed May  6 15:30:46 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: authenticated
Wed May  6 15:31:13 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:31:13 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:32:13 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:32:13 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:33:13 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:33:14 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:33:33 2015 daemon.info hostapd: wlan1: STA 18:22:7e:c8:41:8e WPA: group key handshake completed (WPA)
Wed May  6 15:33:34 2015 daemon.info hostapd: wlan1: STA b0:65:bd:1d:51:e2 WPA: group key handshake completed (WPA)
Wed May  6 15:33:34 2015 daemon.info hostapd: wlan0: STA 84:a4:66:34:a6:80 WPA: group key handshake completed (WPA)
Wed May  6 15:33:34 2015 daemon.info hostapd: wlan1: STA f4:f1:e1:5a:46:4c WPA: group key handshake completed (WPA)
Wed May  6 15:33:34 2015 daemon.info hostapd: wlan0: STA 6c:c2:17:19:ae:14 WPA: group key handshake completed (WPA)
Wed May  6 15:33:34 2015 daemon.info hostapd: wlan1: STA f4:09:d8:9d:ed:e5 WPA: group key handshake completed (WPA)
Wed May  6 15:34:14 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:34:14 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:35:00 2015 cron.info crond[1241]: USER root pid 30892 cmd /sbin/fan_ctrl.sh
Wed May  6 15:35:14 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:35:14 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:35:47 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: disassociated due to inactivity
Wed May  6 15:35:48 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed May  6 15:36:14 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:36:14 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:36:19 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: authenticated
Wed May  6 15:37:15 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:37:15 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:37:16 2015 daemon.info dnsmasq[1998]: read /etc/hosts - 1 addresses
Wed May  6 15:37:16 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/odhcpd - 0 addresses
Wed May  6 15:37:16 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/dhcp - 1 addresses
Wed May  6 15:37:16 2015 daemon.info dnsmasq-dhcp[1998]: read /etc/ethers - 0 addresses
Wed May  6 15:38:14 2015 daemon.warn odhcpd[1207]: DHCPV6 REBIND IA_NA from 000300013863bbc243de on br-lan: ok 2001:5b0:263c:fbc8::d05/128 fdc2:d159:5372::d05/128
Wed May  6 15:38:14 2015 daemon.info dnsmasq[1998]: read /etc/hosts - 1 addresses
Wed May  6 15:38:14 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/odhcpd - 2 addresses
Wed May  6 15:38:14 2015 daemon.info dnsmasq[1998]: read /tmp/hosts/dhcp - 1 addresses
Wed May  6 15:38:14 2015 daemon.info dnsmasq-dhcp[1998]: read /etc/ethers - 0 addresses
Wed May  6 15:38:15 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:38:15 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:39:15 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:39:15 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:40:00 2015 cron.info crond[1241]: USER root pid 31519 cmd /sbin/fan_ctrl.sh
Wed May  6 15:40:15 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:40:15 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:41:15 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:41:15 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:41:19 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: disassociated due to inactivity
Wed May  6 15:41:20 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed May  6 15:42:15 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:42:15 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:43:15 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:43:15 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:43:33 2015 daemon.info hostapd: wlan0: STA 84:a4:66:34:a6:80 WPA: group key handshake completed (WPA)
Wed May  6 15:43:33 2015 daemon.info hostapd: wlan0: STA 6c:c2:17:19:ae:14 WPA: group key handshake completed (WPA)
Wed May  6 15:43:33 2015 daemon.info hostapd: wlan1: STA f4:09:d8:9d:ed:e5 WPA: group key handshake completed (WPA)
Wed May  6 15:43:33 2015 daemon.info hostapd: wlan1: STA 18:22:7e:c8:41:8e WPA: group key handshake completed (WPA)
Wed May  6 15:43:34 2015 daemon.info hostapd: wlan1: STA b0:65:bd:1d:51:e2 WPA: group key handshake completed (WPA)
Wed May  6 15:43:34 2015 daemon.info hostapd: wlan1: STA f4:f1:e1:5a:46:4c WPA: group key handshake completed (WPA)
Wed May  6 15:43:43 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: authenticated
Wed May  6 15:44:16 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:44:16 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:45:00 2015 cron.info crond[1241]: USER root pid 32115 cmd /sbin/fan_ctrl.sh
Wed May  6 15:45:16 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:45:16 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:46:16 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:46:16 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:47:16 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:47:16 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:48:16 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:48:16 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:48:43 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: disassociated due to inactivity
Wed May  6 15:48:44 2015 daemon.warn odhcpd[1207]: DHCPV6 REBIND IA_NA from 000300013863bbc243de on br-lan: ok 2001:5b0:263c:fbc8::d05/128 fdc2:d159:5372::d05/128
Wed May  6 15:48:44 2015 daemon.info hostapd: wlan0: STA 28:57:67:28:d2:ce IEEE 802.11: deauthenticated due to inactivity (timer DEAUTH/REMOVE)
Wed May  6 15:48:45 2015 daemon.warn odhcpd[1207]: DHCPV6 REBIND IA_NA from 000100011793b642b065bd1d51e2 on br-lan: ok 2001:5b0:263c:fbc8::984/128 fdc2:d159:5372::984/128
Wed May  6 15:49:16 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:49:16 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:50:00 2015 cron.info crond[1241]: USER root pid 32714 cmd /sbin/fan_ctrl.sh
Wed May  6 15:50:16 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:50:16 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:51:17 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:51:17 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:52:17 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:52:17 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:53:17 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:53:17 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
Wed May  6 15:53:33 2015 daemon.info hostapd: wlan0: STA 84:a4:66:34:a6:80 WPA: group key handshake completed (WPA)
Wed May  6 15:53:33 2015 daemon.info hostapd: wlan0: STA 6c:c2:17:19:ae:14 WPA: group key handshake completed (WPA)
Wed May  6 15:53:33 2015 daemon.info hostapd: wlan1: STA 18:22:7e:c8:41:8e WPA: group key handshake completed (WPA)
Wed May  6 15:53:34 2015 daemon.info hostapd: wlan1: STA f4:f1:e1:5a:46:4c WPA: group key handshake completed (WPA)
Wed May  6 15:53:34 2015 daemon.info hostapd: wlan1: STA b0:65:bd:1d:51:e2 WPA: group key handshake completed (WPA)
Wed May  6 15:53:34 2015 daemon.info hostapd: wlan1: STA f4:09:d8:9d:ed:e5 WPA: group key handshake completed (WPA)
Wed May  6 15:54:17 2015 daemon.notice netifd: wan (1754): Sending renew...
Wed May  6 15:54:18 2015 daemon.notice netifd: wan (1754): Lease of 100.87.125.227 obtained, lease time 120
root@OpenWrt:~# for F in *
> do
> echo $F
> echo '-----------------------------------------------'
> cat $F
> echo
> done
ddns
-----------------------------------------------
config ddns "global"
    option date_format "%F %R"
    option log_lines "250"
    option allow_local_ip "0"
config service "myddns_ipv4"
    option service_name    "dyndns.com"
    option domain        "yourhost.example.com"
    option username        "your_username"
    option password        "your_password"
    option interface    "wan"
    option ip_source    "network"
    option ip_network    "wan"
config service "myddns_ipv6"
    option update_url    "http://[USERNAME]:[PASSWORD]@your.provider.net/nic/update?hostname=[DOMAIN]&myip=[IP]"
    option domain        "yourhost.example.com"
    option username        "your_username"
    option password        "your_password"
    option use_ipv6        "1"
    option interface    "wan6"
    option ip_source    "network"
    option ip_network    "wan6"

dhcp
-----------------------------------------------

config dnsmasq
    option domainneeded '1'
    option boguspriv '1'
    option localise_queries '1'
    option rebind_protection '1'
    option rebind_localhost '1'
    option local '/lan/'
    option domain 'lan'
    option expandhosts '1'
    option authoritative '1'
    option readethers '1'
    option leasefile '/tmp/dhcp.leases'
    option resolvfile '/tmp/resolv.conf.auto'
    option localservice '1'

config dhcp 'lan'
    option interface 'lan'
    option start '100'
    option limit '150'
    option leasetime '12h'
    option dhcpv6 'server'
    option ra 'server'

config dhcp 'wan'
    option interface 'wan'
    option ignore '1'

config odhcpd 'odhcpd'
    option maindhcp '0'
    option leasefile '/tmp/hosts/odhcpd'
    option leasetrigger '/usr/sbin/odhcpd-update'

config host
    option mac '60:6c:66:8e:ac:a1'
    option ip '192.168.1.3'


dropbear
-----------------------------------------------

config dropbear
    option PasswordAuth 'on'
    option Port '22'


etherwake
-----------------------------------------------
config 'etherwake' 'setup'
    # possible program pathes
    option 'pathes' '/usr/bin/etherwake /usr/bin/ether-wake'
    # use sudo, defaults to off
    option 'sudo' 'off'
    # interface, defaults to 'eth0'
    # -i <ifname>
    option 'interface' ''
    # send wake-up packet to the broadcast address, defaults to off
    # -b
    option 'broadcast' 'off'

config 'target'
    # name for the target
    option 'name' 'example'
    # mac address to wake up
    option 'mac' '11:22:33:44:55:66'
    # password in hex without any delimiters
    option 'password' 'AABBCCDDEEFF'
    # wake up on system start, defaults to off
    option 'wakeonboot' 'off'

# To add a new target use:
#  uci add etherwake target
#  uci set etherwake.@target[-1].name=example
#  uci set etherwake.@target[-1].mac=11:22:33:44:55:66
#  uci set etherwake.@target[-1].password=AABBCCDDEEFF
#  uci set etherwake.@target[-1].wakeonboot=off

firewall
-----------------------------------------------

config defaults
    option syn_flood '1'
    option input 'ACCEPT'
    option output 'ACCEPT'
    option forward 'REJECT'

config zone
    option name 'lan'
    list network 'lan'
    option input 'ACCEPT'
    option output 'ACCEPT'
    option forward 'ACCEPT'

config zone
    option name 'wan'
    list network 'wan'
    list network 'wan6'
    option input 'REJECT'
    option output 'ACCEPT'
    option forward 'REJECT'
    option masq '1'
    option mtu_fix '1'

config forwarding
    option src 'lan'
    option dest 'wan'

config rule
    option name 'Allow-DHCP-Renew'
    option src 'wan'
    option proto 'udp'
    option dest_port '68'
    option target 'ACCEPT'
    option family 'ipv4'

config rule
    option name 'Allow-Ping'
    option src 'wan'
    option proto 'icmp'
    option icmp_type 'echo-request'
    option family 'ipv4'
    option target 'ACCEPT'

config rule
    option name 'Allow-DHCPv6'
    option src 'wan'
    option proto 'udp'
    option src_ip 'fe80::/10'
    option src_port '547'
    option dest_ip 'fe80::/10'
    option dest_port '546'
    option family 'ipv6'
    option target 'ACCEPT'

config rule
    option name 'Allow-ICMPv6-Input'
    option src 'wan'
    option proto 'icmp'
    list icmp_type 'echo-request'
    list icmp_type 'echo-reply'
    list icmp_type 'destination-unreachable'
    list icmp_type 'packet-too-big'
    list icmp_type 'time-exceeded'
    list icmp_type 'bad-header'
    list icmp_type 'unknown-header-type'
    list icmp_type 'router-solicitation'
    list icmp_type 'neighbour-solicitation'
    list icmp_type 'router-advertisement'
    list icmp_type 'neighbour-advertisement'
    option limit '1000/sec'
    option family 'ipv6'
    option target 'ACCEPT'

config rule
    option name 'Allow-ICMPv6-Forward'
    option src 'wan'
    option dest '*'
    option proto 'icmp'
    list icmp_type 'echo-request'
    list icmp_type 'echo-reply'
    list icmp_type 'destination-unreachable'
    list icmp_type 'packet-too-big'
    list icmp_type 'time-exceeded'
    list icmp_type 'bad-header'
    list icmp_type 'unknown-header-type'
    option limit '1000/sec'
    option family 'ipv6'
    option target 'ACCEPT'

config include
    option path '/etc/firewall.user'

config include 'miniupnpd'
    option type 'script'
    option path '/usr/share/miniupnpd/firewall.include'
    option family 'any'
    option reload '1'


fstab
-----------------------------------------------

config global
    option anon_swap '0'
    option anon_mount '0'
    option auto_swap '1'
    option auto_mount '1'
    option delay_root '5'
    option check_fs '0'

config mount
    option uuid '1a0f773b-c981-4f91-8888-a10b6286a6da'
    option enabled '1'
    option target '/MyUsb'
    option enabled_fsck '1'


hd-idle
-----------------------------------------------
config 'hd-idle'
    option 'disk' 'sda'
    option 'enabled' '0'
    option 'idle_time_unit' 'minutes'
    option 'idle_time_interval' '10'

luci
-----------------------------------------------

config core 'main'
    option lang 'auto'
    option resourcebase '/luci-static/resources'
    option mediaurlbase '/luci-static/bootstrap'

config extern 'flash_keep'
    option uci '/etc/config/'
    option dropbear '/etc/dropbear/'
    option openvpn '/etc/openvpn/'
    option passwd '/etc/passwd'
    option opkg '/etc/opkg.conf'
    option firewall '/etc/firewall.user'
    option uploads '/lib/uci/upload/'

config internal 'languages'

config internal 'sauth'
    option sessionpath '/tmp/luci-sessions'
    option sessiontime '3600'

config internal 'ccache'
    option enable '1'

config internal 'themes'
    option Bootstrap '/luci-static/bootstrap'

config command
    option name 'Mount Usb'
    option command '/sbin/block mount'

config command
    option name 'Unmount Usb'
    option command '/sbin/block umount'


luci_statistics
-----------------------------------------------

config statistics 'rrdtool'
    option default_timespan '1hour'
    option image_width '600'
    option image_path '/tmp/rrdimg'

config statistics 'collectd'
    option BaseDir '/var/run/collectd'
    option Include '/etc/collectd/conf.d'
    option PIDFile '/var/run/collectd.pid'
    option PluginDir '/usr/lib/collectd'
    option TypesDB '/usr/share/collectd/types.db'
    option Interval '30'
    option ReadThreads '2'

config statistics 'collectd_ping'
    option enable '0'
    option TTL '127'
    option Interval '30'
    option Hosts '127.0.0.1'

config statistics 'collectd_csv'
    option enable '0'
    option StoreRates '0'
    option DataDir '/tmp'

config statistics 'collectd_df'
    option Devices '/dev/mtdblock/4'
    option MountPoints '/jffs'
    option FSTypes 'tmpfs'
    option IgnoreSelected '0'
    option enable '1'

config statistics 'collectd_disk'
    option IgnoreSelected '0'
    option enable '1'
    option Disks 'sda sda1'

config statistics 'collectd_dns'
    option IgnoreSources '127.0.0.1'
    option enable '1'
    option Interfaces 'br-lan'

config statistics 'collectd_email'
    option enable '0'
    option SocketFile '/var/run/collectd/email.sock'
    option SocketGroup 'nogroup'

config statistics 'collectd_exec'
    option enable '0'

config statistics 'collectd_interface'
    option enable '1'
    option Interfaces 'br-lan br-ff'
    option IgnoreSelected '0'

config statistics 'collectd_iptables'
    option enable '1'

config collectd_iptables_match
    option table 'nat'
    option chain 'luci_fw_postrouting'
    option target 'MASQUERADE'
    option source '192.168.1.0/24'
    option outputif 'br-ff'
    option name 'Verkehr LAN-Clients'

config collectd_iptables_match
    option chain 'luci_fw_postrouting'
    option table 'nat'
    option target 'MASQUERADE'
    option source '10.61.230.0/24'
    option outputif 'br-ff'
    option name 'Verkehr WLAN-Clients'

config statistics 'collectd_irq'
    option enable '0'
    option Irqs '2 3 4 7'

config statistics 'collectd_load'
    option enable '1'

config statistics 'collectd_logfile'
    option enable '0'
    option LogLevel 'notice'
    option File '/var/log/collectd.log'
    option Timestamp '1'

config statistics 'collectd_netlink'
    option enable '0'
    option IgnoreSelected '0'
    option VerboseInterfaces 'br-lan br-ff'
    option QDiscs 'br-lan br-ff'

config statistics 'collectd_network'
    option enable '0'

config statistics 'collectd_processes'
    option enable '1'
    option Processes 'uhttpd dnsmasq dropbear'

config statistics 'collectd_splash_leases'
    option enable '1'

config statistics 'collectd_tcpconns'
    option enable '1'
    option ListeningPorts '0'
    option LocalPorts '22 80'

config statistics 'collectd_unixsock'
    option enable '0'
    option SocketFile '/var/run/collectd/query.sock'
    option SocketGroup 'nogroup'

config statistics 'collectd_cpu'
    option enable '1'

config statistics 'collectd_rrdtool'
    option enable '1'
    option DataDir '/tmp/rrd'
    option RRARows '100'
    option RRASingle '1'
    option RRATimespans '1hour 1day 1week 1month 1year'

config statistics 'collectd_memory'
    option enable '1'

config statistics 'collectd_conntrack'
    option enable '1'

config statistics 'collectd_olsrd'
    option enable '1'
    option Port '2006'
    option Host '127.0.0.1'

config statistics 'collectd_iwinfo'
    option enable '1'

config statistics 'collectd_nut'
    option enable '0'
    option UPS 'myupsname'

config statistics 'collectd_uptime'
    option enable '1'


network
-----------------------------------------------

config interface 'loopback'
    option ifname 'lo'
    option proto 'static'
    option ipaddr '127.0.0.1'
    option netmask '255.0.0.0'

config globals 'globals'
    option ula_prefix 'fdc2:d159:5372::/48'

config interface 'lan'
    option ifname 'eth0'
    option force_link '1'
    option type 'bridge'
    option proto 'static'
    option ipaddr '192.168.1.1'
    option netmask '255.255.255.0'
    option ip6assign '60'

config interface 'wan'
    option ifname 'eth1'
    option proto 'dhcp'

config interface 'wan6'
    option ifname 'eth1'
    option proto 'dhcpv6'

config switch
    option name 'switch0'
    option reset '1'
    option enable_vlan '1'

config switch_vlan
    option device 'switch0'
    option vlan '1'
    option ports '0 1 2 3 5'

config switch_vlan
    option device 'switch0'
    option vlan '2'
    option ports '4 6'


ntpclient
-----------------------------------------------
config ntpserver
    option hostname '0.openwrt.pool.ntp.org'
    option port     '123'

config ntpserver
    option hostname '1.openwrt.pool.ntp.org'
    option port     '123'

config ntpserver
    option hostname '2.openwrt.pool.ntp.org'
    option port     '123'

config ntpserver
    option hostname '3.openwrt.pool.ntp.org'
    option port     '123'

config ntpdrift
    option freq     '0'

config ntpclient
    option interval    600
    #option count    10
    #option interface wan

## Conf files continued below

(Last edited by stevef9432204 on 7 May 2015, 00:07)

2nd part -


openvpn
-----------------------------------------------
package openvpn

#################################################
# Sample to include a custom config file.       #
#################################################

config openvpn custom_config

    # Set to 1 to enable this instance:
    option enabled 0

    # Include OpenVPN configuration
    option config /etc/openvpn/my-vpn.conf


#################################################
# Sample OpenVPN 2.0 uci config for             #
# multi-client server.                          #
#################################################

config openvpn sample_server

    # Set to 1 to enable this instance:
    option enabled 0

    # Which local IP address should OpenVPN
    # listen on? (optional)
#    option local 0.0.0.0

    # Which TCP/UDP port should OpenVPN listen on?
    # If you want to run multiple OpenVPN instances
    # on the same machine, use a different port
    # number for each one.  You will need to
    # open up this port on your firewall.
    option port 1194

    # TCP or UDP server?
#    option proto tcp
    option proto udp

    # "dev tun" will create a routed IP tunnel,
    # "dev tap" will create an ethernet tunnel.
    # Use "dev tap0" if you are ethernet bridging
    # and have precreated a tap0 virtual interface
    # and bridged it with your ethernet interface.
    # If you want to control access policies
    # over the VPN, you must create firewall
    # rules for the the TUN/TAP interface.
    # On non-Windows systems, you can give
    # an explicit unit number, such as tun0.
    # On Windows, use "dev-node" for this.
    # On most systems, the VPN will not function
    # unless you partially or fully disable
    # the firewall for the TUN/TAP interface.
#    option dev tap
    option dev tun

    # SSL/TLS root certificate (ca), certificate
    # (cert), and private key (key).  Each client
    # and the server must have their own cert and
    # key file.  The server and all clients will
    # use the same ca file.
    #
    # See the "easy-rsa" directory for a series
    # of scripts for generating RSA certificates
    # and private keys.  Remember to use
    # a unique Common Name for the server
    # and each of the client certificates.
    #
    # Any X509 key management system can be used.
    # OpenVPN can also use a PKCS #12 formatted key file
    # (see "pkcs12" directive in man page).
    option ca /etc/openvpn/ca.crt
    option cert /etc/openvpn/server.crt
    # This file should be kept secret:
    option key /etc/openvpn/server.key

    # Diffie hellman parameters.
    # Generate your own with:
    #   openssl dhparam -out dh1024.pem 1024
    # Substitute 2048 for 1024 if you are using
    # 2048 bit keys.
    option dh /etc/openvpn/dh1024.pem

    # Configure server mode and supply a VPN subnet
    # for OpenVPN to draw client addresses from.
    # The server will take 10.8.0.1 for itself,
    # the rest will be made available to clients.
    # Each client will be able to reach the server
    # on 10.8.0.1. Comment this line out if you are
    # ethernet bridging. See the man page for more info.
    option server "10.8.0.0 255.255.255.0"

    # Maintain a record of client <-> virtual IP address
    # associations in this file.  If OpenVPN goes down or
    # is restarted, reconnecting clients can be assigned
    # the same virtual IP address from the pool that was
    # previously assigned.
    option ifconfig_pool_persist /tmp/ipp.txt

    # Configure server mode for ethernet bridging.
    # You must first use your OS's bridging capability
    # to bridge the TAP interface with the ethernet
    # NIC interface.  Then you must manually set the
    # IP/netmask on the bridge interface, here we
    # assume 10.8.0.4/255.255.255.0.  Finally we
    # must set aside an IP range in this subnet
    # (start=10.8.0.50 end=10.8.0.100) to allocate
    # to connecting clients.  Leave this line commented
    # out unless you are ethernet bridging.
#    option server_bridge "10.8.0.4 255.255.255.0 10.8.0.50 10.8.0.100"

    # Push routes to the client to allow it
    # to reach other private subnets behind
    # the server.  Remember that these
    # private subnets will also need
    # to know to route the OpenVPN client
    # address pool (10.8.0.0/255.255.255.0)
    # back to the OpenVPN server.
#    list push "route 192.168.10.0 255.255.255.0"
#    list push "route 192.168.20.0 255.255.255.0"

    # To assign specific IP addresses to specific
    # clients or if a connecting client has a private
    # subnet behind it that should also have VPN access,
    # use the subdirectory "ccd" for client-specific
    # configuration files (see man page for more info).

    # EXAMPLE: Suppose the client
    # having the certificate common name "Thelonious"
    # also has a small subnet behind his connecting
    # machine, such as 192.168.40.128/255.255.255.248.
    # First, uncomment out these lines:
#    option client_config_dir /etc/openvpn/ccd
#    list route "192.168.40.128 255.255.255.248"
    # Then create a file ccd/Thelonious with this line:
    #   iroute 192.168.40.128 255.255.255.248
    # This will allow Thelonious' private subnet to
    # access the VPN.  This example will only work
    # if you are routing, not bridging, i.e. you are
    # using "dev tun" and "server" directives.

    # EXAMPLE: Suppose you want to give
    # Thelonious a fixed VPN IP address of 10.9.0.1.
    # First uncomment out these lines:
#    option client_config_dir /etc/openvpn/ccd
#    list route "10.9.0.0 255.255.255.252"
#    list route "192.168.100.0 255.255.255.0"
    # Then add this line to ccd/Thelonious:
    #   ifconfig-push "10.9.0.1 10.9.0.2"

    # Suppose that you want to enable different
    # firewall access policies for different groups
    # of clients.  There are two methods:
    # (1) Run multiple OpenVPN daemons, one for each
    #     group, and firewall the TUN/TAP interface
    #     for each group/daemon appropriately.
    # (2) (Advanced) Create a script to dynamically
    #     modify the firewall in response to access
    #     from different clients.  See man
    #     page for more info on learn-address script.
#    option learn_address /etc/openvpn/script

    # If enabled, this directive will configure
    # all clients to redirect their default
    # network gateway through the VPN, causing
    # all IP traffic such as web browsing and
    # and DNS lookups to go through the VPN
    # (The OpenVPN server machine may need to NAT
    # the TUN/TAP interface to the internet in
    # order for this to work properly).
    # CAVEAT: May break client's network config if
    # client's local DHCP server packets get routed
    # through the tunnel.  Solution: make sure
    # client's local DHCP server is reachable via
    # a more specific route than the default route
    # of 0.0.0.0/0.0.0.0.
#    list push "redirect-gateway"

    # Certain Windows-specific network settings
    # can be pushed to clients, such as DNS
    # or WINS server addresses.  CAVEAT:
    # http://openvpn.net/faq.html#dhcpcaveats
#    list push "dhcp-option DNS 10.8.0.1"
#    list push "dhcp-option WINS 10.8.0.1"

    # Uncomment this directive to allow different
    # clients to be able to "see" each other.
    # By default, clients will only see the server.
    # To force clients to only see the server, you
    # will also need to appropriately firewall the
    # server's TUN/TAP interface.
#    option client_to_client 1

    # Uncomment this directive if multiple clients
    # might connect with the same certificate/key
    # files or common names.  This is recommended
    # only for testing purposes.  For production use,
    # each client should have its own certificate/key
    # pair.
    #
    # IF YOU HAVE NOT GENERATED INDIVIDUAL
    # CERTIFICATE/KEY PAIRS FOR EACH CLIENT,
    # EACH HAVING ITS OWN UNIQUE "COMMON NAME",
    # UNCOMMENT THIS LINE OUT.
#    option duplicate_cn 1

    # The keepalive directive causes ping-like
    # messages to be sent back and forth over
    # the link so that each side knows when
    # the other side has gone down.
    # Ping every 10 seconds, assume that remote
    # peer is down if no ping received during
    # a 120 second time period.
    option keepalive "10 120"

    # For extra security beyond that provided
    # by SSL/TLS, create an "HMAC firewall"
    # to help block DoS attacks and UDP port flooding.
    #
    # Generate with:
    #   openvpn --genkey --secret ta.key
    #
    # The server and each client must have
    # a copy of this key.
    # The second parameter should be '0'
    # on the server and '1' on the clients.
    # This file is secret:
#    option tls_auth "/etc/openvpn/ta.key 0"

    # Select a cryptographic cipher.
    # This config item must be copied to
    # the client config file as well.
    # Blowfish (default):
#    option cipher BF-CBC
    # AES:
#    option cipher AES-128-CBC
    # Triple-DES:
#    option cipher DES-EDE3-CBC

    # Enable compression on the VPN link.
    # If you enable it here, you must also
    # enable it in the client config file.
    option comp_lzo yes

    # The maximum number of concurrently connected
    # clients we want to allow.
#    option max_clients 100

    # The persist options will try to avoid
    # accessing certain resources on restart
    # that may no longer be accessible because
    # of the privilege downgrade.
    option persist_key 1
    option persist_tun 1

    # Output a short status file showing
    # current connections, truncated
    # and rewritten every minute.
    option status /tmp/openvpn-status.log

    # By default, log messages will go to the syslog (or
    # on Windows, if running as a service, they will go to
    # the "\Program Files\OpenVPN\log" directory).
    # Use log or log-append to override this default.
    # "log" will truncate the log file on OpenVPN startup,
    # while "log-append" will append to it.  Use one
    # or the other (but not both).
#    option log         /tmp/openvpn.log
#    option log_append  /tmp/openvpn.log

    # Set the appropriate level of log
    # file verbosity.
    #
    # 0 is silent, except for fatal errors
    # 4 is reasonable for general usage
    # 5 and 6 can help to debug connection problems
    # 9 is extremely verbose
    option verb 3

    # Silence repeating messages.  At most 20
    # sequential messages of the same message
    # category will be output to the log.
#    option mute 20


##############################################
# Sample client-side OpenVPN 2.0 uci config  #
# for connecting to multi-client server.     #
##############################################

config openvpn sample_client

    # Set to 1 to enable this instance:
    option enabled 0

    # Specify that we are a client and that we
    # will be pulling certain config file directives
    # from the server.
    option client 1

    # Use the same setting as you are using on
    # the server.
    # On most systems, the VPN will not function
    # unless you partially or fully disable
    # the firewall for the TUN/TAP interface.
#    option dev tap
    option dev tun

    # Are we connecting to a TCP or
    # UDP server?  Use the same setting as
    # on the server.
#    option proto tcp
    option proto udp

    # The hostname/IP and port of the server.
    # You can have multiple remote entries
    # to load balance between the servers.
    list remote "my_server_1 1194"
#    list remote "my_server_2 1194"

    # Choose a random host from the remote
    # list for load_balancing.  Otherwise
    # try hosts in the order specified.
#    option remote_random 1

    # Keep trying indefinitely to resolve the
    # host name of the OpenVPN server.  Very useful
    # on machines which are not permanently connected
    # to the internet such as laptops.
    option resolv_retry infinite

    # Most clients don't need to bind to
    # a specific local port number.
    option nobind 1

    # Try to preserve some state across restarts.
    option persist_key 1
    option persist_tun 1

    # If you are connecting through an
    # HTTP proxy to reach the actual OpenVPN
    # server, put the proxy server/IP and
    # port number here.  See the man page
    # if your proxy server requires
    # authentication.
    # retry on connection failures:
#    option http_proxy_retry 1
    # specify http proxy address and port:
#    option http_proxy "192.168.1.100 8080"

    # Wireless networks often produce a lot
    # of duplicate packets.  Set this flag
    # to silence duplicate packet warnings.
#    option mute_replay_warnings 1

    # SSL/TLS parms.
    # See the server config file for more
    # description.  It's best to use
    # a separate .crt/.key file pair
    # for each client.  A single ca
    # file can be used for all clients.
    option ca /etc/openvpn/ca.crt
    option cert /etc/openvpn/client.crt
    option key /etc/openvpn/client.key

    # Verify server certificate by checking
    # that the certicate has the nsCertType
    # field set to "server".  This is an
    # important precaution to protect against
    # a potential attack discussed here:
    #  http://openvpn.net/howto.html#mitm
    #
    # To use this feature, you will need to generate
    # your server certificates with the nsCertType
    # field set to "server".  The build_key_server
    # script in the easy_rsa folder will do this.
#    option ns_cert_type server

    # If a tls_auth key is used on the server
    # then every client must also have the key.
#    option tls_auth "/etc/openvpn/ta.key 1"

    # Select a cryptographic cipher.
    # If the cipher option is used on the server
    # then you must also specify it here.
#    option cipher x

    # Enable compression on the VPN link.
    # Don't enable this unless it is also
    # enabled in the server config file.
    option comp_lzo yes

    # Set log file verbosity.
    option verb 3

    # Silence repeating messages
#    option mute 20

openvpn_recipes
-----------------------------------------------
#
# Routed point-to-point server
#
config openvpn_recipe server_tun_ptp
    option _description        "Simple server configuration for a routed point-to-point VPN"
    option _role            "server"
    option dev            "tun"
    option ifconfig            "10.0.0.1 10.0.0.2"
    option secret            "shared-secret.key"
    option keepalive        "10 60"
    option comp_lzo            "yes"
    option verb            "3"
        option mssfix            "1420"

#
# Routed point-to-point client
#
config openvpn_recipe client_tun_ptp
    option _description        "Simple client configuration for a routed point-to-point VPN"
    option _role            "client"
    option dev            "tun"
    list   remote            "vpnserver.example.org"
    option ifconfig            "10.0.0.2 10.0.0.1"
    option secret            "shared-secret.key"
    option nobind            "1"
    option comp_lzo            "yes"
    option verb            "3"

#
# Routed multi-client server
#
config openvpn_recipe server_tun
    option _description        "Server configuration for a routed multi-client VPN"
    option _role            "server"
    option dev            "tun"
    option server            "10.0.100.0 255.255.255.0"
    option ca            "ca.crt"
    option cert            "server.crt"
    option key             "server.key"
    option dh             "dh1024.pem"
    option keepalive        "10 60"
    option comp_lzo            "yes"
    option verb            "3"
        option mssfix            "1420"

#
# Routed client
#
config openvpn_recipe client_tun
    option _description        "Client configuration for a routed multi-client VPN"
    option _role            "client"
    option client            "1"
    option dev            "tun"
    list   remote            "vpnserver.example.org"
    option pkcs12            "my_client.p12"
    option remote_cert_tls        "server"
    option comp_lzo            "yes"
    option nobind            "1"
    option persist_key        "1"
    option persist_tun        "1"
    option verb            "3"
    option reneg_sec        "0"
    option float            "1"

#
# Multi-client ethernet bridge server
#
config openvpn_recipe server_tap_bridge
    option _description        "Server configuration for an ethernet bridge VPN"
    option _role            "server"
    option dev            "tap"
    option server_bridge        "192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254"
    option ca            "ca.crt"
    option cert            "server.crt"
    option key             "server.key"
    option dh             "dh1024.pem"
    option keepalive        "10 60"
    option comp_lzo            "yes"
    option verb            "3"
        option mssfix            "1420"

#
# Ethernet bridge client
#
config openvpn_recipe client_tap_bridge
    option _description        "Client configuration for an ethernet bridge VPN"
    option _role            "client"
    option client            "1"
    option dev             "tap"
    list   remote            "vpnserver.example.org"
    option ca             "ca.crt"
    option cert            "my_client.crt"
    option key             "my_client.key"
    option dh             "dh1024.pem"
    option remote_cert_tls        "server"
    option comp_lzo            "yes"
    option nobind            "1"
    option persist_key        "1"
    option verb            "3"
    option reneg_sec        "0"
    option float            "1"


qos
-----------------------------------------------
# QoS configuration for OpenWrt

# INTERFACES:
config interface wan
    option classgroup  "Default"
    option enabled      0
    option upload       128
    option download     1024

# RULES:
config classify
    option target       "Priority"
    option ports        "22,53"
    option comment      "ssh, dns"
config classify
    option target       "Normal"
    option proto        "tcp"
    option ports        "20,21,25,80,110,443,993,995"
    option comment      "ftp, smtp, http(s), imap"
config classify
    option target       "Express"
    option ports        "5190"
    option comment      "AOL, iChat, ICQ"
config default
    option target       "Express"
    option proto        "udp"
    option pktsize      "-500"
config reclassify
    option target       "Priority"
    option proto        "icmp"
config default
    option target       "Bulk"
    option portrange    "1024-65535"


# Don't change the stuff below unless you
# really know what it means smile

config classgroup "Default"
    option classes      "Priority Express Normal Bulk"
    option default      "Normal"


config class "Priority"
    option packetsize  400
    option avgrate     10
    option priority    20
config class "Priority_down"
    option packetsize  1000
    option avgrate     10


config class "Express"
    option packetsize  1000
    option avgrate     50
    option priority    10

config class "Normal"
    option packetsize  1500
    option packetdelay 100
    option avgrate     10
    option priority    5
config class "Normal_down"
    option avgrate     20

config class "Bulk"
    option avgrate     1
    option packetdelay 200

rpcd
-----------------------------------------------

config login
    option username 'root'
    option password '$p$root'
    list read '*'
    list write '*'


samba
-----------------------------------------------

config samba
    option name 'OpenWrt'
    option workgroup 'WORKGROUP'
    option description 'OpenWrt'
    option homes '1'

config sambashare
    option name 'MyStorage'
    option path '/MyUsb'
    option read_only 'no'
    option guest_ok 'yes'
    option create_mask '777'
    option dir_mask '777'


system
-----------------------------------------------

config system
    option hostname 'OpenWrt'
    option zonename 'America/Los Angeles'
    option timezone 'PST8PDT,M3.2.0,M11.1.0'
    option conloglevel '8'
    option cronloglevel '8'

config timeserver 'ntp'
    list server '0.openwrt.pool.ntp.org'
    list server '1.openwrt.pool.ntp.org'
    list server '2.openwrt.pool.ntp.org'
    list server '3.openwrt.pool.ntp.org'
    option enabled '1'
    option enable_server '1'

config led 'led_wan'
    option name 'WAN'
    option sysfs 'mamba:white:wan'
    option trigger 'netdev'
    option dev 'eth1'
    option mode 'link tx rx'

config led 'led_usb2'
    option name 'USB2'
    option sysfs 'mamba:white:usb2'
    option trigger 'usbdev'
    option dev '1-1'
    option interval '50'

config led 'led_usb3'
    option name 'USB3'
    option sysfs 'mamba:white:usb3_1'
    option trigger 'usbdev'
    option dev '2-2'
    option interval '50'


transmission
-----------------------------------------------
config transmission
    option enabled 0
    option config_dir '/tmp/transmission'
    #option user 'nobody'
    option alt_speed_down 50
    option alt_speed_enabled false
    option alt_speed_time_begin  540
    option alt_speed_time_day 127
    option alt_speed_time_enabled false
    option alt_speed_time_end 1020
    option alt_speed_up 50
    option bind_address_ipv4 '0.0.0.0'
    option bind_address_ipv6 '::'
    option blocklist_enabled false
    option blocklist_url ''
    option cache_size_mb 2
    option dht_enabled true
    option download_dir '/tmp/transmission/done'
    option download_queue_enabled true
    option download_queue_size 4
    option encryption 1
    option idle_seeding_limit 30
    option idle_seeding_limit_enabled false
    option incomplete_dir '/tmp/transmission/incomplete'
    option incomplete_dir_enabled false
    option lazy_bitfield_enabled true
    option lpd_enabled false
    option message_level 1
    option peer_congestion_algorithm ''
    option peer_limit_global 240
    option peer_limit_per_torrent 60
    option peer_port 51413
    option peer_port_random_high 65535
    option peer_port_random_low 49152
    option peer_port_random_on_start false
    option peer_socket_tos 'default'
    option pex_enabled true
    option port_forwarding_enabled true
    option preallocation 1
    option prefetch_enabled true
    option queue_stalled_enabled true
    option queue_stalled_minutes 30
    option ratio_limit 2.0000
    option ratio_limit_enabled false
    option rename_partial_files true
    option rpc_authentication_required false
    option rpc_bind_address '0.0.0.0'
    option rpc_enabled true
    option rpc_password ''
    option rpc_port 9091
    option rpc_url '/transmission/'
    option rpc_username ''
    option rpc_whitelist '127.0.0.1,192.168.1.*'
    option rpc_whitelist_enabled true
    option scrape_paused_torrents_enabled true
    option script_torrent_done_enabled false
    option script_torrent_done_filename ''
    option seed_queue_enabled false
    option seed_queue_size 10
    option speed_limit_down 100
    option speed_limit_down_enabled false
    option speed_limit_up 20
    option speed_limit_up_enabled false
    option start_added_torrents true
    option trash_original_torrent_files false
    option umask 18
    option upload_slots_per_torrent 14
    option utp_enabled true
    option scrape_paused_torrents true
    option watch_dir_enabled false
    option watch_dir ''

ubootenv
-----------------------------------------------

config ubootenv
    option dev '/dev/mtd1'
    option offset '0x0'
    option envsize '0x40000'
    option secsize '0x20000'


ucitrack
-----------------------------------------------

config network
    option init 'network'
    list affects 'dhcp'
    list affects 'radvd'

config wireless
    list affects 'network'

config firewall
    option init 'firewall'
    list affects 'luci-splash'
    list affects 'qos'
    list affects 'miniupnpd'

config olsr
    option init 'olsrd'

config dhcp
    option init 'dnsmasq'
    list affects 'odhcpd'

config odhcpd
    option init 'odhcpd'

config dropbear
    option init 'dropbear'

config httpd
    option init 'httpd'

config fstab
    option init 'fstab'

config qos
    option init 'qos'

config system
    option init 'led'
    list affects 'luci_statistics'

config luci_splash
    option init 'luci_splash'

config upnpd
    option init 'miniupnpd'

config ntpclient
    option init 'ntpclient'

config samba
    option init 'samba'

config tinyproxy
    option init 'tinyproxy'

config 6relayd
    option init '6relayd'

config hd-idle
    option init 'hd-idle'

config luci_statistics
    option init 'luci_statistics'

config transmission
    option init 'transmission'

config vnstat
    option init 'vnstat'


uhttpd
-----------------------------------------------

config uhttpd 'main'
    list listen_http '0.0.0.0:80'
    list listen_http '[::]:80'
    list listen_https '0.0.0.0:443'
    list listen_https '[::]:443'
    option home '/www'
    option rfc1918_filter '1'
    option max_requests '3'
    option max_connections '100'
    option cert '/etc/uhttpd.crt'
    option key '/etc/uhttpd.key'
    option cgi_prefix '/cgi-bin'
    option script_timeout '60'
    option network_timeout '30'
    option http_keepalive '20'
    option tcp_keepalive '1'
    option ubus_prefix '/ubus'

config cert 'px5g'
    option days '730'
    option bits '1024'
    option country 'DE'
    option state 'Berlin'
    option location 'Berlin'
    option commonname 'OpenWrt'


upnpd
-----------------------------------------------

config upnpd 'config'
    option enable_natpmp '1'
    option enable_upnp '1'
    option secure_mode '1'
    option log_output '0'
    option download '1024'
    option upload '512'
    option internal_iface 'lan'
    option port '5000'
    option upnp_lease_file '/var/upnp.leases'
    option uuid '6a910b9a-0bcf-47af-afc9-8604135b75c4'

config perm_rule
    option action 'allow'
    option ext_ports '1024-65535'
    option int_addr '0.0.0.0/0'
    option int_ports '1024-65535'
    option comment 'Allow high ports'

config perm_rule
    option action 'deny'
    option ext_ports '0-65535'
    option int_addr '0.0.0.0/0'
    option int_ports '0-65535'
    option comment 'Default deny'


vnstat
-----------------------------------------------

config vnstat
    list interface 'br-lan'
    list interface 'eth1'


wireless
-----------------------------------------------

config wifi-device 'radio0'
    option type 'mac80211'
    option channel '11'
    option hwmode '11g'
    option path 'soc/soc:pcie-controller/pci0000:00/0000:00:02.0/0000:02:00.0'
    option htmode 'HT20'
    option country 'US'
    option txpower '20'

config wifi-iface
    option device 'radio0'
    option network 'lan'
    option mode 'ap'
    option ssid 'NETGEAR'
    option encryption 'psk'
    option key '11741leduc'

config wifi-device 'radio1'
    option type 'mac80211'
    option hwmode '11a'
    option path 'soc/soc:pcie-controller/pci0000:00/0000:00:03.0/0000:03:00.0'
    option country 'US'
    option channel '161'
    option htmode 'HT20'
    option txpower '17'

config wifi-iface
    option device 'radio1'
    option network 'lan'
    option mode 'ap'
    option ssid 'NETGEAR-5G'
    option encryption 'psk'
    option key '11741leduc'


root@OpenWrt:/etc/config#

3rd Part

root@OpenWrt:/etc/config# opkg update && opkg list-installed
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_base.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_luci.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_management.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_packages.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_routing.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_telephony.
base-files - 157-r45605
blkid - 2.25.2-4
block-mount - 2015-04-14-e6004000ff15d7bd32cf5663e8690fc94d7ec747
busybox - 1.23.2-1
collectd - 5.4.2-1
collectd-mod-conntrack - 5.4.2-1
collectd-mod-cpu - 5.4.2-1
collectd-mod-df - 5.4.2-1
collectd-mod-disk - 5.4.2-1
collectd-mod-dns - 5.4.2-1
collectd-mod-interface - 5.4.2-1
collectd-mod-iwinfo - 5.4.2-1
collectd-mod-load - 5.4.2-1
collectd-mod-memory - 5.4.2-1
collectd-mod-network - 5.4.2-1
collectd-mod-rrdtool - 5.4.2-1
collectd-mod-wireless - 5.4.2-1
ddns-scripts - 2.4.1-1
dnsmasq - 2.73rc7-1
dropbear - 2015.67-1
e2fsprogs - 1.42.12-1
etherwake - 1.09-3
firewall - 2015-02-26
fstools - 2015-04-14-e6004000ff15d7bd32cf5663e8690fc94d7ec747
hd-idle - 1.04-1
hostapd-common - 2015-03-25-1
ip6tables - 1.4.21-1
iptables - 1.4.21-1
iptables-mod-conntrack-extra - 1.4.21-1
iptables-mod-ipopt - 1.4.21-1
iputils-traceroute6 - 20101006-1
iw - 3.17-1
iwinfo - 2015-03-23-40f2844fadc05f4a4de7699dbc12fee295b7057b
jshn - 2015-03-22-b8d9b382e39823850331edc2a92379173daf1be3
jsonfilter - 2014-06-19-cdc760c58077f44fc40adbbe41e1556a67c1b9a9
kernel - 3.18.11-1-4e2169e98aa8088ceff5bd34794a7102
kmod-ata-ahci - 3.18.11-1
kmod-ata-ahci-platform - 3.18.11-1
kmod-ata-core - 3.18.11-1
kmod-ata-marvell-sata - 3.18.11-1
kmod-ata-mvebu-ahci - 3.18.11-1
kmod-cfg80211 - 3.18.11+2015-03-09-3
kmod-crypto-aes - 3.18.11-1
kmod-crypto-arc4 - 3.18.11-1
kmod-crypto-core - 3.18.11-1
kmod-crypto-hash - 3.18.11-1
kmod-fs-ext4 - 3.18.11-1
kmod-gpio-button-hotplug - 3.18.11-1
kmod-hwmon-core - 3.18.11-1
kmod-hwmon-pwmfan - 3.18.11-1
kmod-hwmon-tmp421 - 3.18.11-1
kmod-i2c-core - 3.18.11-1
kmod-i2c-mv64xxx - 3.18.11-1
kmod-ifb - 3.18.11-1
kmod-ip6tables - 3.18.11-1
kmod-ipt-conntrack - 3.18.11-1
kmod-ipt-conntrack-extra - 3.18.11-1
kmod-ipt-core - 3.18.11-1
kmod-ipt-ipopt - 3.18.11-1
kmod-ipt-nat - 3.18.11-1
kmod-ipv6 - 3.18.11-1
kmod-leds-tlc59116 - 3.18.11-1
kmod-ledtrig-usbdev - 3.18.11-1
kmod-lib-crc-ccitt - 3.18.11-1
kmod-lib-crc16 - 3.18.11-1
kmod-lib-lzo - 3.18.11-1
kmod-mac80211 - 3.18.11+2015-03-09-3
kmod-mmc - 3.18.11-1
kmod-mvsdio - 3.18.11-1
kmod-mwlwifi - 3.18.11+10.2.8.5.p0-20150422-1
kmod-nf-conntrack - 3.18.11-1
kmod-nf-conntrack6 - 3.18.11-1
kmod-nf-ipt - 3.18.11-1
kmod-nf-ipt6 - 3.18.11-1
kmod-nf-nat - 3.18.11-1
kmod-nf-nathelper - 3.18.11-1
kmod-nls-base - 3.18.11-1
kmod-ppp - 3.18.11-1
kmod-pppoe - 3.18.11-1
kmod-pppox - 3.18.11-1
kmod-regmap - 3.18.11-1
kmod-rtc-marvell - 3.18.11-1
kmod-sched-connmark - 3.18.11-1
kmod-sched-core - 3.18.11-1
kmod-scsi-core - 3.18.11-1
kmod-slhc - 3.18.11-1
kmod-thermal - 3.18.11-1
kmod-thermal-armada - 3.18.11-1
kmod-tun - 3.18.11-1
kmod-usb-core - 3.18.11-1
kmod-usb-storage - 3.18.11-1
kmod-usb-storage-extras - 3.18.11-1
kmod-usb2 - 3.18.11-1
kmod-usb3 - 3.18.11-1
knot-libknot - 1.6.3-1
libblkid - 2.25.2-4
libblobmsg-json - 2015-03-22-b8d9b382e39823850331edc2a92379173daf1be3
libc - 0.9.33.2-1
libcurl - 7.40.0-3
libevent2 - 2.0.22-1
libext2fs - 1.42.12-1
libgcc - 4.8-linaro-1
libgd - 2.1.1-1
libip4tc - 1.4.21-1
libip6tc - 1.4.21-1
libiwinfo - 2015-03-23-40f2844fadc05f4a4de7699dbc12fee295b7057b
libiwinfo-lua - 2015-03-23-40f2844fadc05f4a4de7699dbc12fee295b7057b
libjpeg - 9a-1
libjson-c - 0.12-1
libjson-script - 2015-03-22-b8d9b382e39823850331edc2a92379173daf1be3
libltdl - 2.4-1
liblua - 5.1.5-1
liblzo - 2.08-1
libnfnetlink - 1.0.1-1
libnl-tiny - 0.1-4
libopenssl - 1.0.2a-0
libpcap - 1.5.3-1
libpng - 1.2.52-1
libpolarssl - 1.3.10-1
libpthread - 0.9.33.2-1
librrd1 - 1.0.50-2
librt - 0.9.33.2-1
libubox - 2015-03-22-b8d9b382e39823850331edc2a92379173daf1be3
libubus - 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
libubus-lua - 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
libuci - 2015-04-09.1-1
libuci-lua - 2015-04-09.1-1
liburcu - 0.8.6-1
libustream-polarssl - 2014-04-14-a4ca61527236e89eb9efb782fd9bfd04796144e3
libuuid - 2.25.2-4
libxtables - 1.4.21-1
lua - 5.1.5-1
luci - git-15.125.30735-c38b4cd-1
luci-app-commands - git-15.125.30735-c38b4cd-1
luci-app-ddns - 2.2.2-1
luci-app-diag-core - git-15.125.30735-c38b4cd-1
luci-app-firewall - git-15.125.30735-c38b4cd-1
luci-app-hd-idle - git-15.125.30735-c38b4cd-1
luci-app-ntpc - git-15.125.30735-c38b4cd-1
luci-app-openvpn - git-15.125.30735-c38b4cd-1
luci-app-qos - git-15.125.30735-c38b4cd-1
luci-app-samba - git-15.125.30735-c38b4cd-1
luci-app-statistics - git-15.125.30735-c38b4cd-1
luci-app-transmission - git-15.125.30735-c38b4cd-1
luci-app-upnp - git-15.125.30735-c38b4cd-1
luci-app-vnstat - git-15.125.30735-c38b4cd-1
luci-app-wol - git-15.125.30735-c38b4cd-1
luci-base - git-15.125.30735-c38b4cd-1
luci-lib-ip - git-15.125.30735-c38b4cd-1
luci-lib-nixio - git-15.125.30735-c38b4cd-1
luci-mod-admin-full - git-15.125.30735-c38b4cd-1
luci-proto-ppp - git-15.125.30735-c38b4cd-1
luci-ssl - git-15.125.30735-c38b4cd-1
luci-theme-bootstrap - git-15.125.30735-c38b4cd-1
miniupnpd - 1.9.20150430-1
mtd - 20
netifd - 2015-05-02-d0dcf744ba054c9b572be63519b1415685353c8d
ntpclient - 2010_365-1
odhcp6c - 2015-04-20-9ab4436ebed3a86f22bcc5831671d3d94c9f8155
odhcpd - 2015-04-21-4fda796497a0d7814cfe100a1b0f09955f9b24ce
openvpn-openssl - 2.3.6-4
opkg - 9c97d5ecd795709c8584e972bfdf3aee3a5b846d-7
ppp - 2.4.7-5
ppp-mod-pppoe - 2.4.7-5
procd - 2015-04-10-27159f21f76b973a9fa3ec92b8fee2e390d43a43
procd-nand - 2015-04-10-27159f21f76b973a9fa3ec92b8fee2e390d43a43
px5g - 3
qos-scripts - 1.2.1-7
rpcd - 2015-04-14-9a6bfa110a5f8caa10951921b63bafdbb6e97d33
rrdtool1 - 1.0.50-2
samba36-server - 3.6.25-3
swconfig - 10
tc - 4.0.0-1
transmission-daemon - 2.84-2
ubi-utils - 1.5.1-2
uboot-envtools - 2014.10-2
ubox - 2015-04-02-6fbafd7d5b2835d00eb9d1684e7c6ccf907177b8
ubus - 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
ubusd - 2015-01-22-2d660c519d2fcff95248da9f4fd9b37d61f9eb09
uci - 2015-04-09.1-1
uhttpd - 2015-03-30-b9178b9357798ae23a5724333cc6572d14f23958
uhttpd-mod-ubus - 2015-03-30-b9178b9357798ae23a5724333cc6572d14f23958
vnstat - 1.12-1
vnstati - 1.12-1
wpad-mini - 2015-03-25-1
zlib - 1.2.8-1

wow

Yup..
Wast asked to post info, so I did. 

Like the user "lifehacksback",  I suspect a wifi driver problem..  Was really stable in trunk build 445590.  Every version since then crashes the
2.4ghz radios within 30~45 minutes.  Very frustrating, I bought these routers based on ggod working news for openwrt,  should of just waited.

I love linux and open source.  Been using since mod 90s.  Sigh...
Stevef

As promised, here are the full factory image and the sysupgrade tarball:

https://onedrive.live.com/?cid=518138F5 … 8be%212335

Image contains:

- kernel 4.0.1
- LuCI
- DDNS (noip scripts)
- NFS server
- Samba
- Transmission
- blockmount
- ext4 support

nitroshift

(Last edited by nitroshift on 7 May 2015, 06:16)

OpenWrt
Model    Linksys WRT1900AC
OpenWrt Chaos Calmer r45621 / LuCI (git-15.126.50433-a708378)
3.18.11
in this assembly luci openvpn works but stopped working xl2tpd without it internet  will not work, what could be the problem?

stevef9432204 wrote:

Yup..
Wast asked to post info, so I did.

Please spend a few minutes to get familiar with pastebin.com and his friends wink

phantomsfbw wrote:

@Kaloz

I think you had a kernel 4.0 version at one point?  Do you still have one or is Nitroshift the go to for this version?

Thanks!

CC will use 3.18 - when it has been branched, trunk will get a new kernel by default. Until then, you can build your own, but don't expect any difference from 4.0.

Kaloz wrote:
phantomsfbw wrote:

@Kaloz

I think you had a kernel 4.0 version at one point?  Do you still have one or is Nitroshift the go to for this version?

Thanks!

CC will use 3.18 - when it has been branched, trunk will get a new kernel by default. Until then, you can build your own, but don't expect any difference from 4.0.

Kaloz,

I have been using your 23 April build for seven days without issue thus far.  I live in a very congested 2.4GHz neighborhood and it is compounded by a number of business that appear to have extended networks bleeding over into the neighborhood. This obviously keeps throughput in the 1-3MBs range so I often jump over to the 5GHz network for the heavy duty stuff.

Thanks for all your work on this project, and to the others who have contributed as well.  Learning how to work with OpenWRT has been a fun addition to my hobby set.

Cheers!

I am still unable to see mount points in luci.  I have made sure the /etc/config/fstab exists and have ran opkg and upgraded every luci package

Thoughts?

EDIT

NM totally retarded forgot to reboot after big_smile

(Last edited by craig.reiners on 7 May 2015, 16:31)

nitroshift wrote:

As promised, here are the full factory image and the sysupgrade tarball:

https://onedrive.live.com/?cid=518138F5 … 8be%212335

Image contains:

- kernel 4.0.1
- LuCI
- DDNS (noip scripts)
- NFS server
- Samba
- Transmission
- blockmount
- ext4 support

nitroshift

after flash the tar,i can't update list

root@OpenWrt:~# opkg update
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_base.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_luci.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_management.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_packages.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_routing.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_telephony.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
root@OpenWrt:~# opkg update
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_base.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_luci.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_management.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_packages.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_routing.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.
Downloading http://downloads.openwrt.org/snapshots/ … ckages.gz.
Updated list of available packages in /var/opkg-lists/chaos_calmer_telephony.
Downloading http://downloads.openwrt.org/snapshots/ … kages.sig.
Signature check failed.
Remove wrong Signature file.

Could you tell me how to solve this problem?

@crazyljj

Comment out the lines that end in .sig in opkg.conf then re-run opkg update, though I can't reproduce the issue and from reading your output, the packages have been updated.

nitroshift

(Last edited by nitroshift on 7 May 2015, 17:43)