From 47e7770dc4aac0cc8767935558a0c8cae74632c1 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Thu, 30 Sep 2021 05:44:13 +0330 Subject: opewrt,haproxy,nginx,ejabberd,.... --- openwrt/files/etc/config/network | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 openwrt/files/etc/config/network (limited to 'openwrt/files/etc/config/network') diff --git a/openwrt/files/etc/config/network b/openwrt/files/etc/config/network new file mode 100644 index 0000000..897bfc6 --- /dev/null +++ b/openwrt/files/etc/config/network @@ -0,0 +1,20 @@ +config interface 'loopback' + option ifname 'lo' + option proto 'static' + option ipaddr '127.0.0.1' + option netmask '255.0.0.0' +config interface 'lan' + option type 'bridge' + option ifname 'eth0' + option force_link '1' + option proto 'static' + option ipaddr '192.168.1.201' + option netmask '255.255.255.0' + option ip6assign '60' +config interface 'wwan' + option proto 'dhcp' + option peerdns '0' + option dns '208.67.222.222 208.67.220.220' +config interface 'vpnclient' + option ifname 'tun0' + option proto 'none' -- cgit v1.2.3