Hello.
I just upgraded my router (Netgear R7800) to the latest version of OpenWrt. I've got a few errors regarding different config files in /etc/config/
from the config files in the new packages, but some other errors says uci: Entry not found
.
Here is the result of opkg restore
after the opkg update
once the sysupgrade restarted the router
https://paste.debian.net/1187116/
So, I'll paste here the ones I have questions. I have tried to match the old and the new file but I need confirmation about the new files can be kept as I have them.
First is sqm
package.
Old config file:
config queue 'wan'
option debug_logging '1'
option verbosity '5'
option squash_dscp '1'
option squash_ingress '1'
option ingress_ecn 'ECN'
option egress_ecn 'NOECN'
option interface 'eth0.12'
option download '180000'
option upload '90000'
option qdisc 'cake'
option script 'piece_of_cake.qos'
option qdisc_advanced '1'
option qdisc_really_really_advanced '0'
option enabled '1'
option linklayer 'ethernet'
option overhead '44'
and the new config file:
config queue 'wan'
option debug_logging '1'
option verbosity '5'
option squash_dscp '1'
option squash_ingress '1'
option ingress_ecn 'ECN'
option egress_ecn 'NOECN'
option interface 'eth0.12'
option download '180000'
option upload '90000'
option qdisc 'cake'
option script 'piece_of_cake.qos'
option qdisc_advanced '1'
option qdisc_really_really_advanced '0'
option itarget 'auto'
option etarget 'auto'
option enabled '1'
option linklayer 'ethernet'
option overhead '44'
Can I use this new file? Is it ok? I restarted sqm
returned no visible errors.
The next case is ddns
Old file:
config ddns 'global'
option ddns_loglines '250'
config service 'noip_ddns'
option enabled '1'
option use_ipv6 '0'
option interface 'wan'
option service_name 'no-ip.com'
option update_script '/usr/lib/ddns/update_no-ip_com.sh'
option domain '[REPLACED]'
option username 'PsySc0rpi0n'
option password '[REPLACED]'
option use_https '1'
option cacert '/etc/ssl/certs'
option use_syslog '1'
option use_logfile '1'
option ip_source 'network'
option ip_network 'wan'
option force_ipversion '0'
option check_interval '10'
option check_unit 'minutes'
option force_interval '72'
option force_unit 'hours'
option retry_count '5'
option retry_interval '60'
option retry_unit 'seconds'
option lookup_host '[REPLACED]'
and the new file is:
config ddns "global"
option ddns_dateformat "%F %R"
option ddns_loglines "250"
option upd_privateip "0"
config service "myddns_ipv4"
option service_name "dyndns.org"
option lookup_host "yourhost.example.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 lookup_host "yourhost.example.com"
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"
Can I still use the old file as is?
I'll be adding next ones in a few minutes... Hope I can get some help!
Tanks
HS