Problem using default ip address of 192.168.1.1

Is it possible to configure LEDE to connect to another router both at ip address 192.168.1.1? I have a custom build of OpenWrt that allows this to work but when trying LEDE configured this way the Internet connection drops a few seconds after the router boots. I can get to one or two web sites before the connection drops.

https://lede-project.org/docs/guide-developer/uci-defaults
https://wiki.openwrt.org/doc/uci

To change default ip, modify
in the file /etc/config/network to:

option ipaddr 192.168.2.1 (or whatever ip you want)

Next, commit the settings by running

/etc/init.d/network restart

or

This is a simple example of changing the default ip at first boot.

#!/bin/sh
uci set network.lan.ipaddr=192.168.2.1
uci commit network
exit 0
1 Like