Hello Dirk,
I solve the problem and here I have explained in detail. Yes, I was making a mistake to add the DNS.
First I will explain my system IP settings as shown below, in which the IP for wireless LAN has opted from wifi router generating IP range 192.168.10.2 to 192.168.10.102 Through DHCP. The IP for the Ethernet adapter side I opted from system administrator as static IP 192.168.1.59. with the DNS as 8.8.8.8and alternative DNS 4.2.2.2
Ethernet adapter Ethernet:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::7d8d
ec81:51c5%18
IPv4 Address. . . . . . . . . . . : 192.168.1.59
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.254
Wireless LAN adapter Wi-Fi:
Connection-specific DNS Suffix . :
Link-local IPv6 Address . . . . . : fe80::ecad:bd0e:738d:e3ac%3
IPv4 Address. . . . . . . . . . . : 192.168.10.98
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.10.
Now come to Revolution Pi which has two ethernet port eth0 and eth1. First port eth0 of RevPi I get the IP from DHCP router as 198.168.10.71. 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.1.222(Free IP is taken from system admin) using this
https://raspberrypi.stackexchange.com/q ... 4428#74428
interface eth1
static ip_address=192.168.1.222/24
static routers=192.168.1.1
static domain_name_servers= 4.2.2.2
Now I am able to communicate (ping) from both ways i.e. from
(1) From my system(PC) to both port of RevPi(Revolution Pi)as
C:\Users\SAMRUDDHI>ping 192.168.1.222
Pinging 192.168.1.222 with 32 bytes of data:
Reply from 192.168.1.222: bytes=32 time=1ms TTL=64
Reply from 192.168.1.222: bytes=32 time<1ms TTL=64
Reply from 192.168.1.222: bytes=32 time<1ms TTL=64
Reply from 192.168.1.222: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.1.222:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 1ms, Average = 0ms
C:\Users\SAMRUDDHI>ping 192.168.10.71
Pinging 192.168.10.71 with 32 bytes of data:
Reply from 192.168.10.71: bytes=32 time=3ms TTL=64
Reply from 192.168.10.71: bytes=32 time=1ms TTL=64
Reply from 192.168.10.71: bytes=32 time=1ms TTL=64
Reply from 192.168.10.71: bytes=32 time=3ms TTL=64
Ping statistics for 192.168.10.71:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 1ms, Maximum = 3ms, Average = 2ms
(2)RevPi(Revolution Pi) to the system(PC) by opening terminal with any one of the port IP among the eth0 and eth1 of RevPi(Revolution Pi).