Before going ahead what is the problem I am facing let me give you a hint about the Revolution Pi Connect an IIoT device based on Raspberry pi:https://revolution.kunbus.com/tutorials/uebersicht-revpi-connect/.
This RevPi(Revolution Pi) has two ethernet port eth0 and eth1. Now the from wifi router generating IP range 192.168.10.2 to 192.168.10.102 Through DHCP. My system (PC) I have two IP one over Wifi and one over ethernet(static IP set) as shown
Ethernet adapter Ethernet:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::7d8d:1cb5:ec81:51c5%22
IPv4 Address. . . . . . . . . . . : 192.168.2.59
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.2.255
Wireless LAN adapter Wi-Fi:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::ecad:bd0e:738d:e3ac%3
IPv4 Address. . . . . . . . . . . : 192.168.10.46
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.10.1
First port eth0 of RevPi I get the IP from DHCP router as 198.168.10.34. By using this IP I am able to access the RevPi over SSH-Putty. Now for the second port eth1 of RevPi, I set static IP as 198.168.2.254 using this:How do I set up networking/WiFi/static IP address?
so I set up as:
interface eth1
static ip_address=192.168.2.254/24
static routers=192.168.10.1
static domain_name_servers=192.168.10.1
So now I am able to ping from my system(PC) which has static IP over ethernet as 198.168.2.59 to RevPi(Revolution Pi Connect) but Unable to ping from the Revolution Pi Connect (Raspberry pi based IIoT device) to PC? please help me to resolve this. Thanks in advance.
traceroute to 198.168.2.59 (198.168.2.59), 30 hops max, 60 byte packets
1 * * *
2 * * *
3 * * *
4 * * *
5 * * *
6 * * *
7 * * *
8 * * *
9 * * *
10 * * *
11 * * 69.77.173.2 (69.77.173.2) 211.588 ms
12 * * *
13 * * *
14 * * *
15 * * *
16 * * *
17 * * *
18 * * *
19 * * *
20 * * *
21 * * *
22 * * *
ip r
would at least provide a start, but far more detail is required. – Milliways Oct 09 '19 at 10:56ip r
would at least provide a start. Edit your question and paste it into it. – Ingo Oct 09 '19 at 22:19ip r
.One more thing now even I am not able to ping from my system to RevPi which was ok earlier. – anil Oct 10 '19 at 06:29