F5F Stay Refreshed Power Users Networks Unable to connect to the Raspberry Pi via the updated router.

Unable to connect to the Raspberry Pi via the updated router.

Unable to connect to the Raspberry Pi via the updated router.

T
TommyTheLommy
Posting Freak
846
12-06-2016, 10:33 AM
#1
I'm testing a fresh fiber connection with both new and existing net setups. It's called Jio Fiber. The new router includes a built-in light converter, making it essential to use. The older model had a separate converter, letting me switch between any router (TP-Link). The Jio router operates on subnet 192.168.29.1 instead of the TP-Link's 192.168.0.1. Previously, I reserved my Pi's IP at 192.168.0.175 on the TP-Link router, which works well. Now I can't see the Pi in the client list, even though it appears. Also, the MAC addresses differ between devices on both routers, so I can't match them. I'm using the Advanced IP Scanner software below. It seems version 29.7 is likely the one, as only three clients are connected to the router. That version doesn't show up in the router's LAN client list either. Confused, right?
T
TommyTheLommy
12-06-2016, 10:33 AM #1

I'm testing a fresh fiber connection with both new and existing net setups. It's called Jio Fiber. The new router includes a built-in light converter, making it essential to use. The older model had a separate converter, letting me switch between any router (TP-Link). The Jio router operates on subnet 192.168.29.1 instead of the TP-Link's 192.168.0.1. Previously, I reserved my Pi's IP at 192.168.0.175 on the TP-Link router, which works well. Now I can't see the Pi in the client list, even though it appears. Also, the MAC addresses differ between devices on both routers, so I can't match them. I'm using the Advanced IP Scanner software below. It seems version 29.7 is likely the one, as only three clients are connected to the router. That version doesn't show up in the router's LAN client list either. Confused, right?

H
162
12-06-2016, 06:56 PM
#2
The Pi receives its address mainly through DHCP reservation, but it also has a static IP configured within its operating system.
H
Hightops123432
12-06-2016, 06:56 PM #2

The Pi receives its address mainly through DHCP reservation, but it also has a static IP configured within its operating system.

I
IFoskuruR3KT
Member
62
12-22-2016, 09:05 PM
#3
ISPs must cease providing routers or at least make it difficult for users to access their own gear.
I
IFoskuruR3KT
12-22-2016, 09:05 PM #3

ISPs must cease providing routers or at least make it difficult for users to access their own gear.

_
_ZeVuN_
Member
234
12-27-2016, 11:13 AM
#4
the problem started with the ISP setting up the account and everything seemed fine, just kidding.
_
_ZeVuN_
12-27-2016, 11:13 AM #4

the problem started with the ISP setting up the account and everything seemed fine, just kidding.

U
undead_mcgill
Member
108
12-30-2016, 05:09 AM
#5
You can verify the setup on your Pi by checking the configuration files stored on the SD card. Look for relevant settings in the appropriate directories, such as `/etc`, `/etc/hosts`, or specific device configuration files.
U
undead_mcgill
12-30-2016, 05:09 AM #5

You can verify the setup on your Pi by checking the configuration files stored on the SD card. Look for relevant settings in the appropriate directories, such as `/etc`, `/etc/hosts`, or specific device configuration files.

G
GGlobato
Member
176
12-30-2016, 06:00 AM
#6
Ensure you have access to the running system on the Pi. Connect a keyboard, mouse, and monitor if possible. Otherwise, link both your PC and Pi to your previous router or configure a fixed IP on your old router’s subnet, then connect the Pi’s Ethernet port directly to your PC’s network card and SSH into it. To verify your Pi’s network settings, run the command: cat /etc/network/interfaces. Look for lines indicating DHCP or static assignments. You should see an address from the old router’s subnet. Since there’s no routing between subnets, pinging the Pi won’t work if your PC uses a different IP. If you reserved a static IP on the old router, it might not appear on the new one.
G
GGlobato
12-30-2016, 06:00 AM #6

Ensure you have access to the running system on the Pi. Connect a keyboard, mouse, and monitor if possible. Otherwise, link both your PC and Pi to your previous router or configure a fixed IP on your old router’s subnet, then connect the Pi’s Ethernet port directly to your PC’s network card and SSH into it. To verify your Pi’s network settings, run the command: cat /etc/network/interfaces. Look for lines indicating DHCP or static assignments. You should see an address from the old router’s subnet. Since there’s no routing between subnets, pinging the Pi won’t work if your PC uses a different IP. If you reserved a static IP on the old router, it might not appear on the new one.

C
camchrism
Member
212
01-20-2017, 07:17 AM
#7
Static IP isn't missing; it's already defined in /etc/dhcpcd.conf. You likely need to adjust the static routers setting to 29.1 instead of 0.1 for the router subnet. You can keep it empty if you don't need a specific value. Yes, you can set a fallback IP like eth0:175 and eth0:29075 so both old and new routers are recognized during switching.
C
camchrism
01-20-2017, 07:17 AM #7

Static IP isn't missing; it's already defined in /etc/dhcpcd.conf. You likely need to adjust the static routers setting to 29.1 instead of 0.1 for the router subnet. You can keep it empty if you don't need a specific value. Yes, you can set a fallback IP like eth0:175 and eth0:29075 so both old and new routers are recognized during switching.