I am very new here. Searched for my problem but didn't find answer.
I changed the original firmware for my TP-Link Archer C7 V5. I used the openwrt-ath79-generic-tplink_archer-c7-v5-squashfs-factory.bin. It updated. The router starts. But I just cannot reach it. When I connect directly to my PC, the IP is 192.168.1.1.... sounds good... but something still must be wrong. My browser says "Fehler: Netzwerk-Zeitüberschreitung" (engl: It takes to long for an answer) and an ftp-programme says:
Status:
Verbinde mit 192.168.1.1:21...
Status:
Verbindungsversuch fehlgeschlagen mit "ECONNREFUSED - Verbindung durch Server verweigert".
Fehler:
Herstellen der Verbindung zum Server fehlgeschlagen
I think it is simpler to configure internet connectivity via the SSH terminal and then install luci using the package manager. What kind of connectivity do you have? Cable, DSL or something else?
cable. but I use the Archer C7 just as an access point. It is behind a modem/router in my network and when uploading/removing/installing files I put it directly to the PC at the moment to connect with ssh
Assuming your network uses 192.168.10.*, run the following commands via SSH:
uci set network.lan.ipaddr=192.168.10.123 # pick a free IP
uci set network.lan.netmask=255.255.255.0
uci set network.lan.gateway=192.168.10.1 # IP of your modem/router
uci set network.lan.dns=8.8.8.8 # Google DNS
uci commit network
Change 192.168.10.123 and 192.168.10.1 accordingly if your network differs.
Connect the Archer with one if its LAN ports to one of the modem/routers LAN ports and powercycle the Archer.
You should now be able to simultaneously SSH to your Archer at 192.168.10.123 (or whatever IP you've chosen), be connected to your normal network with your PC and have the Archer download things from the internet.
Verify connectivity on the Archer: ping -c1 google.com and proceed with opkg update; opkg install luci; reboot