From 89e933e85ea40dff377013db78fd86efe4d0ff0d Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 3 Jun 2023 06:43:28 -0400 Subject: [PATCH] Update openwrt.sh set network.lan.ipaddr=192.168.2.1 --- vm/openwrt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/openwrt.sh b/vm/openwrt.sh index c9cf3c3e..f5bae843 100644 --- a/vm/openwrt.sh +++ b/vm/openwrt.sh @@ -484,7 +484,7 @@ send_line_to_vm "uci delete network.lan" send_line_to_vm "uci set network.lan=interface" send_line_to_vm "uci set network.lan.device=eth1" send_line_to_vm "uci set network.lan.proto=static" -send_line_to_vm "uci set network.lan.ipaddr=192.0.2.1" +send_line_to_vm "uci set network.lan.ipaddr=192.168.2.1" send_line_to_vm "uci set network.lan.netmask=255.255.255.0" send_line_to_vm "uci set firewall.@zone[1].input='ACCEPT'" send_line_to_vm "uci set firewall.@zone[1].forward='ACCEPT'"