Skip to content

Commit f68eb13

Browse files
committed
files
1 parent 65d4bf3 commit f68eb13

3 files changed

Lines changed: 59 additions & 0 deletions

File tree

files/etc/config/network

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
config interface 'loopback'
3+
option device 'lo'
4+
option proto 'static'
5+
option ipaddr '127.0.0.1'
6+
option netmask '255.0.0.0'
7+
8+
config globals 'globals'
9+
option ula_prefix 'fd94:6d65:bf7a::/48'
10+
11+
config interface 'lan'
12+
option device 'eth0'
13+
option proto 'static'
14+
option ipaddr '192.168.30.3'
15+
option netmask '255.255.255.0'
16+
17+
config interface 'wan'
18+
option device 'eth0'
19+
option proto 'static'
20+
option ipaddr '192.168.30.2'
21+
option netmask '255.255.255.0'
22+
option gateway '192.168.30.1'
23+
option broadcast '192.168.30.255'
24+
list dns '114.114.114.114'
25+
list dns '8.8.8.8'
26+
27+
config interface 'docker'
28+
option device 'docker0'
29+
option proto 'none'
30+
option auto '0'
31+
32+
config device
33+
option type 'bridge'
34+
option name 'docker0'
35+

files/etc/config/system

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
config system
3+
option hostname 'OpenWrt-J1900'
4+
option ttylogin '0'
5+
option log_size '64'
6+
option urandom_seed '0'
7+
option zonename 'Asia/Shanghai'
8+
option timezone 'CST-8'
9+
option log_proto 'udp'
10+
option conloglevel '8'
11+
option cronloglevel '5'
12+
13+
config timeserver 'ntp'
14+
list server '0.openwrt.pool.ntp.org'
15+
list server '1.openwrt.pool.ntp.org'
16+
list server '2.openwrt.pool.ntp.org'
17+
list server '3.openwrt.pool.ntp.org'
18+

files/etc/sysupgrade.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## This file contains files and directories that should
2+
## be preserved during an upgrade.
3+
4+
# /etc/example.conf
5+
# /etc/openvpn/
6+
/etc/NodeChecker/

0 commit comments

Comments
 (0)