Replace tarball with un-tarred ImmortalWrt patch tree (package/feeds/files overrides)

This commit is contained in:
2026-07-23 19:35:11 +08:00
parent 3442922678
commit cb3dd4ce9f
21 changed files with 5795 additions and 0 deletions
@@ -0,0 +1,49 @@
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fdab:c3fc:a55d::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth1'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.2'
option netmask '255.255.255.0'
option ip6assign '60'
config interface 'wan'
option device 'eth0'
option proto 'dhcp'
config interface 'wan6'
option device 'eth0'
option proto 'dhcpv6'
config interface 'wg0'
option proto 'wireguard'
option private_key '<REDACTED-YOUR-WG-PRIVATE-KEY'
option listen_port '51820'
list addresses '10.99.0.2/32'
option mtu '1420'
option route_allowed_ips '1'
config wireguard_wg0 'wgpeer'
option public_key 'GPrZqc8t7F3DG/D0ks+GcZQeUYy+3ClFnbSftSqiygQ='
option preshared_key '<REDACTED-YOUR-WG-PSK'
option endpoint_host '10.200.80.93'
option endpoint_port '51820'
option persistent_keepalive '25'
list allowed_ips '10.99.0.1/32'
config route
option interface 'wg0'
option target '10.99.0.1'
option netmask '255.255.255.255'